diff options
author | vanhauser-thc <vh@thc.org> | 2023-01-12 11:46:52 +0100 |
---|---|---|
committer | vanhauser-thc <vh@thc.org> | 2023-01-12 11:46:52 +0100 |
commit | 75fb918a37ad29b93bd6c220460404dae156fa8c (patch) | |
tree | 7896afadb4094f09e4308fd342dd71cdcc6a92f7 | |
parent | c3d7612c97db8f6629aff2348d043286f8436227 (diff) | |
download | afl++-75fb918a37ad29b93bd6c220460404dae156fa8c.tar.gz |
skip buiding arm64 container :(
-rw-r--r-- | .github/workflows/container.yml | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/.github/workflows/container.yml b/.github/workflows/container.yml index 8836997d..4599c335 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,7 +69,8 @@ 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 |