ca050053bf
I noticed that some of our workflows aren't getting cancelled when a new one has been triggered, so we ended up having a long queue in our CI when multiple changes are triggered in a short period.
Looking at the comment here, I noticed the list of workflow IDs are outdated and no longer exist, and some new ones are missing:
dfcb3363c7/.github/workflows/cancel-previous-runs.yml (L12-L13)
I attempted to update these, and came across this comment on the [`cancel-workflow-action`](https://github.com/styfle/cancel-workflow-action) repo:
> You probably don't need to install this custom action.
>
> Instead, use the native [concurrency](https://github.blog/changelog/2021-04-19-github-actions-limit-workflow-run-or-job-concurrency/) property to cancel workflows, for example:
So I thought instead of updating the workflow and maintaining the workflow IDs, perhaps we can try experimenting the [native `concurrency` property](https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#concurrency).
86 lines
2.5 KiB
YAML
86 lines
2.5 KiB
YAML
# Test that local testnet starts successfully.
|
|
name: local testnet
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- unstable
|
|
pull_request:
|
|
merge_group:
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
run-local-testnet:
|
|
strategy:
|
|
matrix:
|
|
os:
|
|
- ubuntu-22.04
|
|
- macos-12
|
|
runs-on: ${{ matrix.os }}
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
|
|
- name: Get latest version of stable Rust
|
|
run: rustup update stable
|
|
- 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
|
|
# https://github.com/actions/cache/blob/main/examples.md#rust---cargo
|
|
- uses: actions/cache@v3
|
|
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
|
|
run: ./start_local_testnet.sh genesis.json && sleep 60
|
|
working-directory: scripts/local_testnet
|
|
|
|
- name: Print logs
|
|
run: ./dump_logs.sh
|
|
working-directory: scripts/local_testnet
|
|
|
|
- name: Stop local testnet
|
|
run: ./stop_local_testnet.sh
|
|
working-directory: scripts/local_testnet
|
|
|
|
- name: Clean-up testnet
|
|
run: ./clean.sh
|
|
working-directory: scripts/local_testnet
|
|
|
|
- name: Start local testnet with blinded block production
|
|
run: ./start_local_testnet.sh -p genesis.json && sleep 60
|
|
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
|
|
working-directory: scripts/local_testnet |