Skip to content

Commit

Permalink
macOS 11 runners are being removed (#1657)
Browse files Browse the repository at this point in the history
See:

https://github.blog/changelog/2024-05-20-actions-upcoming-changes-to-github-hosted-macos-runners/

We should try and build on the oldest supported platform, so that the
binaries run on as many platforms as possible.

Signed-off-by: Sean Young <[email protected]>
  • Loading branch information
seanyoung committed Jun 27, 2024
1 parent b00f617 commit d821752
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 6 deletions.
5 changes: 1 addition & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -118,10 +118,7 @@ jobs:

mac-intel:
name: Mac Intel
# The Hyperledger self-hosted intel macs have the label macos-latest
# and run macos 12. We don't want to build llvm on macos 12, because
# then it can't be used on macos 11.
runs-on: macos-11
runs-on: macos-12
steps:
- name: Checkout sources
uses: actions/checkout@v3
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ jobs:

mac-intel:
name: Mac Intel
runs-on: macos-11
runs-on: macos-12
steps:
- name: Checkout sources
uses: actions/checkout@v3
Expand All @@ -223,7 +223,7 @@ jobs:

mac-universal:
name: Mac Universal Binary
runs-on: macos-11
runs-on: macos-12
needs: [mac-arm, mac-intel]
steps:
- uses: actions/download-artifact@v3
Expand Down

0 comments on commit d821752

Please sign in to comment.