Skip to content

Commit b237264

Browse files
committed
Add ability to parse OCI images
Signed-off-by: James Sturtevant <[email protected]>
1 parent fd8fa40 commit b237264

File tree

17 files changed

+911
-103
lines changed

17 files changed

+911
-103
lines changed

.github/scripts/build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
#!/bin/bash
22
sudo apt -y update
3-
sudo apt install -y pkg-config libsystemd-dev libdbus-glib-1-dev build-essential libelf-dev libseccomp-dev libclang-dev
3+
sudo apt install -y pkg-config libsystemd-dev libdbus-glib-1-dev build-essential libelf-dev libseccomp-dev libclang-dev protobuf-compiler

.github/workflows/ci.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,4 +95,8 @@ jobs:
9595
run: make test/k3s
9696
- name: cleanup
9797
if: always()
98-
run: make test/k3s/clean
98+
run: |
99+
# run log collection after running tests, so that we can see the logs in case pod doesn't start properly
100+
timeout 5 bash -c -- 'sudo bin/k3s kubectl logs deployments/wasi-demo'
101+
timeout 5 bash -c -- 'sudo bin/k3s kubectl get pods -o wide'
102+
make test/k3s/clean

0 commit comments

Comments
 (0)