Skip to content

Commit

Permalink
gh/action/triggerable_sync: add CometBFT bin
Browse files Browse the repository at this point in the history
  • Loading branch information
tzemanovic committed Feb 6, 2024
1 parent 0ffa992 commit 315fbb4
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/triggerable_sync.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,10 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest]
nightly_version: [nightly-2023-06-01]
mold_version: [2.4.0]
comet_bft: [0.37.2]
name: ["Run chain sync test"]
nightly_version: [nightly-2023-06-01]
timeout: [360]

steps:
Expand Down Expand Up @@ -96,6 +97,11 @@ jobs:
ZIP_FILENAME: "${{ inputs.binaries_name }}.zip"
AWS_ACCESS_KEY_ID: ${{ secrets.MINIO_ACCESS_KEY }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.MINIO_SECRET_KEY }}
- name: Download CometBFT
run: |
curl -o cometbft.tar.gz -LO https://github.com/cometbft/cometbft/releases/download/v${{ matrix.comet_bft }}/cometbft_${{ matrix.comet_bft }}_linux_amd64.tar.gz
tar -xvzf cometbft.tar.gz
mv cometbft /usr/local/bin
- name: Run the test
run: cargo +${{ matrix.nightly_version }}
test e2e::ledger_tests::test_sync_chain -- --exact --ignored
Expand Down

0 comments on commit 315fbb4

Please sign in to comment.