diff options
author | Ruben ten Hove <ruben.tenhove@tno.nl> | 2022-06-21 18:54:54 +0200 |
---|---|---|
committer | Ruben ten Hove <ruben.tenhove@tno.nl> | 2022-06-21 18:54:54 +0200 |
commit | fc98d53e27861aace92b360cb51dd320d0a65867 (patch) | |
tree | 286729a61b1f804201b4281dce5b1497e4b5bbd7 | |
parent | a5822c7c2fc34e52defe630b418db7f856bc4f89 (diff) | |
download | afl++-fc98d53e27861aace92b360cb51dd320d0a65867.tar.gz |
separate platforms
-rw-r--r-- | .github/workflows/build-push-test-container.yaml | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/.github/workflows/build-push-test-container.yaml b/.github/workflows/build-push-test-container.yaml index 8a6d77d1..6f58d78c 100644 --- a/.github/workflows/build-push-test-container.yaml +++ b/.github/workflows/build-push-test-container.yaml @@ -16,11 +16,18 @@ jobs: - uses: actions/checkout@v3 - name: Set up Docker Buildx uses: docker/setup-buildx-action@v2 - - name: Build image + - name: Build amd64 image uses: docker/build-push-action@v3 with: context: . - platforms: linux/amd64,linux/arm64 + platforms: linux/amd64 + load: true + tags: aflplusplus/aflplusplus:test + - name: Build arm64 image + uses: docker/build-push-action@v3 + with: + context: . + platforms: linux/arm64 load: true tags: aflplusplus/aflplusplus:test - name: Test linux/amd64 image |