@@ -402,25 +402,31 @@ jobs:
402402 fail-fast : false
403403 matrix :
404404 settings :
405- - host : macos-latest
405+ - host : macos-26-intel
406406 target : x86_64-apple-darwin
407407 platform_flag : --mac --x64
408- - host : macos-latest
408+ bun_install_flags : --os=darwin --cpu=x64
409+ - host : macos-26
409410 target : aarch64-apple-darwin
410411 platform_flag : --mac --arm64
412+ bun_install_flags : --os=darwin --cpu=arm64
411413 # github-hosted: blacksmith lacks ARM64 MSVC cross-compilation toolchain
412414 - host : " windows-2025"
413415 target : aarch64-pc-windows-msvc
414416 platform_flag : --win --arm64
417+ bun_install_flags : --os=win32 --cpu=arm64
415418 - host : " blacksmith-4vcpu-windows-2025"
416419 target : x86_64-pc-windows-msvc
417420 platform_flag : --win
421+ bun_install_flags : --os=win32 --cpu=x64
418422 - host : " blacksmith-4vcpu-ubuntu-2404"
419423 target : x86_64-unknown-linux-gnu
420424 platform_flag : --linux
425+ bun_install_flags : --os=linux --cpu=x64
421426 - host : " blacksmith-4vcpu-ubuntu-2404"
422427 target : aarch64-unknown-linux-gnu
423428 platform_flag : --linux
429+ bun_install_flags : --os=linux --cpu=arm64
424430 runs-on : ${{ matrix.settings.host }}
425431 steps :
426432 - uses : actions/checkout@v3
@@ -437,6 +443,8 @@ jobs:
437443 run : echo "${{ secrets.APPLE_API_KEY_PATH }}" > $RUNNER_TEMP/apple-api-key.p8
438444
439445 - uses : ./.github/actions/setup-bun
446+ with :
447+ install-flags : ${{ matrix.settings.bun_install_flags }}
440448
441449 - name : Azure login
442450 if : runner.os == 'Windows'
0 commit comments