Skip to content

Commit

Permalink
Switch ARM64 build from qemu to native runner (#1243)
Browse files Browse the repository at this point in the history
  • Loading branch information
intuibase authored Jan 9, 2025
1 parent 159b758 commit 2320ac3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 10 deletions.
6 changes: 1 addition & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:

build:
name: build-agent-library
runs-on: ubuntu-latest
runs-on: ${{ matrix.run_qemu && 'observability-linux-2-arm64' || 'ubuntu-latest' }}
needs: setup-build-matrix
timeout-minutes: 300
strategy:
Expand All @@ -42,10 +42,6 @@ jobs:
BUILD_ARCHITECTURE: ${{ matrix.arch }}
steps:
- uses: actions/checkout@v4
- if: ${{ matrix.run_qemu }}
uses: docker/setup-qemu-action@v3
with:
platforms: arm64
- name: Build
run: |
uname -a
Expand Down
6 changes: 1 addition & 5 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,10 +42,10 @@ jobs:

phpt-tests:
name: phpt-tests
runs-on: ubuntu-latest
needs:
- build
- setup-build-matrix
runs-on: ${{ matrix.data.run_qemu && 'observability-linux-2-arm64' || 'ubuntu-latest' }}
timeout-minutes: 120
strategy:
fail-fast: false
Expand All @@ -68,10 +68,6 @@ jobs:
with:
name: package-parts-${{ matrix.data.arch }}
path: agent/native/_build/${{ matrix.data.arch }}-release/
- if: ${{ matrix.data.run_qemu }}
uses: docker/setup-qemu-action@v3
with:
platforms: arm64
- name: Prepare
run: make -f .ci/Makefile prepare
- name: phpt-unit-tests
Expand Down

0 comments on commit 2320ac3

Please sign in to comment.