File tree 2 files changed +19
-19
lines changed
2 files changed +19
-19
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
+ CI=" ${CI:- true} "
7
7
if [ $# -eq 0 ]; then
8
8
tag_to_use=" ci-test-main"
9
9
else
26
26
docker buildx create --name container --driver=docker-container
27
27
28
28
pushd JeMPI_AsyncReceiver
29
- $CI TAG=$tag_to_use ./build.sh || exit 1
29
+ CI= $CI TAG=$tag_to_use ./build.sh || exit 1
30
30
popd
31
31
pushd JeMPI_ETL
32
- $CI TAG=$tag_to_use ./build.sh || exit 1
32
+ CI= $CI TAG=$tag_to_use ./build.sh || exit 1
33
33
popd
34
34
pushd JeMPI_Controller
35
- $CI TAG=$tag_to_use ./build.sh || exit 1
35
+ CI= $CI TAG=$tag_to_use ./build.sh || exit 1
36
36
popd
37
37
pushd JeMPI_EM_Scala
38
- $CI TAG=$tag_to_use ./build.sh || exit 1
38
+ CI= $CI TAG=$tag_to_use ./build.sh || exit 1
39
39
popd
40
40
pushd JeMPI_Linker
41
- $CI TAG=$tag_to_use ./build.sh || exit 1
41
+ CI= $CI TAG=$tag_to_use ./build.sh || exit 1
42
42
popd
43
43
pushd JeMPI_API
44
- $CI TAG=$tag_to_use ./build.sh || exit 1
44
+ CI= $CI TAG=$tag_to_use ./build.sh || exit 1
45
45
popd
46
46
pushd JeMPI_API_KC
47
- $CI TAG=$tag_to_use ./build.sh || exit 1
47
+ CI= $CI TAG=$tag_to_use ./build.sh || exit 1
48
48
popd
49
49
pushd JeMPI_Bootstrapper
50
- $CI TAG=$tag_to_use ./build.sh || exit 1
50
+ CI= $CI TAG=$tag_to_use ./build.sh || exit 1
51
51
popd
52
52
pushd JeMPI_UI
53
- $CI TAG=$tag_to_use ./build-image.sh || exit 1
53
+ CI= $CI TAG=$tag_to_use ./build-image.sh || exit 1
54
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
+ CI=" ${CI:- false} "
10
10
if [ $# -eq 0 ]; then
11
11
tag_to_use=" ci-test-main"
12
12
else
@@ -18,28 +18,28 @@ pushd JeMPI_EM_Scala
18
18
popd
19
19
20
20
pushd JeMPI_AsyncReceiver
21
- $CI TAG=$tag_to_use ./build.sh || exit 1
21
+ CI=CI= $CI TAG=$tag_to_use ./build.sh || exit 1
22
22
popd
23
23
pushd JeMPI_ETL
24
- $CI TAG=$tag_to_use ./build.sh || exit 1
24
+ CI= $CI TAG=$tag_to_use ./build.sh || exit 1
25
25
popd
26
26
pushd JeMPI_Controller
27
- $CI TAG=$tag_to_use ./build.sh || exit 1
27
+ CI= $CI TAG=$tag_to_use ./build.sh || exit 1
28
28
popd
29
29
pushd JeMPI_EM_Scala
30
- $CI TAG=$tag_to_use ./build.sh || exit 1
30
+ CI= $CI TAG=$tag_to_use ./build.sh || exit 1
31
31
popd
32
32
pushd JeMPI_Linker
33
- $CI TAG=$tag_to_use ./build.sh || exit 1
33
+ CI= $CI TAG=$tag_to_use ./build.sh || exit 1
34
34
popd
35
35
pushd JeMPI_API
36
- $CI TAG=$tag_to_use ./build.sh || exit 1
36
+ CI= $CI TAG=$tag_to_use ./build.sh || exit 1
37
37
popd
38
38
pushd JeMPI_API_KC
39
- $CI TAG=$tag_to_use ./build.sh || exit 1
39
+ CI= $CI TAG=$tag_to_use ./build.sh || exit 1
40
40
popd
41
41
pushd JeMPI_Bootstrapper
42
- $CI TAG=$tag_to_use ./build.sh || exit 1
42
+ CI= $CI TAG=$tag_to_use ./build.sh || exit 1
43
43
popd
44
44
pushd JeMPI_AsyncReceiver
45
45
./push.sh
You can’t perform that action at this time.
0 commit comments