We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7467f87 commit 8d38262Copy full SHA for 8d38262
.github/workflows/integration_tests.yml
@@ -52,4 +52,12 @@ jobs:
52
run: curl -L -o /tmp/libkrunfw-5.0.0-x86_64.tgz https://github.com/containers/libkrunfw/releases/download/v5.0.0/libkrunfw-5.0.0-x86_64.tgz && mkdir tmp && tar xf /tmp/libkrunfw-5.0.0-x86_64.tgz -C tmp && sudo mv tmp/lib64/* /lib/x86_64-linux-gnu
53
54
- name: Integration tests
55
- run: RUST_LOG=trace KRUN_ENOMEM_WORKAROUND=1 KRUN_NO_UNSHARE=1 make test
+ run: KRUN_ENOMEM_WORKAROUND=1 KRUN_NO_UNSHARE=1 KRUN_TEST_BASE_DIR=/tmp/libkrun-tests make test TEST_FLAGS="--keep-all"
56
+
57
+ - name: Upload test logs
58
+ if: always()
59
+ uses: actions/upload-artifact@v4
60
+ with:
61
+ name: test-logs
62
+ path: /tmp/libkrun-tests/
63
+ if-no-files-found: ignore
0 commit comments