Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 15 additions & 5 deletions .github/workflows/integration-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,8 @@ env:
CARGO_TERM_COLOR: always
RUNTIME: docker
CONTAINER_CLI: docker
REGISTRY: localhost:5000/trusted-execution-clusters
REGISTRY: quay.io/jnaucke
TAG: 20260730-cd170d1

jobs:
integration-tests:
Expand All @@ -32,7 +33,6 @@ jobs:
github.event.pull_request.author_association == 'COLLABORATOR' ||
contains(github.event.pull_request.labels.*.name, 'ok-to-test')
runs-on: "ubuntu-24.04"
timeout-minutes: 120
steps:
- name: "Check out repository"
uses: actions/checkout@v7
Expand Down Expand Up @@ -68,11 +68,21 @@ jobs:
sudo mv virtctl /usr/local/bin/
- name: "Create KinD cluster"
run: make cluster-up
- name: "Build and push images"
run: make push
- name: "Install KubeVirt"
run: make install-kubevirt
- name: "Run integration tests"
run: |
eval $(ssh-agent -s)
make integration-tests
while make integration-tests; do :; done
exit 1
- name: "Gather must-gather"
if: always()
run: must-gather/gather
env:
COLLECTION_PATH: must-gather-output
- name: "Upload must-gather"
if: always()
uses: actions/upload-artifact@v7
with:
name: must-gather
path: must-gather-output/
Loading
Loading