We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f741128 commit 6ebf723Copy full SHA for 6ebf723
1 file changed
.github/workflows/watcher-go.yml
@@ -9,6 +9,11 @@ on:
9
permissions:
10
contents: read
11
12
+env:
13
+ DYLD_LIBRARY_PATH: /usr/local/lib
14
+ CGO_CFLAGS: -I/usr/local/include
15
+ CGO_LDFLAGS: -L/usr/local/lib
16
+
17
jobs:
18
test:
19
runs-on: ${{ matrix.os }}
@@ -28,6 +33,8 @@ jobs:
28
33
cmake -S . -B build -DCMAKE_BUILD_TYPE=Release
29
34
cmake --build build
30
35
sudo cmake --install build
36
+ - if: runner.os == 'ubuntu-latest'
37
+ run: ldconfig
31
38
- run: go test -race
32
39
working-directory: watcher-go
40
- uses: golangci/golangci-lint-action@v9
0 commit comments