Skip to content

Commit a4e1414

Browse files
committed
- added pcre installation to the runners as it appears to have been removed by GitHub from the defult Linux runners
1 parent dd4168d commit a4e1414

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/generateDocumentation.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,11 @@ jobs:
2020
steps:
2121
- name: Checkout
2222
uses: actions/checkout@v4
23-
- name: Install BLAS
24-
run: sudo apt-get install libopenblas-dev
23+
- name: Install BLAS and PCRE
24+
run: sudo apt-get install -y libopenblas-dev libpcre3-dev
2525
- uses: jiro4989/setup-nim-action@v2
2626
with:
27-
nim-version: 'stable'
27+
nim-version: '2.0.x'
2828
repo-token: ${{ secrets.GITHUB_TOKEN }}
2929
- run: nimble refresh
3030
- run: nimble install

.github/workflows/testingOnPush_Linux.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +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
24+
- name: Install BLAS and PCRE
25+
run: sudo apt-get install -y libopenblas-dev libpcre3-dev
2626
- uses: jiro4989/setup-nim-action@v2
2727
with:
2828
nim-version: ${{ matrix.nim }}

0 commit comments

Comments
 (0)