Skip to content

Commit dd4168d

Browse files
committed
- added BLAS installation to the runners as it appears to have been removed by GitHub from the defult Linux runners; removed devel testing from Windows runner (not suported yet by the step used to set up nim
1 parent 49fbc56 commit dd4168d

File tree

3 files changed

+4
-1
lines changed

3 files changed

+4
-1
lines changed

.github/workflows/generateDocumentation.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@ jobs:
2020
steps:
2121
- name: Checkout
2222
uses: actions/checkout@v4
23+
- name: Install BLAS
24+
run: sudo apt-get install libopenblas-dev
2325
- uses: jiro4989/setup-nim-action@v2
2426
with:
2527
nim-version: 'stable'

.github/workflows/testingOnPush_Linux.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,8 @@ jobs:
2121
steps:
2222
- name: Checkout
2323
uses: actions/checkout@v4
24+
- name: Install BLAS
25+
run: sudo apt-get install libopenblas-dev
2426
- uses: jiro4989/setup-nim-action@v2
2527
with:
2628
nim-version: ${{ matrix.nim }}

.github/workflows/testingOnPush_Windows.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ jobs:
1616
nim:
1717
- '2.0.x'
1818
- 'stable'
19-
- 'devel'
2019
name: Nim ${{ matrix.nim }} Test
2120
steps:
2221
- name: Checkout

0 commit comments

Comments
 (0)