E2E tests #323
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
on: [push, pull_request] | |
name: E2E tests | |
jobs: | |
open-update-close-channel: | |
strategy: | |
fail-fast: false | |
matrix: | |
workflow: | |
- 3-nodes-transfer | |
- invoice-ops | |
- open-use-close-a-channel | |
release: | |
- "0.116.1" | |
name: e2e test for ${{ matrix.workflow }} | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: Swatinem/rust-cache@v2 | |
- uses: dsherret/rust-toolchain-file@v1 | |
- name: Install dependencies | |
run: | | |
version=${{ matrix.release }} | |
wget "https://github.com/nervosnetwork/ckb/releases/download/v${version}/ckb_v${version}_x86_64-unknown-linux-gnu-portable.tar.gz" | |
tar -xvaf "ckb_v${version}_x86_64-unknown-linux-gnu-portable.tar.gz" | |
sudo mv "ckb_v${version}_x86_64-unknown-linux-gnu-portable"/* /usr/local/bin/ | |
- name: Start nodes | |
run: | | |
# Prebuild the program so that we can run the following script faster | |
cargo build | |
./tests/nodes/start.sh & | |
# Wait for the nodes to start, the initialization takes some time | |
(cd ./tests/bruno; sleep 60; npm exec -- @usebruno/cli run e2e/${{ matrix.workflow }} -r --env test) & | |
# -n means we will exit when any of the background processes exits. | |
# https://www.gnu.org/software/bash/manual/bash.html#index-wait | |
wait -n |