perf: use macos-latest runner for x86_64-darwin builds
This commit is contained in:
parent
1c0a725a80
commit
de2f451cf6
2 changed files with 4 additions and 2 deletions
3
.github/workflows/build.yml
vendored
3
.github/workflows/build.yml
vendored
|
|
@ -64,7 +64,7 @@ jobs:
|
|||
runs-on: >-
|
||||
${{ (matrix.system == 'x86_64-linux' && 'ubuntu-latest')
|
||||
|| (matrix.system == 'aarch64-linux' && 'ubuntu-24.04-arm')
|
||||
|| (matrix.system == 'x86_64-darwin' && 'macos-13')
|
||||
|| (matrix.system == 'x86_64-darwin' && 'macos-latest')
|
||||
|| (matrix.system == 'aarch64-darwin' && 'macos-latest') }}
|
||||
|
||||
steps:
|
||||
|
|
@ -76,6 +76,7 @@ jobs:
|
|||
uses: cachix/install-nix-action@v31
|
||||
with:
|
||||
extra_nix_config: |
|
||||
system = ${{ matrix.system }}
|
||||
sandbox = ${{
|
||||
(matrix.system == 'x86_64-darwin' && inputs.x86_64-darwin == 'yes_sandbox_false'
|
||||
|| matrix.system == 'aarch64-darwin' && inputs.aarch64-darwin == 'yes_sandbox_false') && 'false'
|
||||
|
|
|
|||
3
.github/workflows/review.yml
vendored
3
.github/workflows/review.yml
vendored
|
|
@ -86,7 +86,7 @@ jobs:
|
|||
runs-on: >-
|
||||
${{ (matrix.system == 'x86_64-linux' && 'ubuntu-latest')
|
||||
|| (matrix.system == 'aarch64-linux' && 'ubuntu-24.04-arm')
|
||||
|| (matrix.system == 'x86_64-darwin' && 'macos-13')
|
||||
|| (matrix.system == 'x86_64-darwin' && 'macos-latest')
|
||||
|| (matrix.system == 'aarch64-darwin' && 'macos-latest') }}
|
||||
outputs:
|
||||
report_x86_64-linux: ${{ steps.report.outputs.report_x86_64-linux }}
|
||||
|
|
@ -107,6 +107,7 @@ jobs:
|
|||
uses: cachix/install-nix-action@v31
|
||||
with:
|
||||
extra_nix_config: |
|
||||
system = ${{ matrix.system }}
|
||||
sandbox = ${{
|
||||
(matrix.system == 'x86_64-darwin' && inputs.x86_64-darwin == 'yes_sandbox_false'
|
||||
|| matrix.system == 'aarch64-darwin' && inputs.aarch64-darwin == 'yes_sandbox_false') && 'false'
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue