Skip to content

Commit

Permalink
install gaiad for e2e tests
Browse files Browse the repository at this point in the history
  • Loading branch information
yito88 committed Apr 25, 2024
1 parent 0da7c4a commit 2b9c129
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -675,6 +675,12 @@ jobs:
curl -o hermes.zip -LO https://github.com/heliaxdev/hermes/releases/download/v${HERMES_VERSION}/hermes-v${HERMES_VERSION}-x86_64-unknown-linux-gnu.zip
unzip hermes.zip
mv hermes /usr/local/bin
- name: Download Gaia
run: |
GAIA_VERSION=$(cat .github/workflows/scripts/gaia.txt)
echo "Using gaiad version: ${GAIA_VERSION}"
curl -o gaiad -LO https://github.com/cosmos/gaia/releases/download/v${GAIA_VERSION}/gaiad-v${GAIA_VERSION}-linux-amd64
mv gaiad /usr/local/bin
- name: Change permissions
run: |
chmod +x target/release/namada
Expand All @@ -684,6 +690,7 @@ jobs:
chmod +x target/release/namadar
chmod +x /usr/local/bin/cometbft
chmod +x /usr/local/bin/hermes
chmod +x /usr/local/bin/gaiad
- name: Run e2e test
run: python3 .github/workflows/scripts/schedule-e2e.py
env:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/scripts/gaia.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
15.2.0

0 comments on commit 2b9c129

Please sign in to comment.