Skip to content

Commit

Permalink
CICD: use sudo for Ubuntu package installation
Browse files Browse the repository at this point in the history
Github Actions VMs have passwordless sudo, so we'll need to add that
to the apt install line
  • Loading branch information
lckarssen committed Mar 13, 2024
1 parent c75f35d commit b999691
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: apt install -y build-essential
- run: sudo apt install -y build-essential
- run: autoreconf -i
- run: ./configure
- run: make

0 comments on commit b999691

Please sign in to comment.