File tree Expand file tree Collapse file tree 2 files changed +19
-9
lines changed Expand file tree Collapse file tree 2 files changed +19
-9
lines changed Original file line number Diff line number Diff line change 66cp -L -f ./JeMPI_Configuration/config-api.json ./JeMPI_API/src/main/resources/config-api.json
77cp -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
914mvn clean package
1015pushd JeMPI_EM_Scala
1116 sbt clean assembly
1217popd
1318
1419pushd JeMPI_AsyncReceiver
15- ./build.sh || exit 1
20+ CI=false TAG= $tag_to_use ./build.sh || exit 1
1621popd
1722pushd JeMPI_ETL
18- ./build.sh || exit 1
23+ CI=false TAG= $tag_to_use ./build.sh || exit 1
1924popd
2025pushd JeMPI_Controller
21- ./build.sh || exit 1
26+ CI=false TAG= $tag_to_use ./build.sh || exit 1
2227popd
2328pushd JeMPI_EM_Scala
24- ./build.sh || exit 1
29+ CI=false TAG= $tag_to_use ./build.sh || exit 1
2530popd
2631pushd JeMPI_Linker
27- ./build.sh || exit 1
32+ CI=false TAG= $tag_to_use ./build.sh || exit 1
2833popd
2934pushd JeMPI_API
30- ./build.sh || exit 1
35+ CI=false TAG= $tag_to_use ./build.sh || exit 1
3136popd
3237pushd JeMPI_API_KC
33- ./build.sh || exit 1
38+ CI=false TAG= $tag_to_use ./build.sh || exit 1
3439popd
3540pushd JeMPI_Bootstrapper
36- ./build.sh || exit 1
41+ CI=false TAG= $tag_to_use ./build.sh || exit 1
3742popd
3843pushd JeMPI_AsyncReceiver
3944 ./push.sh
Original file line number Diff line number Diff line change 22
33set -e
44set -u
5+ if [ $# -eq 0 ]; then
6+ tag_to_use=" ci-test-main"
7+ else
8+ tag_to_use=$1
9+ fi
510
611pushd JeMPI_UI
7- ./build-image.sh || exit 1
12+ CI=false TAG= $tag_to_use ./build-image.sh || exit 1
813popd
914
1015pushd JeMPI_UI
You can’t perform that action at this time.
0 commit comments