Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
geoff-vball committed Nov 27, 2023
1 parent a810263 commit ded99a3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/abi_bindings_checker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
- name: Setup Go
uses: actions/setup-go@v4
with:
go-version: ${{ env.GO_VERSION }}
go-version: "1.20.8"

- name: Install Foundry
run: ./scripts/install_foundry.sh
Expand Down
4 changes: 3 additions & 1 deletion scripts/install_foundry.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,9 @@ FOUNDRY_VERSION=v0.1.0
curl -L https://raw.githubusercontent.com/ava-labs/foundry/${FOUNDRY_VERSION}/foundryup/install > /tmp/foundry-install-script
sed -i 's/\/ava-labs\/foundry\/master\/foundryup/\/ava-labs\/foundry\/${FOUNDRY_VERSION}\/foundryup/g' /tmp/foundry-install-script
cat /tmp/foundry-install-script | bash
echo "export PATH=\"$PATH:$HOME/.foundry/bin\"">> ~/.bashrc
echo "export PATH=\"$PATH:$HOME/.foundry/bin\"" >> ~/.bashrc
source ~/.bashrc
export PATH=$PATH:$HOME/.foundry/bin:$HOME/.cargo/bin
which forge
which foundryup
foundryup --version ${FOUNDRY_VERSION}

0 comments on commit ded99a3

Please sign in to comment.