From 7607539eeceb926d026bf9e5ee930bcc079ae7f3 Mon Sep 17 00:00:00 2001 From: Jim McKeeth Date: Fri, 17 Jul 2026 15:54:29 -0700 Subject: [PATCH] Fix image tag: RAD Studio 37.0 is 13.x Florence, not 12.x Athens Athens is version 36.0. The delphi-builder image is now dual-tagged (12-athens kept as an alias, 13-florence added) on the runner host; this switches the workflow to reference the correctly named tag. --- .github/workflows/self-hosted-container-smoke-test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/self-hosted-container-smoke-test.yml b/.github/workflows/self-hosted-container-smoke-test.yml index a99452b..9c55d01 100644 --- a/.github/workflows/self-hosted-container-smoke-test.yml +++ b/.github/workflows/self-hosted-container-smoke-test.yml @@ -24,7 +24,7 @@ jobs: -v "C:\Program Files (x86)\Embarcadero:C:\Program Files (x86)\Embarcadero:ro" ` -v "C:\Users\Public\Documents\Embarcadero:C:\Users\Public\Documents\Embarcadero:ro" ` -w C:\work ` - delphi-builder:12-athens ` + delphi-builder:13-florence ` cmd /c "dcc64.exe Hello.dpr && Hello.exe && echo this container is ephemeral > C:\marker.txt && dir C:\marker.txt" if ($LASTEXITCODE -ne 0) { throw "container build failed with exit code $LASTEXITCODE" }