Changeset 9c640ff in sasmodels


Ignore:
Timestamp:
Jan 19, 2018 12:28:29 PM (6 years ago)
Author:
Paul Kienzle <pkienzle@…>
Branches:
master, core_shell_microgels, magnetic_model, ticket-1257-vesicle-product, ticket_1156, ticket_1265_superball, ticket_822_more_unit_tests
Children:
772e49c
Parents:
1258e32
Message:

tweak appveyor config; maybe it will work?

File:
1 edited

Legend:

Unmodified
Added
Removed
  • appveyor.yml

    r1258e32 r9c640ff  
    44  # /E:ON and /V:ON options are not enabled in the batch script interpreter 
    55  # See: http://stackoverflow.com/a/13751649/163740 
     6  # [2018-01-19 PAK] probably irrelevant now that we are using tinycc rather than msvc 
    67  CMD_IN_ENV: "cmd /E:ON /V:ON /C obvci_appveyor_python_build_env.cmd" 
    78 
     
    4344 
    4445install: 
    45     # Set the CONDA_NPY, although it has no impact on the actual build. We need this because of a test within conda-build. 
     46    # Set the CONDA_NPY, although it has no impact on the actual build.  
     47    # We need this because of a test within conda-build. 
    4648    - cmd: set CONDA_NPY=19 
    4749 
    4850    # Remove cygwin (and therefore the git that comes with it). 
    49     - cmd: rmdir C:\cygwin /s /q 
     51    # [2018-01-19 PAK] probably irrelevant since we already pulled the repo 
     52    #- cmd: rmdir C:\cygwin /s /q 
    5053 
    5154    # Use the pre-installed Miniconda for the desired arch 
     
    5659    # so that we can update it. Then we remove it so that 
    5760    # we can do a proper activation. 
    58     - cmd: set "OLDPATH=%PATH%" 
    59     - cmd: set "PATH=%CONDA_INSTALL_LOCN%\\Scripts;%CONDA_INSTALL_LOCN%\\Library\\bin;%PATH%" 
    60     - cmd: conda update --yes --quiet conda python 
    61     - cmd: set "PATH=%OLDPATH%" 
    62     - cmd: call %CONDA_INSTALL_LOCN%\Scripts\activate.bat 
    63  
    64     - cmd: conda config --add channels conda-forge 
    65     - cmd: conda config --set show_channel_urls true 
    66     - cmd: conda update --yes --quiet conda 
    67     - cmd: conda install --yes --quiet obvious-ci 
    68     - cmd: conda install --yes --quiet numpy toolchain scipy cython cffi 
    69     #- cmd: conda install --yes --channel conda-forge pyopencl 
     61    - cmd: set "CONDA_VER=%CONDA_INSTALL_LOCN%\\Scripts\conda" 
     62    - cmd: "%CONDA_VER%" update --yes --quiet conda python 
     63    - cmd: call "%CONDA_INSTALL_LOCN%\Scripts\activate.bat" 
     64    - cmd: "%CONDA_VER%" config --add channels conda-forge 
     65    - cmd: "%CONDA_VER%" config --set show_channel_urls true 
     66    - cmd: "%CONDA_VER%" install --yes --quiet obvious-ci 
     67    - cmd: "%CONDA_VER%" install --yes --quiet numpy toolchain scipy cython cffi 
     68    - cmd: "%CONDA_VER%" install --yes --channel conda-forge pyopencl 
     69    # [2018-01-19 PAK] 3rd party packages might need msvc, so %CMD_IN_ENV% may be needed for pip 
    7070    - cmd: pip install bumps unittest-xml-reporting tinycc 
    7171 
Note: See TracChangeset for help on using the changeset viewer.