Skip to content

Commit

Permalink
Use ARM64 runners because they are faster than x86 runners
Browse files Browse the repository at this point in the history
I believe this is just due to the lower number of users on ARM64
runners compared to x86. However, based on my measurements, ARM64
builds all binaries in 1h30m, whereas x86 takes 2h30m.
  • Loading branch information
rui314 committed Feb 9, 2025
1 parent 9185ee4 commit 85e8d41
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build-all.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ jobs:
- { target: x86_64, os: ubuntu-24.04 }
- { target: aarch64, os: ubuntu-24.04-arm }
- { target: arm, os: ubuntu-24.04-arm }
- { target: riscv64, os: ubuntu-24.04 }
- { target: ppc64le, os: ubuntu-24.04 }
- { target: s390x, os: ubuntu-24.04 }
- { target: loongarch64, os: ubuntu-24.04 }
- { target: riscv64, os: ubuntu-24.04-arm }
- { target: ppc64le, os: ubuntu-24.04-arm }
- { target: s390x, os: ubuntu-24.04-arm }
- { target: loongarch64, os: ubuntu-24.04-arm }

runs-on: ${{ matrix.os }}

Expand Down

0 comments on commit 85e8d41

Please sign in to comment.