Skip to content

Commit 19f6c78

Browse files
committed
Improve CI test coverage.
1 parent f3df1bf commit 19f6c78

File tree

2 files changed

+10
-17
lines changed

2 files changed

+10
-17
lines changed

.appveyor.yml

Lines changed: 9 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ environment:
44
# /E:ON and /V:ON options are not enabled in the batch script intepreter
55
# See: http://stackoverflow.com/a/13751649/163740
66
CMD_IN_ENV: "cmd /E:ON /V:ON /C .\\ci\\run_with_env.cmd"
7-
BOOST_PREFIX: C:\Libraries\boost_1_63_0
7+
BOOST_PREFIX: C:\Libraries\boost_1_66_0
88

99
matrix:
1010

@@ -18,25 +18,17 @@ environment:
1818
MSVC: "14.0"
1919
ARCH: x86
2020

21-
#- PYTHON: "C:\\Python27-x64"
22-
# PYTHON_VERSION: "2.7.x" # currently 2.7.9
23-
# PYTHON_ARCH: "64"
24-
# ARCH: "x86_64"
25-
26-
#- PYTHON: "C:\\Python35"
27-
# PYTHON_VERSION: "3.5.x" # currently 3.4.3
28-
# PYTHON_ARCH: "32"
29-
3021
- PYTHON: "C:\\Python36-x64"
3122
PYTHON_VERSION: "3.6.x"
3223
PYTHON_ARCH: "64"
3324
MSVC: "12.0"
3425
ARCH: x86_64
3526

3627
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017
28+
PYTHON: "C:\\Python36-x64"
3729
PYTHON_VERSION: "3.6.x"
3830
PYTHON_ARCH: "64"
39-
MSVC: "14.1"
31+
MSVC: "14.13.26128"
4032
ARCH: x86_64
4133

4234
install:
@@ -53,8 +45,9 @@ install:
5345
- ps: "ls \"C:/\""
5446
- ECHO "Installed libraries:"
5547
- ps: "ls \"C:/Libraries/\""
56-
- ECHO "Installed SDKs:"
57-
- ps: "ls \"C:/Program Files/Microsoft SDKs/Windows\""
48+
## This path doesn't exist with the VS 2017 worker images
49+
#- ECHO "Installed SDKs:"
50+
#- ps: "ls \"C:/Program Files/Microsoft SDKs/Windows\""
5851

5952
# Install Python (from the official .msi of http://python.org) and pip when
6053
# not already installed.
@@ -78,13 +71,13 @@ install:
7871
# pip will build them from source using the MSVC compiler matching the
7972
# target Python version and architecture
8073
- |
81-
curl -LfsS -o faber.tar.gz https://github.com/stefanseefeld/faber/archive/snapshot/2018-03-07.tar.gz
74+
curl -LfsS -o faber.tar.gz https://github.com/stefanseefeld/faber/archive/snapshot/2018-04-08.tar.gz
8275
tar xf faber.tar.gz
83-
CD faber-snapshot-2018-03-07
76+
CD faber-snapshot-2018-04-08
8477
python setup.py install
8578
CD ..
8679
# report the available MSVC compilers
87-
- python -m faber.tools.msvc
80+
- faber --info=tools cxx
8881
- easy_install sphinx
8982
- pip install numpy
9083

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ install:
8181
echo "using cached Boost prerequisites."
8282
fi
8383
# Install Faber, the build tool.
84-
date=2018-03-07
84+
date=2018-04-08
8585
wget https://github.com/stefanseefeld/faber/archive/snapshot/$date.tar.gz
8686
tar xf $date.tar.gz
8787
pushd faber-snapshot-$date

0 commit comments

Comments
 (0)