diff options
author | vanhauser-thc <vh@thc.org> | 2023-02-13 07:16:47 +0100 |
---|---|---|
committer | vanhauser-thc <vh@thc.org> | 2023-02-13 07:16:47 +0100 |
commit | 3881ccd0b7520f67fd0b34f010443dc249cbc8f1 (patch) | |
tree | 3ac57f5d6d3a1b36ba6005a3f72d8540e4a2b6c5 | |
parent | f01bf77604c7d5b2ee12a44cbb3dbd615ad9565e (diff) | |
download | afl++-3881ccd0b7520f67fd0b34f010443dc249cbc8f1.tar.gz |
enable arm64 container build again
-rw-r--r-- | .github/workflows/container.yml | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/.github/workflows/container.yml b/.github/workflows/container.yml index 4599c335..8836997d 100644 --- a/.github/workflows/container.yml +++ b/.github/workflows/container.yml @@ -47,8 +47,8 @@ jobs: uses: actions/checkout@v3 - name: Set up QEMU uses: docker/setup-qemu-action@v2 -# with: -# platforms: arm64 + with: + platforms: arm64 - name: Set up Docker Buildx uses: docker/setup-buildx-action@v2 - name: Login to docker.io @@ -69,8 +69,7 @@ jobs: uses: docker/build-push-action@v3 with: context: . - platforms: linux/amd64 -# ,linux/arm64 + platforms: linux/amd64,linux/arm64 push: true tags: ${{ steps.push-tags.outputs.PUSH_TAGS }} cache-from: type=gha |