Commit 6e979b9 1 parent 1a67f59 commit 6e979b9 Copy full SHA for 6e979b9
File tree 2 files changed +19
-17
lines changed
2 files changed +19
-17
lines changed Original file line number Diff line number Diff line change 3
3
set -e
4
4
set -u
5
5
6
+ CI=${CI:- true}
6
7
if [ $# -eq 0 ]; then
7
8
tag_to_use=" ci-test-main"
8
9
else
25
26
docker buildx create --name container --driver=docker-container
26
27
27
28
pushd JeMPI_AsyncReceiver
28
- CI=true TAG=$tag_to_use ./build.sh || exit 1
29
+ $CI TAG=$tag_to_use ./build.sh || exit 1
29
30
popd
30
31
pushd JeMPI_ETL
31
- CI=true TAG=$tag_to_use ./build.sh || exit 1
32
+ $CI TAG=$tag_to_use ./build.sh || exit 1
32
33
popd
33
34
pushd JeMPI_Controller
34
- CI=true TAG=$tag_to_use ./build.sh || exit 1
35
+ $CI TAG=$tag_to_use ./build.sh || exit 1
35
36
popd
36
37
pushd JeMPI_EM_Scala
37
- CI=true TAG=$tag_to_use ./build.sh || exit 1
38
+ $CI TAG=$tag_to_use ./build.sh || exit 1
38
39
popd
39
40
pushd JeMPI_Linker
40
- CI=true TAG=$tag_to_use ./build.sh || exit 1
41
+ $CI TAG=$tag_to_use ./build.sh || exit 1
41
42
popd
42
43
pushd JeMPI_API
43
- CI=true TAG=$tag_to_use ./build.sh || exit 1
44
+ $CI TAG=$tag_to_use ./build.sh || exit 1
44
45
popd
45
46
pushd JeMPI_API_KC
46
- CI=true TAG=$tag_to_use ./build.sh || exit 1
47
+ $CI TAG=$tag_to_use ./build.sh || exit 1
47
48
popd
48
49
pushd JeMPI_Bootstrapper
49
- CI=true TAG=$tag_to_use ./build.sh || exit 1
50
+ $CI TAG=$tag_to_use ./build.sh || exit 1
50
51
popd
51
52
pushd 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
53
54
popd
Original file line number Diff line number Diff line change 6
6
cp -L -f ./JeMPI_Configuration/config-api.json ./JeMPI_API/src/main/resources/config-api.json
7
7
cp -L -f ./JeMPI_Configuration/config-api.json ./JeMPI_API_KC/src/main/resources/config-api.json
8
8
9
+ CI=${CI:- false}
9
10
if [ $# -eq 0 ]; then
10
11
tag_to_use=" ci-test-main"
11
12
else
@@ -17,28 +18,28 @@ pushd JeMPI_EM_Scala
17
18
popd
18
19
19
20
pushd JeMPI_AsyncReceiver
20
- CI=false TAG=$tag_to_use ./build.sh || exit 1
21
+ $CI TAG=$tag_to_use ./build.sh || exit 1
21
22
popd
22
23
pushd JeMPI_ETL
23
- CI=false TAG=$tag_to_use ./build.sh || exit 1
24
+ $CI TAG=$tag_to_use ./build.sh || exit 1
24
25
popd
25
26
pushd JeMPI_Controller
26
- CI=false TAG=$tag_to_use ./build.sh || exit 1
27
+ $CI TAG=$tag_to_use ./build.sh || exit 1
27
28
popd
28
29
pushd JeMPI_EM_Scala
29
- CI=false TAG=$tag_to_use ./build.sh || exit 1
30
+ $CI TAG=$tag_to_use ./build.sh || exit 1
30
31
popd
31
32
pushd JeMPI_Linker
32
- CI=false TAG=$tag_to_use ./build.sh || exit 1
33
+ $CI TAG=$tag_to_use ./build.sh || exit 1
33
34
popd
34
35
pushd JeMPI_API
35
- CI=false TAG=$tag_to_use ./build.sh || exit 1
36
+ $CI TAG=$tag_to_use ./build.sh || exit 1
36
37
popd
37
38
pushd JeMPI_API_KC
38
- CI=false TAG=$tag_to_use ./build.sh || exit 1
39
+ $CI TAG=$tag_to_use ./build.sh || exit 1
39
40
popd
40
41
pushd JeMPI_Bootstrapper
41
- CI=false TAG=$tag_to_use ./build.sh || exit 1
42
+ $CI TAG=$tag_to_use ./build.sh || exit 1
42
43
popd
43
44
pushd JeMPI_AsyncReceiver
44
45
./push.sh
You can’t perform that action at this time.
0 commit comments