Skip to content

Commit 377b77f

Browse files
committed
Fix: No test ensured binaries copied to .deb
1 parent 98d6f1a commit 377b77f

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
@@ -38,6 +38,14 @@ jobs:
3838
cd packaging && make ${{ matrix.make_target }} && cd ..
3939
ls packaging/target
4040
41+
- name: Ensure that the relevant files are present in the package
42+
run: |
43+
dpkg --contents packaging/target/${{ matrix.artifact_name }} | grep /opt/kubo/ipfs
44+
dpkg --contents packaging/target/${{ matrix.artifact_name }} | grep /opt/firecracker/firecracker
45+
dpkg --contents packaging/target/${{ matrix.artifact_name }} | grep /opt/firecracker/jailer
46+
dpkg --contents packaging/target/${{ matrix.artifact_name }} | grep /opt/firecracker/vmlinux.bin
47+
dpkg --contents packaging/target/${{ matrix.artifact_name }} | grep /opt/sevctl
48+
4149
- uses: actions/upload-artifact@v4
4250
with:
4351
name: ${{ matrix.artifact_name }}

0 commit comments

Comments
 (0)