From dd0fc52df1750d37f7c5f073fd28f7cf209ef250 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lumi=C3=A8re=20Lucezarnii?= Date: Sat, 18 Jan 2025 00:13:02 +0300 Subject: [PATCH] GitHub Actions: support for ARM64 Ubuntu build (#1774) https://github.blog/changelog/2025-01-16-linux-arm64-hosted-runners-now-available-for-free-in-public-repositories-public-preview/ --- .github/workflows/cibuild.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/cibuild.yml b/.github/workflows/cibuild.yml index 7e6ca07a085..14b1e98961d 100644 --- a/.github/workflows/cibuild.yml +++ b/.github/workflows/cibuild.yml @@ -91,7 +91,7 @@ jobs: # You may also want to set XRAY_LINKER when changing the compiler. - { name: Ubuntu, os: ubuntu-latest, arch: amd64, cc: gcc, } - { name: Ubuntu, os: ubuntu-latest, arch: amd64, cc: clang, cxx: clang++, flags: "-DXRAY_LINKER=lld", } - #- { name: Ubuntu, os: ubuntu-latest, arch: arm64, cc: gcc, container: 'dockcross/linux-arm64', } + - { name: Ubuntu, os: ubuntu-24.04-arm, arch: arm64, cc: gcc } #- { name: Ubuntu, os: ubuntu-latest, arch: ppc64el, cc: gcc, container: 'dockcross/linux-ppc64le:latest', } - { name: Alpine, os: ubuntu-latest, arch: x86_64, cc: gcc, shell: 'alpine.sh {0}', flags: "-DXRAY_LINKER=mold", } - { name: Alpine, os: ubuntu-latest, arch: x86, cc: gcc, shell: 'alpine.sh {0}', flags: "-DXRAY_LINKER=mold", }