This is an automated email from the ASF dual-hosted git repository. adoroszlai pushed a commit to branch jdk11 in repository https://gitbox.apache.org/repos/asf/ozone-docker-runner.git
commit 4ec04fabdffadc3018195c56377797d1a855ff13 Author: Doroszlai, Attila <[email protected]> AuthorDate: Thu Nov 7 10:37:34 2024 +0100 HDDS-8569. Build and publish ozone-runner for linux/arm64 (#32) (cherry picked from commit 445b14f8b4ce21a2fb63359d024ab5f6370ff2d4) --- .github/workflows/build.yaml | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 02ae644..df0a323 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -62,6 +62,14 @@ jobs: echo "success=$success" >> $GITHUB_OUTPUT + - name: Set up QEMU + if: ${{ steps.pull.outputs.success == 'false' }} + uses: docker/setup-qemu-action@49b3bc8e6bdd4a60e6116a5414239cba5943d3cf + + - name: Set up Docker Buildx + if: ${{ steps.pull.outputs.success == 'false' }} + uses: docker/setup-buildx-action@c47758b77c9736f4b2ef4073d4d51994fabfe349 + - name: Login to GitHub Container Registry id: login if: ${{ github.event_name != 'pull_request' && steps.pull.outputs.success == 'false' }} @@ -76,7 +84,7 @@ jobs: if: ${{ steps.pull.outputs.success == 'false' }} uses: docker/build-push-action@4f58ea79222b3b9dc2c8bbdd6debcef730109a75 with: - platforms: linux/amd64 + platforms: linux/amd64,linux/arm64 push: ${{ github.event_name != 'pull_request' }} tags: ${{ steps.meta.outputs.tags }} labels: ${{ steps.meta.outputs.labels }} --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
