Skip to content

Commit 075223c

Browse files
committed
try again
1 parent 3e78b68 commit 075223c

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

.github/workflows/test.yaml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,12 @@ jobs:
6666
packages: ffmpeg libblas3
6767
version: 1.0
6868

69+
- name: Fix BLAS library symlinks
70+
run: |
71+
# Create symlinks so libblas.so.3 is in a standard search path
72+
ln -sf /usr/lib/x86_64-linux-gnu/blas/libblas.so.3 /usr/lib/x86_64-linux-gnu/libblas.so.3
73+
ldconfig
74+
6975
- name: go fmt
7076
run: |
7177
go fmt ./...
@@ -113,6 +119,12 @@ jobs:
113119
packages: ffmpeg libblas3
114120
version: 1.0
115121

122+
- name: Fix BLAS library symlinks
123+
run: |
124+
# Create symlinks so libblas.so.3 is in a standard search path
125+
ln -sf /usr/lib/x86_64-linux-gnu/blas/libblas.so.3 /usr/lib/x86_64-linux-gnu/libblas.so.3
126+
ldconfig
127+
116128
- name: Run cucumber tests
117129
run: |
118130
go install github.com/cucumber/godog/cmd/godog@latest

0 commit comments

Comments
 (0)