Skip to content

Commit

Permalink
Fix CI: use super user for installing souffle
Browse files Browse the repository at this point in the history
  • Loading branch information
blitz-1306 committed Jan 31, 2024
1 parent 01d0c59 commit de28a7f
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,21 +30,21 @@ jobs:
node-version: ${{ matrix.node-version }}
cache: "npm"

# See https://souffle-lang.github.io/source
# See https://github.com/souffle-lang/souffle/releases
- name: Install Soufflé
run: |
wget https://github.com/souffle-lang/souffle/releases/download/2.4.1/x86_64-ubuntu-2004-souffle-2.4.1-Linux.deb -O /tmp/souffle.deb
dpkg -i /tmp/souffle.deb
souffle --version
- name: Install and lint
run: |
npm install
npm link
npm run lint
sol-ast-compile --version
# See https://souffle-lang.github.io/source
# See https://github.com/souffle-lang/souffle/releases
- name: Install Soufflé
run: |
wget https://github.com/souffle-lang/souffle/releases/download/2.4.1/x86_64-ubuntu-2004-souffle-2.4.1-Linux.deb -O /tmp/souffle.deb
sudo dpkg -i /tmp/souffle.deb
souffle --version
# See https://github.com/ethereum/solc-bin
# See https://binaries.soliditylang.org/
- name: Pre-download compilers from historical builds archive
Expand Down

0 comments on commit de28a7f

Please sign in to comment.