Skip to content

Commit

Permalink
Use sudo for Linux dep installs
Browse files Browse the repository at this point in the history
  • Loading branch information
lazamar committed Nov 29, 2024
1 parent 24ec6bc commit 37016f0
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,11 @@ jobs:
steps:
- uses: actions/checkout@v4

- name: Install system dependencies Linux
if: runner.os == 'Linux'
run: |
sudp apt-get install pcre-dev
- name: Setup - PostgreSQL
id: postgres-setup
uses: ikalnytskyi/action-setup-postgres@v7
Expand All @@ -43,11 +48,6 @@ jobs:
cabal-version: 'latest'
cabal-update: true

- name: Install system dependencies Linux
if: runner.os == 'Linux'
run: |
apt-get install pcre-dev
- name: Build - Configure
run: |
cabal configure --enable-tests --enable-benchmarks --disable-documentation
Expand Down

0 comments on commit 37016f0

Please sign in to comment.