Additional tests for relayed V3 #65
Workflow file for this run
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: Check with Mesh CLI (localnet) | |
| on: | |
| pull_request: | |
| workflow_dispatch: | |
| jobs: | |
| test-localnet: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/setup-python@v5 | |
| with: | |
| python-version: 3.11 | |
| - uses: actions/checkout@v4 | |
| - name: Install dependencies | |
| run: | | |
| pipx install multiversx-sdk-cli --force | |
| pip install -r ./requirements-dev.txt | |
| curl -sSfL https://raw.githubusercontent.com/coinbase/mesh-cli/master/scripts/install.sh | sh -s -- -b "$HOME/.local/bin" | |
| echo "$HOME/.local/bin" >> $GITHUB_PATH | |
| - name: Build | |
| run: | | |
| cd $GITHUB_WORKSPACE/cmd/rosetta && go build . | |
| cd $GITHUB_WORKSPACE/systemtests && go build ./proxyToObserverAdapter.go | |
| - name: Set up MultiversX localnet | |
| run: | | |
| mkdir -p ~/localnet && cd ~/localnet | |
| mxpy localnet setup --configfile=${GITHUB_WORKSPACE}/systemtests/localnet.toml | |
| # Start the localnet and store the PID | |
| nohup mxpy localnet start --configfile=${GITHUB_WORKSPACE}/systemtests/localnet.toml > localnet.log 2>&1 & echo $! > localnet.pid | |
| sleep 60 # Allow time for the localnet to start | |
| - name: Generate testdata (setup) | |
| run: | | |
| python3 ./systemtests/generate_testdata_on_network.py setup --network=localnet | |
| env: | |
| PYTHONPATH: . | |
| - name: Generate testdata (run) | |
| run: | | |
| python3 ./systemtests/generate_testdata_on_network.py run --network=localnet | |
| # Allow the blocks that hold the sample transactions to become "final". | |
| sleep 30 | |
| env: | |
| PYTHONPATH: . | |
| - name: check:data | |
| run: | | |
| python3 ./systemtests/check_with_mesh_cli.py --mode=data --network=localnet --shard=0 | |
| env: | |
| PYTHONPATH: . | |
| - name: Stop MultiversX localnet | |
| if: success() || failure() | |
| run: | | |
| kill $(cat localnet.pid) || echo "Testnet already stopped" |