Skip to content

Commit 72efdcf

Browse files
committed
WIP CI deb
1 parent 520fc73 commit 72efdcf

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

.github/workflows/external.ci.linux.yml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,10 +64,18 @@ jobs:
6464
run: |
6565
# Adding execution bit to binaries is needed since upload/download GHA is using zip compression
6666
# and it can't preserve files permissions - https://github.com/actions/upload-artifact/issues/38
67-
chmod +x ./bin/*
67+
chmod +x ./bin/* ./lib/*
6868
6969
./bin/vklTutorialCPU
7070
./bin/vklTutorialISPC
71+
echo "ldd ./bin/vklExamplesCPU"
72+
ldd ./bin/vklExamplesCPU
73+
echo "ls -l ./lib/libblosc.so.1"
74+
ls -l ./lib/libblosc.so.1
75+
echo "ldd ./lib/libblosc.so.1"
76+
ldd ./lib/libblosc.so.1
77+
echo "LD_LIBRARY_PATH=lib ldd ./bin/vklExamplesCPU"
78+
LD_LIBRARY_PATH=lib ldd ./bin/vklExamplesCPU
7179
./bin/vklExamplesCPU -batch -printStats -spp 50 -framebufferSize 1024 1024
7280
./bin/vklTestsCPU --durations yes
7381

0 commit comments

Comments
 (0)