Skip to content

Commit

Permalink
Use sudo for self-hosted runners
Browse files Browse the repository at this point in the history
  • Loading branch information
paulhauner committed Jul 16, 2023
1 parent c7862f9 commit d92bf62
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/test-suite.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,8 +67,8 @@ jobs:
- name: Install apt dependencies
if: env.SELF_HOSTED_RUNNERS
run: |
apt-get update
apt-get install libpq-dev # Required for Postgres in ./watch.
sudo apt-get update
sudo 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 @@ -160,8 +160,8 @@ jobs:
- name: Install apt dependencies
if: env.SELF_HOSTED_RUNNERS
run: |
apt-get update
apt-get install libpq-dev # Required for Postgres in ./watch.
sudo apt-get update
sudo 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 d92bf62

Please sign in to comment.