-
Notifications
You must be signed in to change notification settings - Fork 0
/
dockertest.sh
executable file
·33 lines (23 loc) · 938 Bytes
/
dockertest.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#!/usr/bin/env bash
set -e
cd JavaNativeUtilsTest/docker/amd64
cd ../amd64
docker compose up --build --exit-code-from java-native-utils-test-amd64
cd ../amd64_musl
docker compose up --build --exit-code-from java-native-utils-test-amd64-musl
cd ../i386
docker compose up --build --exit-code-from java-native-utils-test-i386
cd ../riscv64
docker compose up --build --exit-code-from java-native-utils-test-risc64
cd ../aarch64
docker compose up --build --exit-code-from java-native-utils-test-aarch64
cd ../armhf
docker compose up --build --exit-code-from java-native-utils-test-armhf
cd ../armel
docker compose up --build --exit-code-from java-native-utils-test-armel
cd ../mips64el
docker compose up --build --exit-code-from java-native-utils-test-mips64el
cd ../ppc64le
docker compose up --build --exit-code-from java-native-utils-test-ppc64le
cd ../s390x
docker compose up --build --exit-code-from java-native-utils-test-s390x