From 6ba55ab8d36ccbb4bed255da9e39ee289b815452 Mon Sep 17 00:00:00 2001 From: Hannes Wellmann Date: Thu, 2 May 2024 23:48:55 +0200 Subject: [PATCH] [Build] Ensure GH-workflow for MacOS runs on x86_64 image GitHub Actions changed their 'latest' images for MacOS to use the 'aarch64' instead of the 'x86_64' architecture: https://github.com/actions/runner-images/blob/7bb1d84f7071bfa9c350d7552d9631d9a69bfdb0/README.md But for macosx.aarch64 no JDK-8 is available. --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index aa7f835ca79..f536f757790 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -19,7 +19,7 @@ jobs: config: - { name: Linux, runner-os: ubuntu-latest, ws: gtk, os: linux, native-extension: so } - { name: Windows, runner-os: windows-2019, ws: win32, os: win32, native-extension: dll } - - { name: MacOS, runner-os: macos-latest, ws: cocoa, os: macosx, native-extension: so } + - { name: MacOS, runner-os: macos-latest-large, ws: cocoa, os: macosx, native-extension: so } steps: - uses: actions/checkout@v4 with: