Changeset 9c640ff in sasmodels for appveyor.yml
- Timestamp:
- Jan 19, 2018 12:28:29 PM (7 years ago)
- 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
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
appveyor.yml
r1258e32 r9c640ff 4 4 # /E:ON and /V:ON options are not enabled in the batch script interpreter 5 5 # See: http://stackoverflow.com/a/13751649/163740 6 # [2018-01-19 PAK] probably irrelevant now that we are using tinycc rather than msvc 6 7 CMD_IN_ENV: "cmd /E:ON /V:ON /C obvci_appveyor_python_build_env.cmd" 7 8 … … 43 44 44 45 install: 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. 46 48 - cmd: set CONDA_NPY=19 47 49 48 50 # 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 50 53 51 54 # Use the pre-installed Miniconda for the desired arch … … 56 59 # so that we can update it. Then we remove it so that 57 60 # 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 70 70 - cmd: pip install bumps unittest-xml-reporting tinycc 71 71
Note: See TracChangeset
for help on using the changeset viewer.