Skip to content

Commit

Permalink
[fix] sudo in github actions for build tool installs
Browse files Browse the repository at this point in the history
  • Loading branch information
albarrentine committed Jul 6, 2023
1 parent 2f20c93 commit 5669372
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,13 @@ jobs:
- name: Install Dependencies Linux
if: matrix.os == 'ubuntu-latest'
run: |
apt-get update -y
apt-get install curl autoconf automake libtool pkg-config
sudo apt-get update -y
sudo apt-get install curl autoconf automake libtool pkg-config
- name: Install Dependencies MacOS
if: runner.os == 'macOS'
run: |
brew update
brew install curl autoconf automake libtool pkg-config
sudo brew update
sudo brew install curl autoconf automake libtool pkg-config
- name: Build
env:
LIBPOSTAL_DATA_DIR: ${GITHUB_WORKSPACE}/data
Expand Down

0 comments on commit 5669372

Please sign in to comment.