Skip to content

Commit

Permalink
fix(ci): remove old toolchains
Browse files Browse the repository at this point in the history
  • Loading branch information
loktionov129 committed Mar 25, 2020
1 parent 80a36c7 commit 9344793
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 23 deletions.
15 changes: 7 additions & 8 deletions .ci/appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
image:
- Visual Studio 2019
- Visual Studio 2017
- Visual Studio 2015

skip_non_tags: true

Expand All @@ -21,12 +20,6 @@ matrix:
- image: Visual Studio 2017
TOOLCHAIN: msvc16

- image: Visual Studio 2015
TOOLCHAIN: msvc15

- image: Visual Studio 2015
TOOLCHAIN: msvc16

platform:
- x64
- x86
Expand All @@ -36,7 +29,6 @@ configuration:

environment:
matrix:
- TOOLCHAIN: msvc14
- TOOLCHAIN: msvc15
- TOOLCHAIN: msvc16

Expand Down Expand Up @@ -83,5 +75,12 @@ Powered by C++17 & Lua-5.3.4
- Left 4 Dead 2
## System Requirements
- Windows 10
- Microsoft Visual C++ Redistributable ([x86](https://aka.ms/vs/16/release/VC_redist.x86.exe) / [x64](https://aka.ms/vs/16/release/VC_redist.x64.exe))
"
16 changes: 1 addition & 15 deletions .ci/install.bat
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,6 @@
if "%1" == "" goto :finalize
if /i "%1" == "x86" goto :x86
if /i "%1" == "x64" goto :x64
if /i "%1" == "msvc12" goto :msvc12
if /i "%1" == "msvc14" goto :msvc14
if /i "%1" == "msvc15" goto :msvc15
if /i "%1" == "msvc16" goto :msvc16

Expand Down Expand Up @@ -41,18 +39,6 @@ goto :loop

:: Toolchain

:msvc12
set TOOLCHAIN=msvc12
set CMAKE_GENERATOR=Visual Studio 12 2013
shift
goto :loop

:msvc14
set TOOLCHAIN=msvc14
set CMAKE_GENERATOR=Visual Studio 14 2015
shift
goto :loop

:msvc15
set TOOLCHAIN=msvc15
set CMAKE_GENERATOR=Visual Studio 15 2017
Expand All @@ -71,7 +57,7 @@ goto :loop

:finalize

if "%TOOLCHAIN%" == "" goto :msvc14
if "%TOOLCHAIN%" == "" goto :msvc15
if "%TARGET_CPU%" == "" goto :x64
if "%PROJECT_NAME%" == "" set PROJECT_NAME=GameTrainer
if "%CONFIGURATION%" == "" set CONFIGURATION=Release
Expand Down

0 comments on commit 9344793

Please sign in to comment.