Skip to content

Commit

Permalink
ci: Replace Ubuntu 16.04 with Ubuntu 18.04 in some GitHub Actions jobs (
Browse files Browse the repository at this point in the history
#640)

* Replace Ubuntu 16.04 with Ubuntu 18.04 in GitHub Actions

Ubuntu 16.04 is no longer available for GitHub Actions,
because support for it has ended. Some older Clang versions
seem to be unavailable in the APT repostiry, so those are not
changed to 18.04 by intention.

* Replace Ubuntu 16.04 with Ubuntu 18.04 in Azure Pipelines
  • Loading branch information
striezel authored Apr 7, 2022
1 parent 63f5837 commit bb080b5
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions .azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ trigger:
- ml/*

jobs:
- job: 'ubuntu1604_gcc6_cxx14_cmake'
- job: 'ubuntu1804_gcc6_cxx14_cmake'
pool:
vmImage: 'ubuntu-16.04'
vmImage: 'ubuntu-18.04'
steps:
- template: .ci/azure-pipelines/steps-install-gcc.yml
parameters:
Expand All @@ -34,9 +34,9 @@ jobs:
parameters:
cxxver: '14'

- job: 'ubuntu1604_gcc8_cxx14_cmake'
- job: 'ubuntu1804_gcc8_cxx14_cmake'
pool:
vmImage: 'ubuntu-16.04'
vmImage: 'ubuntu-18.04'
steps:
- template: .ci/azure-pipelines/steps-install-gcc.yml
parameters:
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
include:
- toolset: gcc-6
cxxstd: "11,14,1z"
os: ubuntu-16.04
os: ubuntu-18.04
install: g++-6
- toolset: gcc-7
cxxstd: "11,14,17"
Expand Down Expand Up @@ -62,17 +62,17 @@ jobs:
- toolset: clang
compiler: clang++-3.9
cxxstd: "11,14"
os: ubuntu-16.04
os: ubuntu-18.04
install: clang-3.9
- toolset: clang
compiler: clang++-4.0
cxxstd: "11,14"
os: ubuntu-16.04
os: ubuntu-18.04
install: clang-4.0
- toolset: clang
compiler: clang++-5.0
cxxstd: "11,14,1z"
os: ubuntu-16.04
os: ubuntu-18.04
install: clang-5.0
- toolset: clang
compiler: clang++-6.0
Expand Down

0 comments on commit bb080b5

Please sign in to comment.