Skip to content

Commit 6951255

Browse files
committedNov 14, 2024
Merge branch 'master' into fibers
2 parents 7555b4a + 81342ac commit 6951255

File tree

351 files changed

+10037
-7138
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

351 files changed

+10037
-7138
lines changed
 

‎.github/workflows/main.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -284,7 +284,7 @@ jobs:
284284
with:
285285
platform: macos-aarch64
286286
runs-on: 'macos-14'
287-
xcode-toolset-version: '14.3.1'
287+
xcode-toolset-version: '15.4'
288288
configure-arguments: ${{ github.event.inputs.configure-arguments }}
289289
make-arguments: ${{ github.event.inputs.make-arguments }}
290290
if: needs.prepare.outputs.macos-aarch64 == 'true'
@@ -354,6 +354,7 @@ jobs:
354354
platform: macos-x64
355355
bootjdk-platform: macos-x64
356356
runs-on: macos-13
357+
xcode-toolset-version: '14.3.1'
357358

358359
test-macos-aarch64:
359360
name: macos-aarch64
@@ -364,6 +365,7 @@ jobs:
364365
platform: macos-aarch64
365366
bootjdk-platform: macos-aarch64
366367
runs-on: macos-14
368+
xcode-toolset-version: '15.4'
367369

368370
test-windows-x64:
369371
name: windows-x64

‎.github/workflows/test.yml

+4-1
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,9 @@ on:
3737
runs-on:
3838
required: true
3939
type: string
40+
xcode-toolset-version:
41+
required: false
42+
type: string
4043

4144
env:
4245
# These are needed to make the MSYS2 bash work properly
@@ -147,7 +150,7 @@ jobs:
147150
run: |
148151
# On macOS we need to install some dependencies for testing
149152
brew install make
150-
sudo xcode-select --switch /Applications/Xcode_14.3.1.app/Contents/Developer
153+
sudo xcode-select --switch /Applications/Xcode_${{ inputs.xcode-toolset-version }}.app/Contents/Developer
151154
# This will make GNU make available as 'make' and not only as 'gmake'
152155
echo '/usr/local/opt/make/libexec/gnubin' >> $GITHUB_PATH
153156
if: runner.os == 'macOS'

0 commit comments

Comments
 (0)
Please sign in to comment.