Skip to content

Ci appveyor #8855

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 10 commits into from
Jul 10, 2017
36 changes: 15 additions & 21 deletions .appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,28 +24,24 @@ environment:
# theoretically the CONDA_INSTALL_LOCN could be only two: one for 32bit,
# one for 64bit because we construct envs anyway. But using one for the
# right python version is hopefully making it fast due to package caching.
- TARGET_ARCH: "x64"
CONDA_PY: "27"
CONDA_NPY: "18"
PYTHON_VERSION: "2.7"
TEST_ALL: "no"
CONDA_INSTALL_LOCN: "C:\\Miniconda-x64"
# - TARGET_ARCH: "x64"
# CONDA_PY: "27"
# CONDA_NPY: "18"
# PYTHON_VERSION: "2.7"
# TEST_ALL: "no"
# CONDA_INSTALL_LOCN: "C:\\Miniconda-x64"
- TARGET_ARCH: "x64"
CONDA_PY: "35"
CONDA_NPY: "110"
PYTHON_VERSION: "3.5"
TEST_ALL: "no"
CONDA_INSTALL_LOCN: "C:\\Miniconda35-x64"
- TARGET_ARCH: "x86"
CONDA_PY: "27"
CONDA_NPY: "18"
PYTHON_VERSION: "2.7"
# this variable influence pdf/svg and most importantly the latex related tests
# which triples the runtime of the tests (7-8min vs 30min).
# pick the one which seems to make the most problems and run it last, so that
# the rest of the tests can give feedback earlier
TEST_ALL: "yes"
CONDA_INSTALL_LOCN: "C:\\Miniconda"
TEST_ALL: "no"
- TARGET_ARCH: "x64"
CONDA_PY: "36"
PYTHON_VERSION: "3.6"
CONDA_NPY: "111"
CONDA_INSTALL_LOCN: "C:\\Miniconda36-x64"
TEST_ALL: "no"

# We always use a 64-bit machine, but can build x86 distributions
# with the PYTHON_ARCH variable (which is used by CMD_IN_ENV).
Expand All @@ -66,11 +62,9 @@ install:
- set PATH=%CONDA_INSTALL_LOCN%;%CONDA_INSTALL_LOCN%\scripts;%PATH%;
- set PYTHONUNBUFFERED=1
# for obvci_appveyor_python_build_env.cmd
- conda install -c pelson/channel/development --yes --quiet obvious-ci
- conda install -c conda-forge --yes --quiet obvious-ci
# for msinttypes and newer stuff
# conda-forge may serve outdated versions of certain packages (e.g. conda
# itself), so append it to the end of the list.
- conda config --append channels conda-forge
- conda config --prepend channels conda-forge
- conda config --set show_channel_urls yes
- conda config --set always_yes true
# For building conda packages
Expand Down