Skip to content

Commit

Permalink
Remove sudo when installing libpq-dev
Browse files Browse the repository at this point in the history
  • Loading branch information
paulhauner committed Jul 14, 2023
1 parent 9e5e0f2 commit 8bc4e99
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/test-suite.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,9 +63,10 @@ jobs:
- name: Install anvil
run: cargo install --git https://github.com/foundry-rs/foundry --locked anvil
- name: Install apt dependencies
if: env.SELF_HOSTED_RUNNERS
run: |
sudo apt-get update
sudo apt-get install libpq-dev # Required for Postgres in ./watch.
apt-get update
apt-get install libpq-dev # Required for Postgres in ./watch.
- name: Run tests in release
run: make test-release
release-tests-windows:
Expand Down Expand Up @@ -144,9 +145,10 @@ jobs:
- name: Install anvil
run: cargo install --git https://github.com/foundry-rs/foundry --locked anvil
- name: Install apt dependencies
if: env.SELF_HOSTED_RUNNERS
run: |
sudo apt-get update
sudo apt-get install libpq-dev # Required for Postgres in ./watch.
apt-get update
apt-get install libpq-dev # Required for Postgres in ./watch.
- name: Run tests in debug
run: make test-debug
state-transition-vectors-ubuntu:
Expand Down

0 comments on commit 8bc4e99

Please sign in to comment.