Changeset 068f7b6 in sasmodels


Ignore:
Timestamp:
Jan 19, 2018 11:01:46 AM (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:
fefc185
Parents:
1f4770c
Message:

tweak appveyor config; maybe it will work?

File:
1 edited

Legend:

Unmodified
Added
Removed
  • appveyor.yml

    r1f4770c r068f7b6  
    55  # See: http://stackoverflow.com/a/13751649/163740 
    66  # 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" 
    88 
    99  # Workaround for https://github.com/conda/conda-build/issues/636 
     
    6363    # we can do a proper activation. 
    6464    - 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 
    7173    # 2018-01-19 PAK: 3rd party packages might need msvc, so %CMD_IN_ENV% may be needed for pip 
    7274    - cmd: pip install bumps unittest-xml-reporting tinycc 
     
    7476build_script: 
    7577    # 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 
    7782 
    7883test_script: 
    7984    # 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.