Skip to content

Commit

Permalink
Use ARM64 runners for Github Action
Browse files Browse the repository at this point in the history
  • Loading branch information
FooBarWidget committed Sep 17, 2024
1 parent da25498 commit 47817dd
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 14 deletions.
17 changes: 8 additions & 9 deletions .github/workflows/binaries.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,21 +4,21 @@ env:
ENTERPRISE: 0

on:
push:
branches: [ 'stable-*', 'feature/*' ]
pull_request:
branches: [ 'stable-*', 'feature/*' ]
push: {}
pull_request: {}

jobs:
build_linux:
name: "Binary automation Linux-${{ matrix.arch }}"
strategy:
fail-fast: false
matrix:
arch:
- x86_64
- aarch64
runs-on: ubuntu-latest
include:
- arch: x86_64
os: ubuntu-24.04
- arch: aarch64
os: ubuntu-24.04-arm64
runs-on: ${{ matrix.os }}
env:
WORKSPACE: ${{ github.workspace }}
OUTPUT_DIR: ${{ github.workspace }}/output-linux-${{ matrix.arch }}
Expand All @@ -29,7 +29,6 @@ jobs:
- uses: actions/checkout@v4
with:
submodules: true
- uses: docker/setup-qemu-action@v3
- uses: docker/setup-buildx-action@v3
- run: ./dev/ci/tests/binaries/build-linux
- uses: actions/upload-artifact@v4
Expand Down
6 changes: 2 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,8 @@ env:
COMPILE_CONCURRENCY: 4

on:
push:
branches: [ 'stable-*', 'feature/*' ]
pull_request:
branches: [ 'stable-*', 'feature/*' ]
push: {}
pull_request: {}

jobs:
cxx:
Expand Down
2 changes: 1 addition & 1 deletion packaging/debian

0 comments on commit 47817dd

Please sign in to comment.