Skip to content

Commit

Permalink
be more stricts with tests on other archs, but ignore armv8 test
Browse files Browse the repository at this point in the history
  • Loading branch information
SciLor committed Apr 30, 2024
1 parent b9b75af commit 6a25230
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/publish_docker_matrix_alpine.yml
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ jobs:
run: |
docker run --rm --privileged multiarch/qemu-user-static --reset -p yes
docker run -e DOCKER_TEST=1 --platform ${{ matrix.platform }} --name teddyCloud-test ${{ env.REGISTRY_IMAGE }}@${{ steps.build.outputs.digest }}
continue-on-error: ${{ matrix.platform == 'linux/ppc64le' || matrix.platform == 'linux/arm/v7' }}
continue-on-error: ${{ matrix.platform != 'linux/s390x' }}
- name: Extract release zip
if: ${{ matrix.platform != 'linux/s390x' }}
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish_docker_matrix_ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ jobs:
run: |
docker run --rm --privileged multiarch/qemu-user-static --reset -p yes
docker run -e DOCKER_TEST=1 --platform ${{ matrix.platform }} --name teddyCloud-test ${{ env.REGISTRY_IMAGE }}@${{ steps.build.outputs.digest }}
continue-on-error: ${{ matrix.platform == 'linux/s390x' || matrix.platform == 'linux/ppc64le' || matrix.platform == 'linux/arm/v7' }}
continue-on-error: ${{ matrix.platform == 'linux/s390x' || matrix.platform == 'linux/arm/v8' }}
- name: Extract release zip
run: |
docker cp teddyCloud-test:/tmp/teddycloud.zip /tmp/teddycloud.${{ steps.platform_strip.outputs.platform }}.release.zip
Expand Down

0 comments on commit 6a25230

Please sign in to comment.