@@ -50,30 +50,30 @@ jobs:
5050 echo "Server is up!"
5151 continue-on-error : true
5252
53- - name : Build and run Ubuntu 23 .04 container
53+ - name : Build and run Ubuntu 24 .04 container
5454 run : |
5555 docker build -t ubuntu24.04 -f images/ubuntu24.04.Dockerfile scripts/
5656 docker run --name ubuntu24.04-test --network host ubuntu24.04 || true
5757
58- - name : Build and run Fedora 38 container
58+ - name : Build and run Fedora 42 container
5959 run : |
60- docker build -t fedora38 -f images/fedora38 .Dockerfile scripts/
61- docker run --name fedora38 -test --network host fedora38 || true
60+ docker build -t fedora42 -f images/fedora42 .Dockerfile scripts/
61+ docker run --name fedora42 -test --network host fedora42 || true
6262
6363 - name : Build and run Debian 12 container
6464 run : |
6565 docker build -t debian12 -f images/debian12.Dockerfile scripts/
6666 docker run --name debian12-test --network host debian12 || true
6767
68- - name : Build and run Ubuntu 23 .04 container for checking multiple package support
68+ - name : Build and run Ubuntu 24 .04 container for checking multiple package support
6969 run : |
7070 docker build -t ubuntu24.04-multi -f images/ubuntu24.04-multi-package.Dockerfile scripts/
7171 docker run --name ubuntu24.04-multitest --network host ubuntu24.04-multi || true
7272
73- - name : Build and run Fedora 38 container for checking multiple package support
73+ - name : Build and run Fedora 42 container for checking multiple package support
7474 run : |
75- docker build -t fedora38 -f images/fedora38 -multi-package.Dockerfile scripts/
76- docker run --name fedora38 -multitest --network host fedora38 || true
75+ docker build -t fedora42 -f images/fedora42 -multi-package.Dockerfile scripts/
76+ docker run --name fedora42 -multitest --network host fedora42 || true
7777
7878 - name : Build and run Debian 12 container for checking multiple package support
7979 run : |
@@ -92,12 +92,12 @@ jobs:
9292 - name : Check client containers' statuses
9393 run : |
9494 if [ "$(docker inspect -f '{{.State.ExitCode}}' ubuntu24.04-test)" -ne 0 ]; then
95- echo "Test on Ubuntu 23 .04 failed"
95+ echo "Test on Ubuntu 24 .04 failed"
9696 exit 1
9797 fi
9898
99- if [ "$(docker inspect -f '{{.State.ExitCode}}' fedora38 -test)" -ne 0 ]; then
100- echo "Test on Fedora 38 failed"
99+ if [ "$(docker inspect -f '{{.State.ExitCode}}' fedora42 -test)" -ne 0 ]; then
100+ echo "Test on Fedora 42 failed"
101101 exit 1
102102 fi
103103
@@ -111,8 +111,8 @@ jobs:
111111 exit 1
112112 fi
113113
114- if [ "$(docker inspect -f '{{.State.ExitCode}}' fedora38 -multitest)" -ne 0 ]; then
115- echo "Test on Fedora 38 failed multiple package support failed"
114+ if [ "$(docker inspect -f '{{.State.ExitCode}}' fedora42 -multitest)" -ne 0 ]; then
115+ echo "Test on Fedora 42 failed multiple package support failed"
116116 exit 1
117117 fi
118118
0 commit comments