File tree Expand file tree Collapse file tree 2 files changed +19
-17
lines changed Expand file tree Collapse file tree 2 files changed +19
-17
lines changed Original file line number Diff line number Diff line change 33set -e
44set -u
55
6+ CI=${CI:- true}
67if [ $# -eq 0 ]; then
78 tag_to_use=" ci-test-main"
89else
2526docker buildx create --name container --driver=docker-container
2627
2728pushd JeMPI_AsyncReceiver
28- CI=true TAG=$tag_to_use ./build.sh || exit 1
29+ $CI TAG=$tag_to_use ./build.sh || exit 1
2930popd
3031pushd JeMPI_ETL
31- CI=true TAG=$tag_to_use ./build.sh || exit 1
32+ $CI TAG=$tag_to_use ./build.sh || exit 1
3233popd
3334pushd JeMPI_Controller
34- CI=true TAG=$tag_to_use ./build.sh || exit 1
35+ $CI TAG=$tag_to_use ./build.sh || exit 1
3536popd
3637pushd JeMPI_EM_Scala
37- CI=true TAG=$tag_to_use ./build.sh || exit 1
38+ $CI TAG=$tag_to_use ./build.sh || exit 1
3839popd
3940pushd JeMPI_Linker
40- CI=true TAG=$tag_to_use ./build.sh || exit 1
41+ $CI TAG=$tag_to_use ./build.sh || exit 1
4142popd
4243pushd JeMPI_API
43- CI=true TAG=$tag_to_use ./build.sh || exit 1
44+ $CI TAG=$tag_to_use ./build.sh || exit 1
4445popd
4546pushd JeMPI_API_KC
46- CI=true TAG=$tag_to_use ./build.sh || exit 1
47+ $CI TAG=$tag_to_use ./build.sh || exit 1
4748popd
4849pushd JeMPI_Bootstrapper
49- CI=true TAG=$tag_to_use ./build.sh || exit 1
50+ $CI TAG=$tag_to_use ./build.sh || exit 1
5051popd
5152pushd JeMPI_UI
52- CI=true TAG=$tag_to_use ./build-image.sh || exit 1
53+ $CI TAG=$tag_to_use ./build-image.sh || exit 1
5354popd
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+ CI=${CI:- false}
910if [ $# -eq 0 ]; then
1011 tag_to_use=" ci-test-main"
1112else
@@ -17,28 +18,28 @@ pushd JeMPI_EM_Scala
1718popd
1819
1920pushd JeMPI_AsyncReceiver
20- CI=false TAG=$tag_to_use ./build.sh || exit 1
21+ $CI TAG=$tag_to_use ./build.sh || exit 1
2122popd
2223pushd JeMPI_ETL
23- CI=false TAG=$tag_to_use ./build.sh || exit 1
24+ $CI TAG=$tag_to_use ./build.sh || exit 1
2425popd
2526pushd JeMPI_Controller
26- CI=false TAG=$tag_to_use ./build.sh || exit 1
27+ $CI TAG=$tag_to_use ./build.sh || exit 1
2728popd
2829pushd JeMPI_EM_Scala
29- CI=false TAG=$tag_to_use ./build.sh || exit 1
30+ $CI TAG=$tag_to_use ./build.sh || exit 1
3031popd
3132pushd JeMPI_Linker
32- CI=false TAG=$tag_to_use ./build.sh || exit 1
33+ $CI TAG=$tag_to_use ./build.sh || exit 1
3334popd
3435pushd JeMPI_API
35- CI=false TAG=$tag_to_use ./build.sh || exit 1
36+ $CI TAG=$tag_to_use ./build.sh || exit 1
3637popd
3738pushd JeMPI_API_KC
38- CI=false TAG=$tag_to_use ./build.sh || exit 1
39+ $CI TAG=$tag_to_use ./build.sh || exit 1
3940popd
4041pushd JeMPI_Bootstrapper
41- CI=false TAG=$tag_to_use ./build.sh || exit 1
42+ $CI TAG=$tag_to_use ./build.sh || exit 1
4243popd
4344pushd JeMPI_AsyncReceiver
4445 ./push.sh
You can’t perform that action at this time.
0 commit comments