Skip to content

Commit

Permalink
installing solc via solc-select
Browse files Browse the repository at this point in the history
  • Loading branch information
urikirsh committed Feb 12, 2024
1 parent e8d6e17 commit 6d3e4ba
Showing 1 changed file with 9 additions and 6 deletions.
15 changes: 9 additions & 6 deletions .github/workflows/certora.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,13 +36,16 @@ jobs:
# Install the appropriate versions of solc
- name: Install solc
run: |
wget https://github.com/ethereum/solidity/releases/download/v0.8.21/solc-static-linux
sudo mv solc-static-linux /usr/local/bin/solc8.21
chmod +x /usr/local/bin/solc8.21
pip3 install solc-select
solc-select intall 0.8.21
solc-select use 0.8.21
# wget https://github.com/ethereum/solidity/releases/download/v0.8.21/solc-static-linux
# sudo mv solc-static-linux /usr/local/bin/solc8.21
# chmod +x /usr/local/bin/solc8.21
wget https://github.com/ethereum/solidity/releases/download/v0.8.17/solc-static-linux
sudo mv solc-static-linux /usr/local/bin/solc8.17
chmod +x /usr/local/bin/solc8.17
# wget https://github.com/ethereum/solidity/releases/download/v0.8.17/solc-static-linux
# sudo mv solc-static-linux /usr/local/bin/solc8.17
# chmod +x /usr/local/bin/solc8.17
# Do the actual verification. The `run` field could be simply
#
Expand Down

0 comments on commit 6d3e4ba

Please sign in to comment.