Skip to content

Commit f79e95b

Browse files
committedDec 6, 2024
No more macos-12 runners, minimum for macos-amd64 is now macos-13
1 parent 2c51895 commit f79e95b

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed
 

‎.github/workflows/build.yml

+2-5
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ jobs:
7878
strategy:
7979
fail-fast: false
8080
matrix:
81-
os: [ ubuntu-20.04, ubuntu-22.04, ubuntu-24.04, macos-12, macos-14 ]
81+
os: [ ubuntu-20.04, ubuntu-22.04, ubuntu-24.04, macos-13, macos-14 ]
8282
name: [ '-head', '+graalvm-head' ]
8383
runs-on: ${{ matrix.os }}
8484
steps:
@@ -92,7 +92,7 @@ jobs:
9292
id: platform
9393
run: |
9494
platform=${{ matrix.os }}
95-
platform=${platform/macos-12/macos-latest}
95+
platform=${platform/macos-13/macos-latest}
9696
platform=${platform/macos-14/macos-13-arm64}
9797
echo "platform=$platform" >> $GITHUB_OUTPUT
9898
@@ -107,9 +107,6 @@ jobs:
107107
python-version: '3.10'
108108
- run: echo "SDKROOT=$(xcrun --show-sdk-path)" >> $GITHUB_ENV
109109
if: startsWith(matrix.os, 'macos')
110-
# https://github.com/oracle/truffleruby/issues/3390
111-
- run: echo "MACOSX_DEPLOYMENT_TARGET=11.0" >> $GITHUB_ENV
112-
if: matrix.os == 'macos-12'
113110
- run: sudo apt-get install -y --no-install-recommends libyaml-dev
114111
if: startsWith(matrix.os, 'ubuntu')
115112

0 commit comments

Comments
 (0)
Please sign in to comment.