Changeset 068f7b6 in sasmodels
- Timestamp:
- Jan 19, 2018 1:01:46 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:
- fefc185
- Parents:
- 1f4770c
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
appveyor.yml
r1f4770c r068f7b6 5 5 # See: http://stackoverflow.com/a/13751649/163740 6 6 # 2018-01-19 PAK: probably irrelevant now that we are using tinycc rather than msvc 7 CMD_IN_ENV: "cmd /E:ON /V:ON /C obvci_appveyor_python_build_env.cmd"7 #CMD_IN_ENV: "cmd /E:ON /V:ON /C obvci_appveyor_python_build_env.cmd" 8 8 9 9 # Workaround for https://github.com/conda/conda-build/issues/636 … … 63 63 # we can do a proper activation. 64 64 - cmd: conda update --yes --quiet conda python 65 - cmd: call "%CONDA_INSTALL_LOCN%\Scripts\activate.bat" 66 - cmd: conda config --add channels conda-forge 67 - cmd: conda config --set show_channel_urls true 68 - cmd: conda install --yes --quiet obvious-ci 69 - cmd: conda install --yes --quiet numpy toolchain scipy cython cffi 70 - cmd: conda install --yes --channel conda-forge pyopencl 65 - cmd: call %CONDA_INSTALL_LOCN%\Scripts\activate.bat 66 #- cmd: conda config --add channels conda-forge 67 #- cmd: conda config --set show_channel_urls true 68 #- cmd: conda install --yes --quiet obvious-ci 69 # 2018-01-19 PAK: skipping toolchain cython and cffi (these were for pyopencl?) 70 - cmd: conda install --yes --quiet numpy scipy 71 # 2018-01-19 PAK: skipping pyopencl; this would be needed for deploy but maybe not for test 72 #- cmd: conda install --yes --channel conda-forge pyopencl 71 73 # 2018-01-19 PAK: 3rd party packages might need msvc, so %CMD_IN_ENV% may be needed for pip 72 74 - cmd: pip install bumps unittest-xml-reporting tinycc … … 74 76 build_script: 75 77 # Build the project 76 - "%CMD_IN_ENV% python setup.py build" 78 # 2018-01-19 PAK: maybe need one of this if using msvc? 79 #- "%CMD_IN_ENV% python setup.py build" 80 #- cmd /E:ON /V:ON /C obvci_appveyor_python_build_env.cmd python setup.py build 81 - python setup.py build 77 82 78 83 test_script: 79 84 # Run the project tests 80 - "%CMD_IN_ENV% python -m sasmodels.model_test dll all" 85 # 2018-01-19 PAK: maybe need one of this if using msvc? 86 #- "%CMD_IN_ENV% python -m sasmodels.model_test dll all" 87 #- cmd /E:ON /V:ON /C obvci_appveyor_python_build_env.cmd python -m sasmoels.model_test dll all 88 - python -m sasmodels.model_test dll all
Note: See TracChangeset
for help on using the changeset viewer.