summaryrefslogtreecommitdiffstats
path: root/appveyor.yml
diff options
context:
space:
mode:
authorJose Fonseca <[email protected]>2018-10-12 09:52:52 +0100
committerJose Fonseca <[email protected]>2018-10-16 09:41:07 +0100
commitb94f9cd8f9ce751533e50fd1fa5f41acfb4466c0 (patch)
tree97848bc7b2fc3ed30f4990c25dcf88ea9f6d2a7f /appveyor.yml
parent647c2b90e96a9ab8571baf958a7c67c1e816911a (diff)
appveyor: Update to MSVC 2017.
That's what we (and I suppose most people out there) are using now. Reviewed-by: Roland Scheidegger <[email protected]>
Diffstat (limited to 'appveyor.yml')
-rw-r--r--appveyor.yml12
1 files changed, 6 insertions, 6 deletions
diff --git a/appveyor.yml b/appveyor.yml
index 73be3c57df8..66f8354bd66 100644
--- a/appveyor.yml
+++ b/appveyor.yml
@@ -35,9 +35,9 @@ clone_depth: 100
cache:
- win_flex_bison-2.5.9.zip
-- llvm-5.0.1-msvc2015-mtd.7z
+- llvm-5.0.1-msvc2017-mtd.7z
-os: Visual Studio 2015
+os: Visual Studio 2017
init:
# Appveyor defaults core.autocrlf to input instead of the default (true), but
@@ -46,7 +46,7 @@ init:
environment:
WINFLEXBISON_ARCHIVE: win_flex_bison-2.5.9.zip
- LLVM_ARCHIVE: llvm-5.0.1-msvc2015-mtd.7z
+ LLVM_ARCHIVE: llvm-5.0.1-msvc2017-mtd.7z
install:
# Check git config
@@ -61,7 +61,7 @@ install:
# Install python wheels, necessary to install SCons via pip
- python -m pip install wheel
# Install SCons
-- python -m pip install scons==2.5.1
+- python -m pip install scons==3.0.1
- scons --version
# Install flex/bison
- if not exist "%WINFLEXBISON_ARCHIVE%" appveyor DownloadFile "https://downloads.sourceforge.net/project/winflexbison/old_versions/%WINFLEXBISON_ARCHIVE%"
@@ -76,10 +76,10 @@ install:
- set LLVM=%CD%\llvm
build_script:
-- scons -j%NUMBER_OF_PROCESSORS% MSVC_VERSION=14.0 llvm=1
+- scons -j%NUMBER_OF_PROCESSORS% MSVC_VERSION=14.1 llvm=1
after_build:
-- scons -j%NUMBER_OF_PROCESSORS% MSVC_VERSION=14.0 llvm=1 check
+- scons -j%NUMBER_OF_PROCESSORS% MSVC_VERSION=14.1 llvm=1 check
# It's possible to setup notification here, as described in