We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 84b6566 commit d5d71acCopy full SHA for d5d71ac
1 file changed
.github/workflows/ci-multi-server-tests.yml
@@ -60,6 +60,18 @@ jobs:
60
./configure
61
make docker.ubuntu22.build
62
63
+ # List all images
64
+ docker images --all
65
+
66
+ # Retag image to what the compose/test harness expects
67
+ docker tag freeradius4/ubuntu22:latest fr-build-ubuntu22:latest
68
69
+ docker images --format 'table {{.Repository}}\t{{.Tag}}\t{{.ID}}' | grep -E 'freeradius4/ubuntu22|fr-build-ubuntu22'
70
71
- name: Run test-5hs-autoaccept test
72
run: |
73
+ if ! docker images --format '{{.Repository}}:{{.Tag}}' | grep -q '^fr-build-ubuntu22:latest$'; then
74
+ echo "Error: fr-build-ubuntu22:latest Docker image not found and required for multi-server test environment."
75
+ exit 1
76
+ fi
77
make -f src/tests/multi-server/all.mk test-5hs-autoaccept
0 commit comments