Skip to content

Commit

Permalink
feat: use hosted runner
Browse files Browse the repository at this point in the history
  • Loading branch information
shyim committed Sep 25, 2024
1 parent 2786cf8 commit 7f2f58f
Showing 1 changed file with 3 additions and 11 deletions.
14 changes: 3 additions & 11 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,19 +66,10 @@ jobs:

build-fpm-arm64:
name: PHP FPM ${{ matrix.php }} on arm64
runs-on: shopware-arm64
container: ghcr.io/catthehacker/ubuntu:act-22.04
env:
DOCKER_HOST: localhost:2375
services:
docker:
image: docker:23-dind
runs-on: github-hosted-arm64
needs: [generate-matrix]
strategy: ${{ fromJson(needs.generate-matrix.outputs.matrix) }}
steps:
- name: wait for docker to be available
run: while ! docker info 2>&1 >/dev/null; do sleep 1; done

- name: Checkout
uses: actions/checkout@v4

Expand Down Expand Up @@ -142,7 +133,8 @@ jobs:
fpm-otel:
name: FPM with OpenTelemetry
runs-on: ubuntu-latest
needs: [fpm-merge]
needs: [fpm-merge, generate-matrix]
strategy: ${{ fromJson(needs.generate-matrix.outputs.matrix) }}
steps:
- name: Login into Docker Hub
run: echo "${{ secrets.DOCKER_HUB_PASSWORD }}" | docker login -u ${{ secrets.DOCKER_HUB_USERNAME }} --password-stdin
Expand Down

0 comments on commit 7f2f58f

Please sign in to comment.