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.
pull/4014/head
Nirbheek Chauhan 6 years ago committed by Jussi Pakkanen
parent 9f5c84279e
commit 9ddc305e07
  1. 11
      .appveyor.yml

@ -16,14 +16,6 @@ environment:
compiler: cygwin
backend: ninja
- arch: x86
compiler: msvc2010
backend: ninja
- arch: x86
compiler: msvc2010
backend: vs2010
- arch: x86
compiler: msvc2015
backend: ninja
@ -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 )

Loading…
Cancel
Save