Remove C++03 from CI

This commit is contained in:
Peter Dimov
2023-10-19 18:24:10 +03:00
parent a3cc06aab5
commit 0e0a4fe51d
3 changed files with 43 additions and 43 deletions

View File

@@ -99,7 +99,7 @@ local windows_pipeline(name, image, environment, arch = "amd64") =
linux_pipeline( linux_pipeline(
"Linux 14.04 GCC 4.4", "Linux 14.04 GCC 4.4",
"cppalliance/droneubuntu1404:1", "cppalliance/droneubuntu1404:1",
{ TOOLSET: 'gcc', COMPILER: 'g++-4.4', CXXSTD: '98,0x' }, { TOOLSET: 'gcc', COMPILER: 'g++-4.4', CXXSTD: '0x' },
"g++-4.4", "g++-4.4",
[ "ppa:ubuntu-toolchain-r/test" ], [ "ppa:ubuntu-toolchain-r/test" ],
), ),
@@ -107,7 +107,7 @@ local windows_pipeline(name, image, environment, arch = "amd64") =
linux_pipeline( linux_pipeline(
"Linux 14.04 GCC 4.6 32/64", "Linux 14.04 GCC 4.6 32/64",
"cppalliance/droneubuntu1404:1", "cppalliance/droneubuntu1404:1",
{ TOOLSET: 'gcc', COMPILER: 'g++-4.6', CXXSTD: '98,0x', ADDRMD: '32,64' }, { TOOLSET: 'gcc', COMPILER: 'g++-4.6', CXXSTD: '0x', ADDRMD: '32,64' },
"g++-4.6-multilib", "g++-4.6-multilib",
[ "ppa:ubuntu-toolchain-r/test" ], [ "ppa:ubuntu-toolchain-r/test" ],
), ),
@@ -115,7 +115,7 @@ local windows_pipeline(name, image, environment, arch = "amd64") =
linux_pipeline( linux_pipeline(
"Linux 14.04 GCC 4.7 32/64", "Linux 14.04 GCC 4.7 32/64",
"cppalliance/droneubuntu1404:1", "cppalliance/droneubuntu1404:1",
{ TOOLSET: 'gcc', COMPILER: 'g++-4.7', CXXSTD: '98,0x', ADDRMD: '32,64' }, { TOOLSET: 'gcc', COMPILER: 'g++-4.7', CXXSTD: '0x', ADDRMD: '32,64' },
"g++-4.7-multilib", "g++-4.7-multilib",
[ "ppa:ubuntu-toolchain-r/test" ], [ "ppa:ubuntu-toolchain-r/test" ],
), ),
@@ -123,13 +123,13 @@ local windows_pipeline(name, image, environment, arch = "amd64") =
linux_pipeline( linux_pipeline(
"Linux 14.04 GCC 4.8* 32/64", "Linux 14.04 GCC 4.8* 32/64",
"cppalliance/droneubuntu1404:1", "cppalliance/droneubuntu1404:1",
{ TOOLSET: 'gcc', COMPILER: 'g++', CXXSTD: '03,11', ADDRMD: '32,64' }, { TOOLSET: 'gcc', COMPILER: 'g++', CXXSTD: '11', ADDRMD: '32,64' },
), ),
linux_pipeline( linux_pipeline(
"Linux 14.04 GCC 4.9 32/64", "Linux 14.04 GCC 4.9 32/64",
"cppalliance/droneubuntu1404:1", "cppalliance/droneubuntu1404:1",
{ TOOLSET: 'gcc', COMPILER: 'g++-4.9', CXXSTD: '03,11', ADDRMD: '32,64' }, { TOOLSET: 'gcc', COMPILER: 'g++-4.9', CXXSTD: '11', ADDRMD: '32,64' },
"g++-4.9-multilib", "g++-4.9-multilib",
[ "ppa:ubuntu-toolchain-r/test" ], [ "ppa:ubuntu-toolchain-r/test" ],
), ),
@@ -137,53 +137,53 @@ local windows_pipeline(name, image, environment, arch = "amd64") =
linux_pipeline( linux_pipeline(
"Linux 20.04 GCC 9 ARM64 32/64", "Linux 20.04 GCC 9 ARM64 32/64",
"cppalliance/droneubuntu2004:multiarch", "cppalliance/droneubuntu2004:multiarch",
{ TOOLSET: 'gcc', COMPILER: 'g++', CXXSTD: '03,11,14,17,2a', ADDRMD: '32,64' }, { TOOLSET: 'gcc', COMPILER: 'g++', CXXSTD: '11,14,17,2a', ADDRMD: '32,64' },
arch="arm64", arch="arm64",
), ),
linux_pipeline( linux_pipeline(
"Linux 20.04 GCC 9 S390x 32/64", "Linux 20.04 GCC 9 S390x 32/64",
"cppalliance/droneubuntu2004:multiarch", "cppalliance/droneubuntu2004:multiarch",
{ TOOLSET: 'gcc', COMPILER: 'g++', CXXSTD: '03,11,14,17,2a', ADDRMD: '32,64' }, { TOOLSET: 'gcc', COMPILER: 'g++', CXXSTD: '11,14,17,2a', ADDRMD: '32,64' },
arch="s390x", arch="s390x",
), ),
linux_pipeline( linux_pipeline(
"Linux 22.04 GCC 12 32 ASAN", "Linux 22.04 GCC 12 32 ASAN",
"cppalliance/droneubuntu2204:1", "cppalliance/droneubuntu2204:1",
{ TOOLSET: 'gcc', COMPILER: 'g++-12', CXXSTD: '03,11,14,17,20', ADDRMD: '32' } + asan, { TOOLSET: 'gcc', COMPILER: 'g++-12', CXXSTD: '11,14,17,20', ADDRMD: '32' } + asan,
"g++-12-multilib", "g++-12-multilib",
), ),
linux_pipeline( linux_pipeline(
"Linux 22.04 GCC 12 64 ASAN", "Linux 22.04 GCC 12 64 ASAN",
"cppalliance/droneubuntu2204:1", "cppalliance/droneubuntu2204:1",
{ TOOLSET: 'gcc', COMPILER: 'g++-12', CXXSTD: '03,11,14,17,20', ADDRMD: '64' } + asan, { TOOLSET: 'gcc', COMPILER: 'g++-12', CXXSTD: '11,14,17,20', ADDRMD: '64' } + asan,
"g++-12-multilib", "g++-12-multilib",
), ),
linux_pipeline( linux_pipeline(
"Linux 22.04 Clang 14 UBSAN", "Linux 22.04 Clang 14 UBSAN",
"cppalliance/droneubuntu2204:1", "cppalliance/droneubuntu2204:1",
{ TOOLSET: 'clang', COMPILER: 'clang++-14', CXXSTD: '03,11,14,17,20' } + ubsan, { TOOLSET: 'clang', COMPILER: 'clang++-14', CXXSTD: '11,14,17,20' } + ubsan,
"clang-14", "clang-14",
), ),
linux_pipeline( linux_pipeline(
"Linux 22.04 Clang 14 ASAN", "Linux 22.04 Clang 14 ASAN",
"cppalliance/droneubuntu2204:1", "cppalliance/droneubuntu2204:1",
{ TOOLSET: 'clang', COMPILER: 'clang++-14', CXXSTD: '03,11,14,17,20' } + asan, { TOOLSET: 'clang', COMPILER: 'clang++-14', CXXSTD: '11,14,17,20' } + asan,
"clang-14", "clang-14",
), ),
macos_pipeline( macos_pipeline(
"MacOS 10.15 Xcode 12.2 UBSAN", "MacOS 10.15 Xcode 12.2 UBSAN",
{ TOOLSET: 'clang', COMPILER: 'clang++', CXXSTD: '03,11,14,1z' } + ubsan, { TOOLSET: 'clang', COMPILER: 'clang++', CXXSTD: '11,14,1z' } + ubsan,
), ),
macos_pipeline( macos_pipeline(
"MacOS 10.15 Xcode 12.2 ASAN", "MacOS 10.15 Xcode 12.2 ASAN",
{ TOOLSET: 'clang', COMPILER: 'clang++', CXXSTD: '03,11,14,1z' } + asan, { TOOLSET: 'clang', COMPILER: 'clang++', CXXSTD: '11,14,1z' } + asan,
), ),
windows_pipeline( windows_pipeline(

View File

@@ -18,129 +18,129 @@ jobs:
matrix: matrix:
include: include:
- toolset: gcc-4.8 - toolset: gcc-4.8
cxxstd: "03,11" cxxstd: "11"
os: ubuntu-latest os: ubuntu-latest
container: ubuntu:18.04 container: ubuntu:18.04
install: g++-4.8-multilib install: g++-4.8-multilib
address-model: 32,64 address-model: 32,64
- toolset: gcc-5 - toolset: gcc-5
cxxstd: "03,11,14,1z" cxxstd: "11,14,1z"
os: ubuntu-latest os: ubuntu-latest
container: ubuntu:18.04 container: ubuntu:18.04
install: g++-5-multilib install: g++-5-multilib
address-model: 32,64 address-model: 32,64
- toolset: gcc-6 - toolset: gcc-6
cxxstd: "03,11,14,1z" cxxstd: "11,14,1z"
os: ubuntu-latest os: ubuntu-latest
container: ubuntu:18.04 container: ubuntu:18.04
install: g++-6-multilib install: g++-6-multilib
address-model: 32,64 address-model: 32,64
- toolset: gcc-7 - toolset: gcc-7
cxxstd: "03,11,14,17" cxxstd: "11,14,17"
os: ubuntu-20.04 os: ubuntu-20.04
install: g++-7-multilib install: g++-7-multilib
address-model: 32,64 address-model: 32,64
- toolset: gcc-8 - toolset: gcc-8
cxxstd: "03,11,14,17,2a" cxxstd: "11,14,17,2a"
os: ubuntu-20.04 os: ubuntu-20.04
install: g++-8-multilib install: g++-8-multilib
address-model: 32,64 address-model: 32,64
- toolset: gcc-9 - toolset: gcc-9
cxxstd: "03,11,14,17,2a" cxxstd: "11,14,17,2a"
os: ubuntu-20.04 os: ubuntu-20.04
install: g++-9-multilib install: g++-9-multilib
address-model: 32,64 address-model: 32,64
- toolset: gcc-10 - toolset: gcc-10
cxxstd: "03,11,14,17,2a" cxxstd: "11,14,17,2a"
os: ubuntu-20.04 os: ubuntu-20.04
install: g++-10-multilib install: g++-10-multilib
address-model: 32,64 address-model: 32,64
- toolset: gcc-11 - toolset: gcc-11
cxxstd: "03,11,14,17,20" cxxstd: "11,14,17,20"
os: ubuntu-20.04 os: ubuntu-20.04
install: g++-11-multilib install: g++-11-multilib
address-model: 32,64 address-model: 32,64
- toolset: gcc-12 - toolset: gcc-12
cxxstd: "03,11,14,17,20,2b" cxxstd: "11,14,17,20,2b"
os: ubuntu-22.04 os: ubuntu-22.04
install: g++-12-multilib install: g++-12-multilib
address-model: 32,64 address-model: 32,64
- toolset: clang - toolset: clang
compiler: clang++-3.9 compiler: clang++-3.9
cxxstd: "03,11,14" cxxstd: "11,14"
os: ubuntu-latest os: ubuntu-latest
container: ubuntu:18.04 container: ubuntu:18.04
install: clang-3.9 install: clang-3.9
- toolset: clang - toolset: clang
compiler: clang++-4.0 compiler: clang++-4.0
cxxstd: "03,11,14" cxxstd: "11,14"
os: ubuntu-latest os: ubuntu-latest
container: ubuntu:18.04 container: ubuntu:18.04
install: clang-4.0 install: clang-4.0
- toolset: clang - toolset: clang
compiler: clang++-5.0 compiler: clang++-5.0
cxxstd: "03,11,14,1z" cxxstd: "11,14,1z"
os: ubuntu-latest os: ubuntu-latest
container: ubuntu:18.04 container: ubuntu:18.04
install: clang-5.0 install: clang-5.0
- toolset: clang - toolset: clang
compiler: clang++-6.0 compiler: clang++-6.0
cxxstd: "03,11,14,17" cxxstd: "11,14,17"
os: ubuntu-20.04 os: ubuntu-20.04
install: clang-6.0 install: clang-6.0
- toolset: clang - toolset: clang
compiler: clang++-7 compiler: clang++-7
cxxstd: "03,11,14,17" cxxstd: "11,14,17"
os: ubuntu-20.04 os: ubuntu-20.04
install: clang-7 install: clang-7
- toolset: clang - toolset: clang
compiler: clang++-8 compiler: clang++-8
cxxstd: "03,11,14,17" cxxstd: "11,14,17"
os: ubuntu-20.04 os: ubuntu-20.04
install: clang-8 install: clang-8
- toolset: clang - toolset: clang
compiler: clang++-9 compiler: clang++-9
cxxstd: "03,11,14,17,2a" cxxstd: "11,14,17,2a"
os: ubuntu-20.04 os: ubuntu-20.04
install: clang-9 install: clang-9
- toolset: clang - toolset: clang
compiler: clang++-10 compiler: clang++-10
cxxstd: "03,11,14,17,2a" cxxstd: "11,14,17,2a"
os: ubuntu-20.04 os: ubuntu-20.04
install: clang-10 install: clang-10
- toolset: clang - toolset: clang
compiler: clang++-11 compiler: clang++-11
cxxstd: "03,11,14,17,2a" cxxstd: "11,14,17,2a"
os: ubuntu-20.04 os: ubuntu-20.04
install: clang-11 install: clang-11
- toolset: clang - toolset: clang
compiler: clang++-12 compiler: clang++-12
cxxstd: "03,11,14,17,20" cxxstd: "11,14,17,20"
os: ubuntu-20.04 os: ubuntu-20.04
install: clang-12 install: clang-12
- toolset: clang - toolset: clang
compiler: clang++-13 compiler: clang++-13
cxxstd: "03,11,14,17,20,2b" cxxstd: "11,14,17,20,2b"
os: ubuntu-22.04 os: ubuntu-22.04
install: clang-13 install: clang-13
- toolset: clang - toolset: clang
compiler: clang++-14 compiler: clang++-14
cxxstd: "03,11,14,17,20,2b" cxxstd: "11,14,17,20,2b"
os: ubuntu-22.04 os: ubuntu-22.04
install: clang-14 install: clang-14
- toolset: clang - toolset: clang
compiler: clang++-15 compiler: clang++-15
cxxstd: "03,11,14,17,20,2b" cxxstd: "11,14,17,20,2b"
os: ubuntu-22.04 os: ubuntu-22.04
install: clang-15 install: clang-15
- toolset: clang - toolset: clang
cxxstd: "03,11,14,17,2a" cxxstd: "11,14,17,2a"
os: macos-11 os: macos-11
- toolset: clang - toolset: clang
cxxstd: "03,11,14,17,20,2b" cxxstd: "11,14,17,20,2b"
os: macos-12 os: macos-12
- toolset: clang - toolset: clang
cxxstd: "03,11,14,17,20,2b" cxxstd: "11,14,17,20,2b"
os: macos-13 os: macos-13
runs-on: ${{matrix.os}} runs-on: ${{matrix.os}}
@@ -220,7 +220,7 @@ jobs:
addrmd: 32,64 addrmd: 32,64
os: windows-2022 os: windows-2022
- toolset: gcc - toolset: gcc
cxxstd: "03,11,14,17,2a" cxxstd: "11,14,17,2a"
addrmd: 64 addrmd: 64
os: windows-2019 os: windows-2019

View File

@@ -31,19 +31,19 @@ environment:
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015 - APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015
ADDPATH: C:\cygwin\bin; ADDPATH: C:\cygwin\bin;
TOOLSET: gcc TOOLSET: gcc
CXXSTD: 03,11,14,1z CXXSTD: 11,14,1z
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015 - APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015
ADDPATH: C:\cygwin64\bin; ADDPATH: C:\cygwin64\bin;
TOOLSET: gcc TOOLSET: gcc
CXXSTD: 03,11,14,1z CXXSTD: 11,14,1z
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015 - APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015
ADDPATH: C:\mingw\bin; ADDPATH: C:\mingw\bin;
TOOLSET: gcc TOOLSET: gcc
CXXSTD: 03,11,14,1z CXXSTD: 11,14,1z
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015 - APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015
ADDPATH: C:\mingw-w64\x86_64-6.3.0-posix-seh-rt_v5-rev1\mingw64\bin; ADDPATH: C:\mingw-w64\x86_64-6.3.0-posix-seh-rt_v5-rev1\mingw64\bin;
TOOLSET: gcc TOOLSET: gcc
CXXSTD: 03,11,14,1z CXXSTD: 11,14,1z
install: install:
- set BOOST_BRANCH=develop - set BOOST_BRANCH=develop