Skip to content

Commit 3fe6f5b

Browse files
Transurgeonclaude
andcommitted
fix: install OpenBLAS in release CI for Ubuntu
The release workflow was missing the libopenblas-dev install step that cmake.yml already has, causing BLAS-dependent builds to fail on Linux. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent beca00d commit 3fe6f5b

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

.github/workflows/release.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,10 @@ jobs:
1515
steps:
1616
- uses: actions/checkout@v4
1717

18+
- name: Install BLAS (Ubuntu)
19+
if: runner.os == 'Linux'
20+
run: sudo apt-get update && sudo apt-get install -y libopenblas-dev
21+
1822
- name: Configure CMake
1923
run: cmake -B build -S . -DCMAKE_BUILD_TYPE=Release
2024

0 commit comments

Comments
 (0)