source: sasmodels/appveyor.yml @ 9c640ff

core_shell_microgelsmagnetic_modelticket-1257-vesicle-productticket_1156ticket_1265_superballticket_822_more_unit_tests
Last change on this file since 9c640ff was 9c640ff, checked in by Paul Kienzle <pkienzle@…>, 6 years ago

tweak appveyor config; maybe it will work?

  • Property mode set to 100644
File size: 3.1 KB
Line 
1environment:
2
3  # SDK v7.0 MSVC Express 2008's SetEnv.cmd script will fail if the
4  # /E:ON and /V:ON options are not enabled in the batch script interpreter
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"
8
9  # Workaround for https://github.com/conda/conda-build/issues/636
10  PYTHONIOENCODING: "UTF-8"
11
12  matrix:
13    # Note: Because we have to separate the py2 and py3 components due to compiler version, we have a race condition for non-python packages.
14    # Not sure how to resolve this, but maybe we should be tracking the VS version in the build string anyway?
15    - TARGET_ARCH: "x86"
16      CONDA_PY: "27"
17      PY_CONDITION: "python >=2.7,<3"
18      CONDA_INSTALL_LOCN: "C:\\Miniconda"
19#    - TARGET_ARCH: "x86"
20#      CONDA_PY: "34"
21#      PY_CONDITION: "python >=3.4,<3.5"
22#      CONDA_INSTALL_LOCN: "C:\\Miniconda3"
23    - TARGET_ARCH: "x86"
24      CONDA_PY: "35"
25      PY_CONDITION: "python >=3.5"
26      CONDA_INSTALL_LOCN: "C:\\Miniconda35"
27    - TARGET_ARCH: "x64"
28      CONDA_PY: "27"
29      PY_CONDITION: "python >=2.7,<3"
30      CONDA_INSTALL_LOCN: "C:\\Miniconda-x64"
31#    - TARGET_ARCH: "x64"
32#      CONDA_PY: "34"
33#      PY_CONDITION: "python >=3.4,<3.5"
34#      CONDA_INSTALL_LOCN: "C:\\Miniconda3-x64"
35    - TARGET_ARCH: "x64"
36      CONDA_PY: "35"
37      PY_CONDITION: "python >=3.5"
38      CONDA_INSTALL_LOCN: "C:\\Miniconda35-x64"
39
40# We always use a 64-bit machine, but can build x86 distributions
41# with the TARGET_ARCH variable (which is used by CMD_IN_ENV).
42platform:
43    - x64
44
45install:
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.
48    - cmd: set CONDA_NPY=19
49
50    # Remove cygwin (and therefore the git that comes with it).
51    # [2018-01-19 PAK] probably irrelevant since we already pulled the repo
52    #- cmd: rmdir C:\cygwin /s /q
53
54    # Use the pre-installed Miniconda for the desired arch
55    #
56    # However, it is really old. So, we need to update some
57    # things before we proceed. That seems to require it being
58    # on the path. So, we temporarily put conda on the path
59    # so that we can update it. Then we remove it so that
60    # we can do a proper activation.
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    - cmd: pip install bumps unittest-xml-reporting tinycc
71
72build_script:
73    # Build the project
74    - "%CMD_IN_ENV% python setup.py build"
75
76test_script:
77    # Run the project tests
78    - "%CMD_IN_ENV% python -m sasmodels.model_test dll all"
Note: See TracBrowser for help on using the repository browser.