Skip to content

Commit

Permalink
ci: Remove GCC 5 on GitHub Actions and Azure Pipelines (#572)
Browse files Browse the repository at this point in the history
Required by #526
See also boostorg/website#562

Disable system.debug on AzP
  • Loading branch information
mloskot committed Mar 2, 2021
1 parent 0778069 commit 8bd2413
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
11 changes: 9 additions & 2 deletions .azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
# (See accompanying file LICENSE_1_0.txt or copy at http://boost.org/LICENSE_1_0.txt)
#
variables:
system.debug: true
#system.debug: true
configuration: release

trigger:
Expand All @@ -15,10 +15,13 @@ trigger:
- ml/*

jobs:
- job: 'ubuntu1604_gcc5_cxx11_cmake'
- job: 'ubuntu1604_gcc6_cxx14_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 8bd2413

Please sign in to comment.