test without --signature-policy flags
Some checks failed
Podman Rootless Demo / test-backend (push) Failing after 44s

This commit is contained in:
continuist 2025-09-19 23:05:34 -04:00
parent 1b2a1608f3
commit 29f979149f

View file

@ -64,13 +64,11 @@ jobs:
--cache-to "$CACHE_REPO" \ --cache-to "$CACHE_REPO" \
--cache-from "$CACHE_REPO" \ --cache-from "$CACHE_REPO" \
--target deps \ --target deps \
--signature-policy /home/ci-service/.config/containers/policy-ci.json \
-f backend/Dockerfile.test-rust \ -f backend/Dockerfile.test-rust \
-t "$PREBUILT_BACKEND_TEST_IMAGE:deps-${{ steps.cache-key.outputs.cache_key }}" \ -t "$PREBUILT_BACKEND_TEST_IMAGE:deps-${{ steps.cache-key.outputs.cache_key }}" \
--layers --layers
podman --remote push \ podman --remote push \
--signature-policy /home/ci-service/.config/containers/policy-ci.json \
"$PREBUILT_BACKEND_TEST_IMAGE:deps-${{ steps.cache-key.outputs.cache_key }}" "$PREBUILT_BACKEND_TEST_IMAGE:deps-${{ steps.cache-key.outputs.cache_key }}"
- name: Build full test image with cached dependencies - name: Build full test image with cached dependencies
@ -80,7 +78,6 @@ jobs:
--layers \ --layers \
--cache-from "$CACHE_REPO" \ --cache-from "$CACHE_REPO" \
--target runner \ --target runner \
--signature-policy /home/ci-service/.config/containers/policy-ci.json \
-f backend/Dockerfile.test-rust \ -f backend/Dockerfile.test-rust \
-t "$PREBUILT_BACKEND_TEST_IMAGE:test-${{ github.sha }}" \ -t "$PREBUILT_BACKEND_TEST_IMAGE:test-${{ github.sha }}" \
. .