diff options
author | Nirbheek Chauhan <nirbheek@centricular.com> | 2018-08-10 03:57:29 +0530 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2018-08-11 02:36:34 +0300 |
commit | 9ddc305e0727f5c89a61459c15325b31bf88f7da (patch) | |
tree | 19206ebc1c6ca91866536862aa226ec71fb6246c | |
parent | 9f5c84279e65b70865d873999205012f2a2b859e (diff) | |
download | meson-9ddc305e0727f5c89a61459c15325b31bf88f7da.zip meson-9ddc305e0727f5c89a61459c15325b31bf88f7da.tar.gz meson-9ddc305e0727f5c89a61459c15325b31bf88f7da.tar.bz2 |
appveyor.yml: Nuke VS 2010 CI configuration
Appveyor CI gets backlogged for several hours at a time with the most
trivial of usage. Nuke it. It can be re-added if people really need it
and are willing to sponsor extra jobs on Appveyor.
-rw-r--r-- | .appveyor.yml | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/.appveyor.yml b/.appveyor.yml index 6461831..c8e601e 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -17,14 +17,6 @@ environment: backend: ninja - arch: x86 - compiler: msvc2010 - backend: ninja - - - arch: x86 - compiler: msvc2010 - backend: vs2010 - - - arch: x86 compiler: msvc2015 backend: ninja BOOST_ROOT: C:\Libraries\Boost_1_60_0 @@ -57,7 +49,7 @@ branches: init: - ps: | - If($Env:compiler -like 'msvc2010') { + If($Env:compiler -like 'msvc2015') { Set-WinSystemLocale de-DE Start-Sleep -s 5 Restart-Computer @@ -98,7 +90,6 @@ install: - cmd: if %compiler%==msvc2017 ( if %arch%==x86 ( set "PATH=%PATH%;%BOOST_ROOT%\lib32-msvc-14.1" ) else ( set "PATH=%PATH%;%BOOST_ROOT%\lib64-msvc-14.1" ) ) # Set paths and config for each build type. - - cmd: if %compiler%==msvc2010 ( call "C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\vcvarsall.bat" %arch% ) - cmd: if %compiler%==msvc2015 ( call "C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\vcvarsall.bat" %arch% ) - cmd: if %compiler%==msvc2017 ( call "C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\Common7\Tools\VsDevCmd.bat" -arch=%arch% ) - cmd: if %compiler%==cygwin ( set PYTHON=python3 ) else ( set PYTHON=python ) |