Skip to content

Commit

Permalink
Use sudo for apt-get
Browse files Browse the repository at this point in the history
  • Loading branch information
Ouziel committed Mar 5, 2024
1 parent 4a10427 commit 40e6eef
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build_and_test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -110,8 +110,6 @@ jobs:
- name: Install leveldb
run: |
brew install leveldb
export LIBRARY_PATH="$LIBRARY_PATH:$(brew --prefix)/lib"
export CPATH="$CPATH:$(brew --prefix)/include"
- name: Install pytest and build module
run: |
Expand All @@ -127,6 +125,8 @@ jobs:

- name: Build counterparty-lib
run: |
export LIBRARY_PATH="$LIBRARY_PATH:$(brew --prefix)/lib"
export CPATH="$CPATH:$(brew --prefix)/include"
cd counterparty-lib && python -m build --out ../dist
- name: Build counterparty-cli
Expand Down Expand Up @@ -175,7 +175,7 @@ jobs:

- name: Install leveldb
run: |
apt-get install -y libleveldb-dev
sudo apt-get install -y libleveldb-dev
- name: Install pytest and build module
run: |
Expand Down

0 comments on commit 40e6eef

Please sign in to comment.