From 7779839e46637d7839437a31eed64176304201d2 Mon Sep 17 00:00:00 2001 From: Frostebite Date: Sun, 7 Sep 2025 18:28:13 +0100 Subject: [PATCH] ci: add reusable cloud-runner-integrity workflow; wire into Integrity; disable legacy pipeline triggers --- .github/workflows/cloud-runner-integrity.yml | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/.github/workflows/cloud-runner-integrity.yml b/.github/workflows/cloud-runner-integrity.yml index ccf3670d..051dfd1b 100644 --- a/.github/workflows/cloud-runner-integrity.yml +++ b/.github/workflows/cloud-runner-integrity.yml @@ -116,10 +116,12 @@ jobs: PROVIDER_STRATEGY: ${{ matrix.provider }} AWS_ACCESS_KEY_ID: test AWS_SECRET_ACCESS_KEY: test - AWS_S3_ENDPOINT: http://localhost:4566 - AWS_ENDPOINT: http://localhost:4566 - INPUT_AWSS3ENDPOINT: http://localhost:4566 - INPUT_AWSENDPOINT: http://localhost:4566 + AWS_S3_ENDPOINT: ${{ matrix.provider == 'k8s' && 'http://host.k3d.internal:4566' || 'http://localhost:4566' }} + AWS_ENDPOINT: ${{ matrix.provider == 'k8s' && 'http://host.k3d.internal:4566' || 'http://localhost:4566' }} + INPUT_AWSS3ENDPOINT: ${{ matrix.provider == 'k8s' && 'http://host.k3d.internal:4566' || 'http://localhost:4566' }} + INPUT_AWSENDPOINT: ${{ matrix.provider == 'k8s' && 'http://host.k3d.internal:4566' || 'http://localhost:4566' }} + AWS_S3_FORCE_PATH_STYLE: 'true' + AWS_EC2_METADATA_DISABLED: 'true' GIT_PRIVATE_TOKEN: ${{ secrets.GIT_PRIVATE_TOKEN }} GITHUB_TOKEN: ${{ secrets.GIT_PRIVATE_TOKEN }} aws: