We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0f1f825 commit 78bc8f5Copy full SHA for 78bc8f5
.github/workflows/build-and-test.yml
@@ -110,10 +110,13 @@ jobs:
110
- name: build cavacore test application
111
run: gcc -I include -c -g cavacore_test.c
112
- 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
+ run: |
+ gcc -I include -o cavacore_test cavacore_test.c -L./build -lcava -lm -lfftw3
115
+ env:
116
+ LD_LIBRARY_PATH: ./build:$LD_LIBRARY_PATH
117
- name: run cavacore test application
- run: ./cavacore_test
118
119
+ LD_LIBRARY_PATH=./build:$LD_LIBRARY_PATH ./cavacore_test
120
121
build-macos:
122
runs-on: macos-latest
0 commit comments