Skip to content

Commit

Permalink
- added pcre installation to the runners as it appears to have been…
Browse files Browse the repository at this point in the history
… removed by GitHub from the defult Linux runners
  • Loading branch information
amkrajewski committed Dec 25, 2024
1 parent dd4168d commit a4e1414
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/generateDocumentation.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,11 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install BLAS
run: sudo apt-get install libopenblas-dev
- name: Install BLAS and PCRE
run: sudo apt-get install -y libopenblas-dev libpcre3-dev
- uses: jiro4989/setup-nim-action@v2
with:
nim-version: 'stable'
nim-version: '2.0.x'
repo-token: ${{ secrets.GITHUB_TOKEN }}
- run: nimble refresh
- run: nimble install
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/testingOnPush_Linux.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install BLAS
run: sudo apt-get install libopenblas-dev
- name: Install BLAS and PCRE
run: sudo apt-get install -y libopenblas-dev libpcre3-dev
- uses: jiro4989/setup-nim-action@v2
with:
nim-version: ${{ matrix.nim }}
Expand Down

0 comments on commit a4e1414

Please sign in to comment.