Skip to content

Commit 78bc8f5

Browse files
committed
fix8
1 parent 0f1f825 commit 78bc8f5

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

.github/workflows/build-and-test.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -110,10 +110,13 @@ jobs:
110110
- name: build cavacore test application
111111
run: gcc -I include -c -g cavacore_test.c
112112
- name: link cavacore test application
113-
run: gcc -I include -o cavacore_test cavacore_test.c -L./build -lcava -lm -lfftw3
114-
env: LD_LIBRARY_PATH: ./build:$LD_LIBRARY_PATH
113+
run: |
114+
gcc -I include -o cavacore_test cavacore_test.c -L./build -lcava -lm -lfftw3
115+
env:
116+
LD_LIBRARY_PATH: ./build:$LD_LIBRARY_PATH
115117
- name: run cavacore test application
116-
run: ./cavacore_test
118+
run: |
119+
LD_LIBRARY_PATH=./build:$LD_LIBRARY_PATH ./cavacore_test
117120
118121
build-macos:
119122
runs-on: macos-latest

0 commit comments

Comments
 (0)