Skip to content

Commit d821752

Browse files
authored
macOS 11 runners are being removed (hyperledger-solang#1657)
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]>
1 parent b00f617 commit d821752

File tree

2 files changed

+3
-6
lines changed

2 files changed

+3
-6
lines changed

.github/workflows/release.yml

+1-4
Original file line numberDiff line numberDiff line change
@@ -118,10 +118,7 @@ jobs:
118118

119119
mac-intel:
120120
name: Mac Intel
121-
# The Hyperledger self-hosted intel macs have the label macos-latest
122-
# and run macos 12. We don't want to build llvm on macos 12, because
123-
# then it can't be used on macos 11.
124-
runs-on: macos-11
121+
runs-on: macos-12
125122
steps:
126123
- name: Checkout sources
127124
uses: actions/checkout@v3

.github/workflows/test.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,7 @@ jobs:
199199

200200
mac-intel:
201201
name: Mac Intel
202-
runs-on: macos-11
202+
runs-on: macos-12
203203
steps:
204204
- name: Checkout sources
205205
uses: actions/checkout@v3
@@ -223,7 +223,7 @@ jobs:
223223

224224
mac-universal:
225225
name: Mac Universal Binary
226-
runs-on: macos-11
226+
runs-on: macos-12
227227
needs: [mac-arm, mac-intel]
228228
steps:
229229
- uses: actions/download-artifact@v3

0 commit comments

Comments
 (0)