File tree Expand file tree Collapse file tree 3 files changed +21
-5
lines changed Expand file tree Collapse file tree 3 files changed +21
-5
lines changed Original file line number Diff line number Diff line change 11
11
12
12
steps :
13
13
- name : Checkout
14
- uses : actions/checkout@v4
14
+ uses : actions/checkout@v5
15
15
16
16
- name : Load configuration
17
17
run : |
30
30
31
31
steps :
32
32
- name : Checkout
33
- uses : actions/checkout@v4
33
+ uses : actions/checkout@v5
34
34
35
35
- name : Load configuration
36
36
run : |
Original file line number Diff line number Diff line change 11
11
12
12
steps :
13
13
- name : Checkout
14
- uses : actions/checkout@v3
14
+ uses : actions/checkout@v5
15
+
16
+ - name : Load configuration
17
+ run : |
18
+ echo opensource_COBOL_4J_version="$(jq -r '.opensource_COBOL_4J_version' build-config.json)" >> $GITHUB_ENV
19
+ echo Open_COBOL_ESQL_4J_version="$(jq -r '.Open_COBOL_ESQL_4J_version' build-config.json)" >> $GITHUB_ENV
20
+ echo version_string_prefix="$(jq -r '.version_string_prefix' build-config.json)" >> $GITHUB_ENV
15
21
16
22
- name : Launch docker containers
17
- run : cd docker-compose && docker compose up -d
23
+ working-directory : docker-compose
24
+ run : |
25
+ docker compose build \
26
+ --build-arg opensource_COBOL_4J_version="$opensource_COBOL_4J_version" \
27
+ --build-arg Open_COBOL_ESQL_4J_version="$Open_COBOL_ESQL_4J_version"
28
+ docker compose up -d
Original file line number Diff line number Diff line change @@ -12,7 +12,12 @@ services:
12
12
- " 5432:5432"
13
13
14
14
oc4j_client :
15
- image : opensourcecobol/opensourcecobol4j:20241227
15
+ build :
16
+ context : ..
17
+ dockerfile : Dockerfile
18
+ args :
19
+ - opensource_COBOL_4J_version=dummy_value
20
+ - Open_COBOL_ESQL_4J_version=dummy_value
16
21
container_name : oc4j_client
17
22
stdin_open : true
18
23
tty : true
You can’t perform that action at this time.
0 commit comments