Skip to content

Commit 1a67f59

Browse files
CU-86bzn78dn - Build issue in the Main branch
1 parent 06ba590 commit 1a67f59

File tree

2 files changed

+19
-9
lines changed

2 files changed

+19
-9
lines changed

JeMPI_Apps/build-all-java.sh

Lines changed: 13 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -6,34 +6,39 @@ set -u
66
cp -L -f ./JeMPI_Configuration/config-api.json ./JeMPI_API/src/main/resources/config-api.json
77
cp -L -f ./JeMPI_Configuration/config-api.json ./JeMPI_API_KC/src/main/resources/config-api.json
88

9+
if [ $# -eq 0 ]; then
10+
tag_to_use="ci-test-main"
11+
else
12+
tag_to_use=$1
13+
fi
914
mvn clean package
1015
pushd JeMPI_EM_Scala
1116
sbt clean assembly
1217
popd
1318

1419
pushd JeMPI_AsyncReceiver
15-
./build.sh || exit 1
20+
CI=false TAG=$tag_to_use ./build.sh || exit 1
1621
popd
1722
pushd JeMPI_ETL
18-
./build.sh || exit 1
23+
CI=false TAG=$tag_to_use ./build.sh || exit 1
1924
popd
2025
pushd JeMPI_Controller
21-
./build.sh || exit 1
26+
CI=false TAG=$tag_to_use ./build.sh || exit 1
2227
popd
2328
pushd JeMPI_EM_Scala
24-
./build.sh || exit 1
29+
CI=false TAG=$tag_to_use ./build.sh || exit 1
2530
popd
2631
pushd JeMPI_Linker
27-
./build.sh || exit 1
32+
CI=false TAG=$tag_to_use ./build.sh || exit 1
2833
popd
2934
pushd JeMPI_API
30-
./build.sh || exit 1
35+
CI=false TAG=$tag_to_use ./build.sh || exit 1
3136
popd
3237
pushd JeMPI_API_KC
33-
./build.sh || exit 1
38+
CI=false TAG=$tag_to_use ./build.sh || exit 1
3439
popd
3540
pushd JeMPI_Bootstrapper
36-
./build.sh || exit 1
41+
CI=false TAG=$tag_to_use ./build.sh || exit 1
3742
popd
3843
pushd JeMPI_AsyncReceiver
3944
./push.sh

JeMPI_Apps/build-all-ui.sh

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,14 @@
22

33
set -e
44
set -u
5+
if [ $# -eq 0 ]; then
6+
tag_to_use="ci-test-main"
7+
else
8+
tag_to_use=$1
9+
fi
510

611
pushd JeMPI_UI
7-
./build-image.sh || exit 1
12+
CI=false TAG=$tag_to_use ./build-image.sh || exit 1
813
popd
914

1015
pushd JeMPI_UI

0 commit comments

Comments
 (0)