Skip to content

Commit

Permalink
ci: Remove GCC 5 on GitHub Actions and Azure Pipelines
Browse files Browse the repository at this point in the history
Required by boostorg#526
See also boostorg/website#562
  • Loading branch information
mloskot committed Mar 2, 2021
1 parent 0778069 commit f6ba76f
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
9 changes: 8 additions & 1 deletion .azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,13 @@ trigger:
- ml/*

jobs:
- job: 'ubuntu1604_gcc5_cxx11_cmake'
- job: 'ubuntu1604_gcc6_cxx11_cmake'
pool:
vmImage: 'ubuntu-16.04'
steps:
- template: .ci/azure-pipelines/steps-install-gcc.yml
parameters:
major_version: '6'
- script: which g++ && g++ --version
displayName: 'Check GCC'
- template: .ci/azure-pipelines/steps-check-cmake.yml
Expand All @@ -28,12 +31,16 @@ jobs:
displayName: 'Install dependencies'
- template: .ci/azure-pipelines/steps-install-boost.yml
- template: .ci/azure-pipelines/steps-cmake-build-and-test.yml
parameters:
cxxver: '14'

- job: 'ubuntu1604_gcc8_cxx14_cmake'
pool:
vmImage: 'ubuntu-16.04'
steps:
- template: .ci/azure-pipelines/steps-install-gcc.yml
parameters:
major_version: '8'
- script: which g++ && g++ --version
displayName: 'Check GCC'
- template: .ci/azure-pipelines/steps-check-cmake.yml
Expand Down
7 changes: 0 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,6 @@ jobs:
fail-fast: false
matrix:
include:
- toolset: gcc-4.9
cxxstd: "11"
os: ubuntu-16.04
install: g++-4.9
- toolset: gcc-5
cxxstd: "11,14,1z"
os: ubuntu-16.04
- toolset: gcc-6
cxxstd: "11,14,1z"
os: ubuntu-16.04
Expand Down

0 comments on commit f6ba76f

Please sign in to comment.