Skip to content

Commit eb9afff

Browse files
Modify Docker workflow for ACES version builds
Updated Docker workflow to include multiple build jobs for different ACES versions.
1 parent 1dc9d8b commit eb9afff

File tree

1 file changed

+13
-2
lines changed

1 file changed

+13
-2
lines changed

.github/workflows/docker_aces_test.yml

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,26 @@ on:
1212

1313
jobs:
1414

15-
build:
15+
build-aces-1_0_1:
1616

1717
runs-on: ubuntu-latest
1818

1919
steps:
2020
- uses: actions/checkout@v3
2121
- name: Build the Docker image
22-
run: docker build --rm -f Dockerfile_ACES_test -t ctl:latest .
22+
run: docker build --rm -f Dockerfile_ACES_1_0_1_test -t ctl:latest .
2323

2424
- name: Run the Docker image
2525
run: docker run ctl:latest
2626

27+
build-aces-1_3:
28+
29+
runs-on: ubuntu-latest
30+
31+
steps:
32+
- uses: actions/checkout@v3
33+
- name: Build the Docker image
34+
run: docker build --rm -f Dockerfile_ACES_1_3_test -t ctl:latest .
35+
36+
- name: Run the Docker image
37+
run: docker run ctl:latest

0 commit comments

Comments
 (0)