From 3a1d04914f3a2d0d7812cdfd9824b377d07fb56b Mon Sep 17 00:00:00 2001 From: Ralph Lange Date: Sun, 2 Jan 2022 14:00:10 +0100 Subject: [PATCH] appveyor: drop support for VS2008 - Visual Studio 2008 has been dropped by EPICS Base end of 2020 (fixes #64) --- .appveyor.yml | 3 --- README.md | 2 +- appveyor/.appveyor.yml.example-full | 3 --- appveyor/.appveyor.yml.example-mini | 2 -- appveyor/README.md | 4 ++-- 5 files changed, 3 insertions(+), 11 deletions(-) diff --git a/.appveyor.yml b/.appveyor.yml index 5dfc711..3e9a428 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -95,7 +95,6 @@ environment: - CMP: vs2013 - CMP: vs2012 - CMP: vs2010 - - CMP: vs2008 # Platform: architecture platform: @@ -125,8 +124,6 @@ matrix: CMP: vs2012 - platform: x64 CMP: vs2010 - - platform: x64 - CMP: vs2008 # Run test script for unit tests (SET = test00) for: diff --git a/README.md b/README.md index 1b624df..11a5d84 100644 --- a/README.md +++ b/README.md @@ -85,7 +85,7 @@ for more details. - One parallel runner (all builds are sequential) - Windows Server 2012/2016/2019 - Compile using gcc/MinGW or different Visual Studio versions: \ - 2008, 2010, 2012, 2013, 2015, 2017, 2019 + 2010, 2012, 2013, 2015, 2017, 2019 - Compile for Windows 32bit and 64bit - No useful caching available. diff --git a/appveyor/.appveyor.yml.example-full b/appveyor/.appveyor.yml.example-full index 36b9e58..979a65d 100644 --- a/appveyor/.appveyor.yml.example-full +++ b/appveyor/.appveyor.yml.example-full @@ -109,7 +109,6 @@ environment: - CMP: vs2013 - CMP: vs2012 - CMP: vs2010 - - CMP: vs2008 # Platform: processor architecture platform: @@ -124,8 +123,6 @@ matrix: CMP: vs2012 - platform: x64 CMP: vs2010 - - platform: x64 - CMP: vs2008 # Exclude more jobs to reduce build time # E.g., skip 32-bit for newer compilers #- platform: x86 diff --git a/appveyor/.appveyor.yml.example-mini b/appveyor/.appveyor.yml.example-mini index 9bb41bc..5907214 100644 --- a/appveyor/.appveyor.yml.example-mini +++ b/appveyor/.appveyor.yml.example-mini @@ -52,8 +52,6 @@ matrix: CMP: vs2012 - platform: x64 CMP: vs2010 - - platform: x64 - CMP: vs2008 build_script: - cmd: python .ci/cue.py prepare diff --git a/appveyor/README.md b/appveyor/README.md index 07ae07b..e96f93d 100644 --- a/appveyor/README.md +++ b/appveyor/README.md @@ -5,7 +5,7 @@ - One parallel runner (all builds are sequential) - Windows Server 2012/2016/2019 - Compile using gcc/MinGW or different Visual Studio versions: \ - 2008, 2010, 2012, 2013, 2015, 2017, 2019 + 2010, 2012, 2013, 2015, 2017, 2019 - Compile for Windows 32bit and 64bit - No useful caching available. @@ -46,7 +46,7 @@ List of environment variable settings. Each list element (starting with a dash) is one step on the axis of the build matrix. \ Set `CMP` to select the compiler: `gcc` for the native - [MinGW](http://mingw-w64.org/) GNU compiler, `vs2008` ...`vs2019` + [MinGW](http://mingw-w64.org/) GNU compiler, `vs2010` ...`vs2019` (options listed above) for the Microsoft Visual Studio compilers. Your builds will take long. \