Skip to content

Commit 6a25230

Browse files
committed
be more stricts with tests on other archs, but ignore armv8 test
1 parent b9b75af commit 6a25230

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/publish_docker_matrix_alpine.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ jobs:
9292
run: |
9393
docker run --rm --privileged multiarch/qemu-user-static --reset -p yes
9494
docker run -e DOCKER_TEST=1 --platform ${{ matrix.platform }} --name teddyCloud-test ${{ env.REGISTRY_IMAGE }}@${{ steps.build.outputs.digest }}
95-
continue-on-error: ${{ matrix.platform == 'linux/ppc64le' || matrix.platform == 'linux/arm/v7' }}
95+
continue-on-error: ${{ matrix.platform != 'linux/s390x' }}
9696
- name: Extract release zip
9797
if: ${{ matrix.platform != 'linux/s390x' }}
9898
run: |

.github/workflows/publish_docker_matrix_ubuntu.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ jobs:
100100
run: |
101101
docker run --rm --privileged multiarch/qemu-user-static --reset -p yes
102102
docker run -e DOCKER_TEST=1 --platform ${{ matrix.platform }} --name teddyCloud-test ${{ env.REGISTRY_IMAGE }}@${{ steps.build.outputs.digest }}
103-
continue-on-error: ${{ matrix.platform == 'linux/s390x' || matrix.platform == 'linux/ppc64le' || matrix.platform == 'linux/arm/v7' }}
103+
continue-on-error: ${{ matrix.platform == 'linux/s390x' || matrix.platform == 'linux/arm/v8' }}
104104
- name: Extract release zip
105105
run: |
106106
docker cp teddyCloud-test:/tmp/teddycloud.zip /tmp/teddycloud.${{ steps.platform_strip.outputs.platform }}.release.zip

0 commit comments

Comments
 (0)