File tree Expand file tree Collapse file tree 1 file changed +9
-1
lines changed Expand file tree Collapse file tree 1 file changed +9
-1
lines changed Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments