Skip to content

Commit 778b1cc

Browse files
committed
Fix: No test ensured binaries copied to .deb
1 parent 2a9fb6a commit 778b1cc

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

.github/workflows/build-deb-package.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,14 @@ jobs:
4949
cd packaging && make ${{ matrix.make_target }} && cd ..
5050
ls packaging/target
5151
52+
- name: Ensure that the relevant files are present in the package
53+
run: |
54+
dpkg --contents packaging/target/${{ matrix.artifact_name }} | grep /opt/kubo/ipfs
55+
dpkg --contents packaging/target/${{ matrix.artifact_name }} | grep /opt/firecracker/firecracker
56+
dpkg --contents packaging/target/${{ matrix.artifact_name }} | grep /opt/firecracker/jailer
57+
dpkg --contents packaging/target/${{ matrix.artifact_name }} | grep /opt/firecracker/vmlinux.bin
58+
dpkg --contents packaging/target/${{ matrix.artifact_name }} | grep /opt/sevctl
59+
5260
- uses: actions/upload-artifact@v4
5361
with:
5462
name: ${{ matrix.artifact_name }}

0 commit comments

Comments
 (0)