@@ -319,7 +319,7 @@ jobs:
319319 file : ./Dockerfile
320320 build-args : |
321321 VERSION=${{ env.release_version }}
322- platforms : linux/amd64, linux/arm64/8, linux/ppc64le, linux/s390x # , linux/arm/v7
322+ platforms : linux/amd64, linux/arm64/8, linux/ppc64le, linux/s390x, linux/riscv64 # , linux/arm/v7
323323 push : true
324324 tags : ${{ steps.meta.outputs.tags }}
325325 labels : ${{ steps.meta.outputs.labels }}
@@ -328,6 +328,7 @@ jobs:
328328 run : |
329329 docker run --rm -it -d --memory="1g" --name=test localhost:5000/${GITHUB_REPOSITORY,,}:${{ env.release_version }}
330330 timeout 3m bash -c 'until docker inspect --format="{{json .State.Health.Status}}" test | grep -q \"healthy\"; do sleep 10; done'
331+ docker logs test
331332 build-docker-alpine :
332333 runs-on : ' ubuntu-latest'
333334 services :
@@ -367,7 +368,7 @@ jobs:
367368 file : ./Dockerfile-alpine
368369 build-args : |
369370 VERSION=${{ env.release_version }}
370- platforms : linux/amd64, linux/arm64/8, linux/s390x, linux/ppc64le
371+ platforms : linux/amd64, linux/arm64/8, linux/s390x, linux/ppc64le, linux/riscv64
371372 push : true
372373 tags : ${{ steps.meta.outputs.tags }}
373374 labels : ${{ steps.meta.outputs.labels }}
@@ -376,3 +377,4 @@ jobs:
376377 run : |
377378 docker run --rm -it -d --memory="1g" --name=test localhost:5000/${GITHUB_REPOSITORY,,}:${{ env.release_version }}-alpine
378379 timeout 3m bash -c 'until docker inspect --format="{{json .State.Health.Status}}" test | grep -q \"healthy\"; do sleep 10; done'
380+ docker logs test
0 commit comments