Skip to content

Commit

Permalink
ci: use github runner with matching build target architecture
Browse files Browse the repository at this point in the history
  • Loading branch information
tomwwinter committed Nov 28, 2024
1 parent 1939659 commit 11f5b10
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions .github/workflows/aam-backend-service-build-and-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,11 +42,6 @@ jobs:
- name: Checkout repository files
uses: actions/checkout@v4

- name: Prepare Platform
run: |
platform=${{ matrix.platform }}
echo "PLATFORM_PAIR=${platform//\//-}" >> $GITHUB_ENV
- name: Set up QEMU
uses: docker/setup-qemu-action@v3

Expand All @@ -57,6 +52,13 @@ jobs:
java-version: 21
cache: 'gradle'

- name: Login to GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GHCR_PULL_SECRET }}

- name: Run Tests and generate Jacoco Test Report
env:
JACOCO_SOURCE_PATH: application/aam-backend-service/src/main/kotlin
Expand Down

0 comments on commit 11f5b10

Please sign in to comment.