release: release v0.10.24 (#1027) #590
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: multi-nodes-test | |
on: ["push", "pull_request", "workflow_dispatch"] | |
jobs: | |
multi-nodes-test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup go | |
uses: actions/setup-go@v3 | |
with: | |
go-version: 1.19 | |
- run: make docker.build docker.generate docker.start | |
# fix docker permission issue | |
- run: chmod 777 -R ~/work/node/node/build/devnet | |
- run: sleep 20 | |
# used to debug workflow | |
# - name: Setup tmate session | |
# uses: mxschmitt/action-tmate@v3 | |
- run: make multi-nodes-test |