diff --git a/.github/actions/smoke-tests/action.yaml b/.github/actions/smoke-tests/action.yaml index caac7c26aa..0144d44cbe 100644 --- a/.github/actions/smoke-tests/action.yaml +++ b/.github/actions/smoke-tests/action.yaml @@ -47,6 +47,9 @@ runs: load: true pull: true build-args: BUILD_OS=${{ inputs.image }} + secrets: | + "nginx-repo.crt=${{ secrets.NGINX_CRT }}" + "nginx-repo.key=${{ secrets.NGINX_KEY }}" - name: Build Test-Runner Container uses: docker/build-push-action@v2 diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 180cd4556a..2b599218c9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -148,10 +148,13 @@ jobs: if [ "${{ github.event_name }}" != "schedule" ]; then echo "::set-output name=matrix::{\"images\": \ [{\"image\": \"debian\", \"marker\": \"ingresses\"}, \ + {\"image\": \"debian-plus\", \"marker\": \"vs\"}, \ {\"image\": \"alpine\", \"marker\":\"vsr\"}, \ + {\"image\": \"alpine-plus\", \"marker\":\"ingresses\"}, \ {\"image\": \"opentracing\", \"marker\": \"vs\"}, \ + {\"image\": \"opentracing-plus\", \"marker\": \"vsr\"}, \ {\"image\": \"ubi\", \"marker\": \"ts\"}, \ - {\"image\": \"debian\", \"marker\": \"policies\"}]}" + {\"image\": \"ubi-plus\", \"marker\": \"policies\"}]}" else echo "::set-output name=matrix::{\"k8s\": [\"1.19.11\", \"1.20.7\", \"1.21.2\", \"1.22.2\"]}" fi