Skip to content

Commit 8613a2b

Browse files
yasiribmconmavemuri
authored andcommitted
Rectify docker run command for s390x (linkedin#2249)
1 parent d236067 commit 8613a2b

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/ci.yaml

+3-2
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,8 @@ jobs:
6868
- uses: actions/checkout@v4
6969
with:
7070
fetch-depth: 0 # so gradle doesn't fail traversing the history
71-
- run: |
71+
- continue-on-error: true
72+
run: |
7273
# install required qemu libraries
7374
docker run --rm --privileged tonistiigi/binfmt:latest --install all
7475
# run docker container with qemu emulation
@@ -77,4 +78,4 @@ jobs:
7778
--name qemu-cross-${{ matrix.hw_platform }} \
7879
--mount type=bind,source=${PWD},target=/workspace \
7980
--workdir /workspace \
80-
${{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

Comments
 (0)