chore: move binary embedding into celestia-app (instead of nova) #32
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: test-multiplexer | |
on: | |
workflow_dispatch: | |
pull_request: | |
jobs: | |
test-multiplexer: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Celestia-App repository | |
uses: actions/checkout@v4 | |
with: | |
repository: 01builders/celestia-app | |
# ref: sdk-v0.50.x # TODO: remove once merged to main. | |
ref: cian/move-binaries-to-celestia-app # TODO: testing for workflow on this PR. | |
- name: Download v3 Celestia Binary | |
run: curl -oL internal/embedding/celestia-app_Linux_x86_64.tar.gz https://github.com/celestiaorg/celestia-app/releases/download/v3.4.0/celestia-app_Linux_x86_64.tar.gz | |
- name: Build Celestia-App | |
run: | | |
make build | |
chmod +x build/celestia-appd | |
sudo mv build/celestia-appd /usr/local/bin/celestia-appd | |
- name: Verify Binary Installation | |
run: | | |
which celestia-appd | |
celestia-appd version | |
- name: Run Multiplexer tests | |
run: make test-multi-plexer |