Skip to content

Commit

Permalink
ci: Remove C++11 build jobs after C++14 switch
Browse files Browse the repository at this point in the history
  • Loading branch information
mloskot committed Jun 27, 2022
1 parent 95679b6 commit a09ad81
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 30 deletions.
14 changes: 1 addition & 13 deletions .appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
#
version: 1.0.{build}-{branch}

# Current Boost.GIL develop branch (future Boost 1.68) requires C++11
# Current Boost.GIL develop branch requires C++14
# Since VS2017, MSVC default is /std:c++14, so no explicit switch is required.
image: Visual Studio 2017

Expand All @@ -17,18 +17,6 @@ shallow_clone: true

environment:
matrix:
- TOOLSET: msvc-14.0
ARCH: x86_64
VARIANT: debug
CXXSTD: 11
TEST_HEADERS: 1
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017
- TOOLSET: msvc-14.0
ARCH: x86_64
VARIANT: release
CXXSTD: 11
TEST_HEADERS: 1
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017
- TOOLSET: msvc-14.1
ARCH: x86_64
VARIANT: debug
Expand Down
2 changes: 1 addition & 1 deletion .ci/azure-pipelines/steps-cmake-build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
parameters:
# defaults, if not specified
configuration: 'Release'
cxxver: '11'
cxxver: '14'
enable_ext_io: 'OFF'
enable_ext_numeric: 'ON'
enable_ext_toolbox: 'ON'
Expand Down
30 changes: 15 additions & 15 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,64 +19,64 @@ jobs:
matrix:
include:
- toolset: gcc-6
cxxstd: "11,14,1z"
cxxstd: "14,1z"
os: ubuntu-18.04
install: g++-6
- toolset: gcc-7
cxxstd: "11,14,17"
cxxstd: "14,17"
os: ubuntu-18.04
- toolset: gcc
compiler: g++-8
cxxstd: "11,14"
cxxstd: "14"
os: ubuntu-18.04
install: g++-8
- toolset: gcc-9
cxxstd: "11,14,17"
cxxstd: "14,17"
os: ubuntu-18.04
- toolset: gcc-10
cxxstd: "11,14,17"
cxxstd: "14,17"
os: ubuntu-18.04
- toolset: clang
compiler: clang++-3.9
cxxstd: "11,14"
cxxstd: "14"
os: ubuntu-18.04
install: clang-3.9
- toolset: clang
compiler: clang++-4.0
cxxstd: "11,14"
cxxstd: "14"
os: ubuntu-18.04
install: clang-4.0
- toolset: clang
compiler: clang++-5.0
cxxstd: "11,14,1z"
cxxstd: "14,1z"
os: ubuntu-18.04
install: clang-5.0
- toolset: clang
compiler: clang++-6.0
cxxstd: "11,14,17"
cxxstd: "14,17"
os: ubuntu-18.04
install: clang-6.0
- toolset: clang
compiler: clang++-7
cxxstd: "11,14,17"
cxxstd: "14,17"
os: ubuntu-18.04
install: clang-7
- toolset: clang
compiler: clang++-8
cxxstd: "11,14,17"
cxxstd: "14,17"
os: ubuntu-20.04
install: clang-8
- toolset: clang
compiler: clang++-9
cxxstd: "11,14,17"
cxxstd: "14,17"
os: ubuntu-20.04
install: clang-9
- toolset: clang
compiler: clang++-10
cxxstd: "11,14,17"
cxxstd: "14,17"
os: ubuntu-20.04
- toolset: clang
cxxstd: "11,14,17"
cxxstd: "14,17"
os: macos-10.15

runs-on: ${{matrix.os}}
Expand Down Expand Up @@ -129,7 +129,7 @@ jobs:
addrmd: 32,64
os: windows-2019
- toolset: gcc
cxxstd: "11,14,17"
cxxstd: "14,17"
addrmd: 64
os: windows-2019
- toolset: msvc-14.3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
- name: Run tests
run: |
cd ../boost-root
./b2 -j3 libs/$LIBRARY/test coverage=on toolset=gcc cxxstd=11 variant=debug
./b2 -j3 libs/$LIBRARY/test coverage=on toolset=gcc cxxstd=14 variant=debug
lcov --directory bin.v2 --capture --no-external --directory $(pwd) --output-file coverage.info > /dev/null 2>&1
lcov --extract coverage.info $(pwd)'/boost/gil/*' --output-file coverage.info > /dev/null
lcov --list coverage.info
Expand Down

0 comments on commit a09ad81

Please sign in to comment.