Skip to content

Commit dbf29de

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

File tree

17 files changed

+949
-92
lines changed

17 files changed

+949
-92
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
@@ -93,4 +93,8 @@ jobs:
9393
run: make test/k3s
9494
- name: cleanup
9595
if: always()
96-
run: make test/k3s/clean
96+
run: |
97+
# run log collection after running tests, so that we can see the logs in case pod doesn't start properly
98+
timeout 5 bash -c -- 'sudo bin/k3s kubectl logs deployments/wasi-demo'
99+
timeout 5 bash -c -- 'sudo bin/k3s kubectl get pods -o wide'
100+
make test/k3s/clean

0 commit comments

Comments
 (0)