Changes in appveyor.yml [fefc185:1258e32] in sasmodels
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
appveyor.yml
rfefc185 r1258e32 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 7 #CMD_IN_ENV: "cmd /E:ON /V:ON /C obvci_appveyor_python_build_env.cmd" 6 CMD_IN_ENV: "cmd /E:ON /V:ON /C obvci_appveyor_python_build_env.cmd" 8 7 9 8 # Workaround for https://github.com/conda/conda-build/issues/636 … … 23 22 - TARGET_ARCH: "x86" 24 23 CONDA_PY: "35" 25 PY_CONDITION: "python >=3.5 ,<3.6"24 PY_CONDITION: "python >=3.5" 26 25 CONDA_INSTALL_LOCN: "C:\\Miniconda35" 27 26 - TARGET_ARCH: "x64" … … 35 34 - TARGET_ARCH: "x64" 36 35 CONDA_PY: "35" 37 PY_CONDITION: "python >=3.5 ,<3.6"36 PY_CONDITION: "python >=3.5" 38 37 CONDA_INSTALL_LOCN: "C:\\Miniconda35-x64" 39 38 … … 44 43 45 44 install: 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. 45 # Set the CONDA_NPY, although it has no impact on the actual build. We need this because of a test within conda-build. 48 46 - cmd: set CONDA_NPY=19 49 47 50 48 # Remove cygwin (and therefore the git that comes with it). 51 # 2018-01-19 PAK: irrelevant since we already pulled the repo 52 #- cmd: rmdir C:\cygwin /s /q 53 54 # Set the conda path; would be nice to do this 55 - cmd: path %CONDA_INSTALL_LOCN%\Scripts;%PATH% 49 - cmd: rmdir C:\cygwin /s /q 56 50 57 51 # Use the pre-installed Miniconda for the desired arch … … 62 56 # so that we can update it. Then we remove it so that 63 57 # 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%" 64 60 - cmd: conda update --yes --quiet conda python 61 - cmd: set "PATH=%OLDPATH%" 65 62 - cmd: call %CONDA_INSTALL_LOCN%\Scripts\activate.bat 66 #- cmd: conda config --add channels conda-forge 67 #- cmd: conda config --set show_channel_urls true68 #- cmd: conda install --yes --quiet obvious-ci69 # 2018-01-19 PAK: skipping toolchain cython and cffi (these were for pyopencl?)70 - cmd: conda install --yes --quiet numpy scipy71 # 2018-01-19 PAK: skipping pyopencl; this would be needed for deploy but maybe not for test63 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 72 69 #- cmd: conda install --yes --channel conda-forge pyopencl 73 # 2018-01-19 PAK: 3rd party packages might need msvc, so %CMD_IN_ENV% may be needed for pip74 70 - cmd: pip install bumps unittest-xml-reporting tinycc 75 71 76 72 build_script: 77 73 # Build the project 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 74 - "%CMD_IN_ENV% python setup.py build" 82 75 83 76 test_script: 84 77 # Run the project tests 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 78 - "%CMD_IN_ENV% python -m sasmodels.model_test dll all"
Note: See TracChangeset
for help on using the changeset viewer.