We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d236067 commit 8613a2bCopy full SHA for 8613a2b
.github/workflows/ci.yaml
@@ -68,7 +68,8 @@ jobs:
68
- uses: actions/checkout@v4
69
with:
70
fetch-depth: 0 # so gradle doesn't fail traversing the history
71
- - run: |
+ - continue-on-error: true
72
+ run: |
73
# install required qemu libraries
74
docker run --rm --privileged tonistiigi/binfmt:latest --install all
75
# run docker container with qemu emulation
@@ -77,4 +78,4 @@ jobs:
77
78
--name qemu-cross-${{ matrix.hw_platform }} \
79
--mount type=bind,source=${PWD},target=/workspace \
80
--workdir /workspace \
- ${{matrix.hw_platform}}/eclipse-temurin:11-jdk-focal uname -a; ./gradlew --no-daemon -PmaxParallelForks=1 build
81
+ ${{matrix.hw_platform}}/eclipse-temurin:11-jdk /bin/sh -c "uname -a; ./gradlew --no-daemon -PmaxParallelForks=1 build"
0 commit comments