Bump tracing-subscriber from 0.3.19 to 0.3.20 #177
This file contains hidden or 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: Namada Integration | |
| on: | |
| workflow_dispatch: | |
| pull_request: | |
| paths: | |
| - .github/workflows/namada.yaml | |
| - Cargo.toml | |
| - Cargo.lock | |
| - flake.nix | |
| - flake.lock | |
| - ci/** | |
| - e2e/** | |
| - crates/** | |
| - tools/** | |
| env: | |
| CARGO_INCREMENTAL: 0 | |
| CARGO_PROFILE_DEV_DEBUG: 1 | |
| CARGO_PROFILE_RELEASE_DEBUG: 1 | |
| RUST_BACKTRACE: short | |
| CARGO_NET_RETRY: 10 | |
| RUSTUP_MAX_RETRIES: 10 | |
| # Cancel previous runs of this workflow when a new commit is added to the PR, branch or tag | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| cosmos-namada: | |
| runs-on: ubuntu-24.04 | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| chain: | |
| - package: .#gaia20 | |
| command: gaiad,namada | |
| account_prefix: cosmos,'' | |
| native_token: stake,nam | |
| - package: .#osmosis | |
| command: osmosisd,namada | |
| account_prefix: osmo,'' | |
| native_token: stake,nam | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Clone Namada | |
| uses: actions/checkout@v4 | |
| with: | |
| repository: anoma/namada | |
| ref: v101.0.0 | |
| path: namada | |
| - name: Retrieve Namada repository path | |
| id: namada-repo-path | |
| run: | | |
| echo "NAMADA_REPO_PATH=$(pwd)/namada" >> "$GITHUB_ENV" | |
| - name: Install Nix | |
| uses: DeterminateSystems/nix-installer-action@main | |
| with: | |
| extra-conf: | | |
| substituters = https://cache.nixos.org | |
| trusted-public-keys = cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY= | |
| - name: Install Cachix | |
| uses: cachix/cachix-action@v14 | |
| with: | |
| name: cosmos-nix | |
| - uses: actions-rust-lang/setup-rust-toolchain@v1 | |
| - name: Install libudev | |
| run: sudo apt-get update && sudo apt-get -y install libudev-dev | |
| - name: Install Protoc | |
| uses: arduino/setup-protoc@v3 | |
| with: | |
| repo-token: ${{ secrets.GITHUB_TOKEN }} | |
| - uses: actions-rs/cargo@v1 | |
| with: | |
| command: test | |
| args: -p ibc-integration-test --features namada --no-fail-fast --no-run | |
| - name: Install cargo-nextest | |
| run: curl -LsSf https://get.nexte.st/latest/linux | tar zxf - -C ${CARGO_HOME:-~/.cargo}/bin | |
| - name: Download CometBFT | |
| run: | | |
| curl -o cometbft.tar.gz -LO https://github.com/cometbft/cometbft/releases/download/v0.37.15/cometbft_0.37.15_linux_amd64.tar.gz | |
| tar -xvzf cometbft.tar.gz | |
| chmod +x cometbft | |
| mkdir -p $HOME/local/bin | |
| mv cometbft ~/local/bin | |
| - name: Download Namada binaries | |
| env: | |
| OPERATING_SYSTEM: Linux | |
| run: | | |
| release_url=$(curl -s "https://api.github.com/repos/anoma/namada/releases/212279570" | grep "browser_download_url" | cut -d '"' -f 4 | grep "$OPERATING_SYSTEM") | |
| wget "$release_url" | |
| tar -xzvf namada*.tar.gz | |
| cp ./namada*/namadac ~/local/bin/namadac | |
| cp ./namada*/namadan ~/local/bin/namadan | |
| cp ./namada*/namadaw ~/local/bin/namadaw | |
| cp ./namada*/namada ~/local/bin/namada | |
| cp ./namada*/wasm/checksums.json $NAMADA_REPO_PATH/wasm | |
| cp ./namada*/wasm/*.wasm $NAMADA_REPO_PATH/wasm | |
| - name: Update environment path | |
| run: | | |
| echo "${HOME}/local/bin" >> $GITHUB_PATH | |
| - name: Download MASP parameters | |
| run: | | |
| echo $HOME | |
| mkdir -p $HOME/.masp-params | |
| curl -o $HOME/.masp-params/masp-spend.params -L https://github.com/anoma/masp-mpc/releases/download/namada-trusted-setup/masp-spend.params\?raw\=true | |
| curl -o $HOME/.masp-params/masp-output.params -L https://github.com/anoma/masp-mpc/releases/download/namada-trusted-setup/masp-output.params?raw=true | |
| curl -o $HOME/.masp-params/masp-convert.params -L https://github.com/anoma/masp-mpc/releases/download/namada-trusted-setup/masp-convert.params?raw=true | |
| - env: | |
| RUST_LOG: info | |
| RUST_BACKTRACE: 1 | |
| NO_COLOR_LOG: 1 | |
| NEXTEST_RETRIES: 2 | |
| CHAIN_COMMAND_PATHS: ${{ matrix.chain.command }} | |
| ACCOUNT_PREFIXES: ${{ matrix.chain.account_prefix }} | |
| NATIVE_TOKENS: ${{ matrix.chain.native_token }} | |
| run: | | |
| nix shell ${{ matrix.chain.package }} -c \ | |
| cargo nextest run -p ibc-integration-test --no-fail-fast --failure-output final --test-threads=1 \ | |
| --features namada | |
| namada: | |
| timeout-minutes: 240 # Set timeout to 4 hours | |
| runs-on: ubuntu-24.04 | |
| strategy: | |
| fail-fast: false | |
| steps: | |
| - name: Free Disk Space (Ubuntu) | |
| uses: jlumbroso/free-disk-space@main | |
| with: | |
| tool-cache: false | |
| - name: Install prerequisites # required for librocksdb-sys | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get install -y \ | |
| build-essential \ | |
| clang \ | |
| llvm-dev \ | |
| libclang-dev | |
| - uses: actions/checkout@v4 | |
| - name: Clone Namada | |
| uses: actions/checkout@v4 | |
| with: | |
| repository: anoma/namada | |
| ref: v101.0.0 | |
| path: namada | |
| - name: Retrieve Namada repository path | |
| id: namada-repo-path | |
| run: | | |
| echo "NAMADA_REPO_PATH=$(pwd)/namada" >> "$GITHUB_ENV" | |
| - uses: actions-rust-lang/setup-rust-toolchain@v1 | |
| - name: Install libudev | |
| run: sudo apt-get update && sudo apt-get -y install libudev-dev | |
| - name: Install Protoc | |
| uses: arduino/setup-protoc@v3 | |
| with: | |
| repo-token: ${{ secrets.GITHUB_TOKEN }} | |
| - uses: actions-rs/cargo@v1 | |
| with: | |
| command: test | |
| args: -p ibc-integration-test --features namada --no-fail-fast --no-run | |
| - name: Install cargo-nextest | |
| run: curl -LsSf https://get.nexte.st/latest/linux | tar zxf - -C ${CARGO_HOME:-~/.cargo}/bin | |
| - name: Download CometBFT | |
| run: | | |
| curl -o cometbft.tar.gz -LO https://github.com/cometbft/cometbft/releases/download/v0.37.15/cometbft_0.37.15_linux_amd64.tar.gz | |
| tar -xvzf cometbft.tar.gz | |
| mkdir -p ~/local/bin | |
| chmod +x cometbft | |
| mv cometbft ~/local/bin | |
| - name: Download Namada binaries | |
| env: | |
| OPERATING_SYSTEM: Linux | |
| run: | | |
| release_url=$(curl -s "https://api.github.com/repos/anoma/namada/releases/212279570" | grep "browser_download_url" | cut -d '"' -f 4 | grep "$OPERATING_SYSTEM") | |
| wget "$release_url" | |
| tar -xzvf namada*.tar.gz | |
| cp ./namada*/namadac ~/local/bin/namadac | |
| cp ./namada*/namadan ~/local/bin/namadan | |
| cp ./namada*/namadaw ~/local/bin/namadaw | |
| cp ./namada*/namada ~/local/bin/namada | |
| cp ./namada*/wasm/checksums.json $NAMADA_REPO_PATH/wasm | |
| cp ./namada*/wasm/*.wasm $NAMADA_REPO_PATH/wasm | |
| - name: Update environment path | |
| run: | | |
| echo "${HOME}/local/bin" >> $GITHUB_PATH | |
| - name: Download MASP parameters | |
| run: | | |
| echo $HOME | |
| mkdir -p $HOME/.masp-params | |
| curl -o $HOME/.masp-params/masp-spend.params -L https://github.com/anoma/masp-mpc/releases/download/namada-trusted-setup/masp-spend.params\?raw\=true | |
| curl -o $HOME/.masp-params/masp-output.params -L https://github.com/anoma/masp-mpc/releases/download/namada-trusted-setup/masp-output.params?raw=true | |
| curl -o $HOME/.masp-params/masp-convert.params -L https://github.com/anoma/masp-mpc/releases/download/namada-trusted-setup/masp-convert.params?raw=true | |
| - env: | |
| RUST_LOG: info | |
| RUST_BACKTRACE: 1 | |
| NO_COLOR_LOG: 1 | |
| NEXTEST_RETRIES: 2 | |
| CHAIN_COMMAND_PATHS: namada | |
| ACCOUNT_PREFIXES: '' | |
| NATIVE_TOKENS: nam | |
| run: | | |
| taskset -c 0,1 cargo nextest run -p ibc-integration-test --no-fail-fast --failure-output final --test-threads=1 \ | |
| --features namada | |