File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed
Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -193,9 +193,11 @@ jobs:
193193 run : |
194194 # TODO: remove "containerimage.config.digest" fallback once all runners use buildx v0.18+
195195 # which replaced it with "containerimage.digest" and "containerimage.descriptor"
196+ IMAGE="$(jq -r ".\"builder-${VARIANT}\" | .\"containerimage.config.digest\" // .\"containerimage.digest\"" <<< "${METADATA}")"
196197 docker run --platform="${PLATFORM}" --rm \
197- "$(jq -r ".\"builder-${VARIANT}\" | .\"containerimage.config.digest\" // .\"containerimage.digest\"" <<< "${METADATA}")" \
198- sh -c "./go.sh test ${RACE} -v $(./go.sh list ./... | grep -v github.com/dunglas/frankenphp/internal/testext | grep -v github.com/dunglas/frankenphp/internal/extgen | tr '\n' ' ') && cd caddy && ../go.sh test ${RACE} -v ./..."
198+ -e GOTRACEBACK=crash \
199+ "${IMAGE}" \
200+ sh -c "./go.sh test ${RACE} -v \$(./go.sh list ./... | grep -v github.com/dunglas/frankenphp/internal/testext | grep -v github.com/dunglas/frankenphp/internal/extgen | tr '\n' ' ') && cd caddy && ../go.sh test ${RACE} -v ./..."
199201 env :
200202 METADATA : ${{ steps.build.outputs.metadata }}
201203 PLATFORM : ${{ matrix.platform }}
You can’t perform that action at this time.
0 commit comments