Skip to content

Commit

Permalink
ci: replace macOS 10.15 with macOS 11 in CI pipelines
Browse files Browse the repository at this point in the history
GitHub started the deprecation process for macOS 10.15 runners
on 2022-05-31, and macOS 10.15 will be completely unsupported by
2022-08-30 (if things proceed as planned).

See <actions/runner-images#5583> for
more information on the removal of the macOS 10.15 images.

This issue already hit us during the build for PR #716, because
at that time there was a scheduled brownout for macOS 10.15
builds to raise awareness of the upcoming removal.
  • Loading branch information
striezel committed Aug 11, 2022
1 parent 8465d54 commit ef18f64
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,9 +53,9 @@ jobs:
parameters:
cxxver: '14'

- job: 'macos1015_xcode11_cmake'
- job: 'macos11_xcode13_cmake'
pool:
vmImage: 'macOS-10.15'
vmImage: 'macOS-11'
steps:
- script: which clang++ && clang++ --version
displayName: 'Check clang'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ jobs:
os: ubuntu-20.04
- toolset: clang
cxxstd: "14,17"
os: macos-10.15
os: macos-11

runs-on: ${{matrix.os}}

Expand Down

0 comments on commit ef18f64

Please sign in to comment.