Skip to content
6 changes: 0 additions & 6 deletions .github/workflows/make-agent.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,12 +40,6 @@ jobs:
path: php-agent
repository: ${{ inputs.origin }}/newrelic-php-agent
ref: ${{ inputs.ref }}
- name: Enable arm64 emulation
if: ${{ inputs.arch == 'arm64' }}
uses: docker/setup-qemu-action@v3
with:
image: tonistiigi/binfmt:${{vars.BINFMT_IMAGE_VERSION}}
platforms: arm64
- name: Login to Docker Hub
uses: docker/login-action@v3
with:
Expand Down
6 changes: 0 additions & 6 deletions .github/workflows/make-integration-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,12 +56,6 @@ jobs:
run: |
chmod 755 php-agent/bin/integration_runner
chmod 755 php-agent/agent/modules/newrelic.so
- name: Enable arm64 emulation
if: ${{ inputs.arch == 'arm64' }}
uses: docker/setup-qemu-action@v3
with:
image: tonistiigi/binfmt:${{vars.BINFMT_IMAGE_VERSION}}
platforms: arm64
- name: Login to Docker Hub
uses: docker/login-action@v3
with:
Expand Down
13 changes: 5 additions & 8 deletions .github/workflows/run-integration-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,14 +21,11 @@ on:
runner-type:
description: 'Type of a runner to use for integration tests on arm64'
required: true
default: 'ubuntu-20.04-4core'
default: 'ubuntu-24.04-arm'
type: choice
options:
- ubuntu-20.04-4core
- ubuntu-20.04-8core
- ubuntu-20.04-16core
- ubuntu-22.04-4core
- ubuntu-latest
- ubuntu-22.04-arm
- ubuntu-24.04-arm

jobs:
build-test-runner-amd64:
Expand All @@ -55,7 +52,7 @@ jobs:
artifact-name: integration_runner
artifact-pattern: bin/integration_runner
arch: arm64
runs-on: ubuntu-latest
runs-on: ${{inputs.runner-type}}
secrets: inherit

build-agent-amd64:
Expand All @@ -72,7 +69,7 @@ jobs:
origin: ${{ inputs.origin }}
ref: ${{ inputs.ref }}
arch: arm64
runs-on: ubuntu-latest
runs-on: ${{inputs.runner-type}}
secrets: inherit

test-amd64:
Expand Down
Loading