2022-01-26 23:14:20 +00:00
|
|
|
# Test that local testnet starts successfully.
|
|
|
|
name: local testnet
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- unstable
|
|
|
|
pull_request:
|
2023-05-02 01:59:51 +00:00
|
|
|
merge_group:
|
2022-01-26 23:14:20 +00:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
run-local-testnet:
|
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
os:
|
2022-11-13 22:40:44 +00:00
|
|
|
- ubuntu-22.04
|
|
|
|
- macos-12
|
2022-01-26 23:14:20 +00:00
|
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
steps:
|
2022-11-13 22:40:44 +00:00
|
|
|
- uses: actions/checkout@v3
|
2022-01-26 23:14:20 +00:00
|
|
|
|
2022-07-15 07:31:19 +00:00
|
|
|
- name: Get latest version of stable Rust
|
|
|
|
run: rustup update stable
|
2022-09-29 01:50:11 +00:00
|
|
|
- name: Install Protoc
|
2022-12-20 01:34:52 +00:00
|
|
|
uses: arduino/setup-protoc@e52d9eb8f7b63115df1ac544a1376fdbf5a39612
|
2022-10-03 23:09:25 +00:00
|
|
|
with:
|
|
|
|
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
2023-05-17 05:51:54 +00:00
|
|
|
- name: Install geth (ubuntu)
|
|
|
|
if: matrix.os == 'ubuntu-22.04'
|
|
|
|
run: |
|
|
|
|
sudo add-apt-repository -y ppa:ethereum/ethereum
|
|
|
|
sudo apt-get update
|
|
|
|
sudo apt-get install ethereum
|
|
|
|
- name: Install geth (mac)
|
|
|
|
if: matrix.os == 'macos-12'
|
|
|
|
run: |
|
|
|
|
brew tap ethereum/ethereum
|
|
|
|
brew install ethereum
|
|
|
|
- name: Install GNU sed & GNU grep
|
|
|
|
if: matrix.os == 'macos-12'
|
|
|
|
run: |
|
|
|
|
brew install gnu-sed grep
|
|
|
|
echo "$(brew --prefix)/opt/gnu-sed/libexec/gnubin" >> $GITHUB_PATH
|
|
|
|
echo "$(brew --prefix)/opt/grep/libexec/gnubin" >> $GITHUB_PATH
|
2022-01-26 23:14:20 +00:00
|
|
|
# https://github.com/actions/cache/blob/main/examples.md#rust---cargo
|
2022-11-13 22:40:44 +00:00
|
|
|
- uses: actions/cache@v3
|
2022-01-26 23:14:20 +00:00
|
|
|
id: cache-cargo
|
|
|
|
with:
|
|
|
|
path: |
|
|
|
|
~/.cargo/bin/
|
|
|
|
~/.cargo/registry/index/
|
|
|
|
~/.cargo/registry/cache/
|
|
|
|
~/.cargo/git/db/
|
|
|
|
target/
|
|
|
|
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
|
|
|
|
|
|
|
|
- name: Install lighthouse
|
|
|
|
run: make && make install-lcli
|
|
|
|
|
|
|
|
- name: Start local testnet
|
2023-05-17 05:51:54 +00:00
|
|
|
run: ./start_local_testnet.sh genesis.json && sleep 60
|
2022-01-26 23:14:20 +00:00
|
|
|
working-directory: scripts/local_testnet
|
|
|
|
|
|
|
|
- name: Print logs
|
2022-07-30 00:22:37 +00:00
|
|
|
run: ./dump_logs.sh
|
2022-01-26 23:14:20 +00:00
|
|
|
working-directory: scripts/local_testnet
|
|
|
|
|
|
|
|
- name: Stop local testnet
|
|
|
|
run: ./stop_local_testnet.sh
|
|
|
|
working-directory: scripts/local_testnet
|
2022-07-30 00:22:37 +00:00
|
|
|
|
|
|
|
- name: Clean-up testnet
|
|
|
|
run: ./clean.sh
|
|
|
|
working-directory: scripts/local_testnet
|
|
|
|
|
|
|
|
- name: Start local testnet with blinded block production
|
2023-05-17 05:51:54 +00:00
|
|
|
run: ./start_local_testnet.sh -p genesis.json && sleep 60
|
2022-07-30 00:22:37 +00:00
|
|
|
working-directory: scripts/local_testnet
|
|
|
|
|
|
|
|
- name: Print logs for blinded block testnet
|
|
|
|
run: ./dump_logs.sh
|
|
|
|
working-directory: scripts/local_testnet
|
|
|
|
|
|
|
|
- name: Stop local testnet with blinded block production
|
|
|
|
run: ./stop_local_testnet.sh
|
2023-05-17 05:51:54 +00:00
|
|
|
working-directory: scripts/local_testnet
|