Skip to content
Draft
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
13 changes: 12 additions & 1 deletion .github/workflows/integration-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,10 +69,21 @@ jobs:
- name: "Create KinD cluster"
run: make cluster-up
- name: "Build and push images"
run: make push
run: make DELETE_AFTER_PUSH=true push
- name: "Install KubeVirt"
run: make install-kubevirt
- name: "Run integration tests"
run: |
eval $(ssh-agent -s)
make integration-tests
- 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/
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ concurrency:
env:
CARGO_TERM_COLOR: always
# Pinned toolchain for linting
ACTIONS_LINTS_TOOLCHAIN: 1.88.0
ACTIONS_LINTS_TOOLCHAIN: 1.89.0

jobs:
linting:
Expand Down
Loading