Skip to content

Commit

Permalink
Update foundry install in workflow (#20700)
Browse files Browse the repository at this point in the history
## Description 

Fix Foundry installation workflow

---

## Release notes

Check each box that your changes affect. If none of the boxes relate to
your changes, release notes aren't required.

For each box you select, include information after the relevant heading
that describes the impact of your changes that a user might notice and
any actions they must take to implement updates.

- [ ] Protocol: 
- [ ] Nodes (Validators and Full nodes): 
- [ ] Indexer: 
- [ ] JSON-RPC: 
- [ ] GraphQL: 
- [ ] CLI: 
- [ ] Rust SDK:
- [ ] REST API:
  • Loading branch information
Bridgerz authored Dec 19, 2024
1 parent 07006be commit 1921cb4
Showing 1 changed file with 10 additions and 4 deletions.
14 changes: 10 additions & 4 deletions .github/workflows/bridge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -85,10 +85,13 @@ jobs:
uses: pierotofy/set-swap-space@master
with:
swap-size-gb: 256
- name: Install Foundry
- name: Install Foundryup
run: |
curl -L https://foundry.paradigm.xyz | { cat; echo '$FOUNDRY_BIN_DIR/foundryup --version nightly-fdfaafd629faa2eea3362a8370eef7c1f8074710'; } | bash
curl -L https://foundry.paradigm.xyz | { cat; echo '$FOUNDRY_BIN_DIR/foundryup; } | bash
echo "$HOME/.config/.foundry/bin" >> $GITHUB_PATH
- name: Install Foundry
run: |
foundryup -i nightly-fdfaafd629faa2eea3362a8370eef7c1f8074710
- name: Install Foundry Dependencies
working-directory: bridge/evm
run: |
Expand All @@ -109,10 +112,13 @@ jobs:
runs-on: [ ubuntu-ghcloud ]
steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # Pin v4.1.1
- name: Install Foundry
- name: Install Foundryup
run: |
curl -L https://foundry.paradigm.xyz | { cat; echo '$FOUNDRY_BIN_DIR/foundryup --version nightly-fdfaafd629faa2eea3362a8370eef7c1f8074710'; } | bash
curl -L https://foundry.paradigm.xyz | { cat; echo '$FOUNDRY_BIN_DIR/foundryup; } | bash
echo "$HOME/.config/.foundry/bin" >> $GITHUB_PATH
- name: Install Foundry
run: |
foundryup -i nightly-fdfaafd629faa2eea3362a8370eef7c1f8074710
- name: Install Foundry Dependencies
working-directory: bridge/evm
run: |
Expand Down

0 comments on commit 1921cb4

Please sign in to comment.