Make chainspec extendable by plugins #714
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: Build tools | |
on: | |
merge_group: | |
types: [checks_requested] | |
pull_request: | |
branches: [master] | |
push: | |
branches: [master] | |
jobs: | |
build: | |
name: Build | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
config: [release] | |
project: | |
- DocGen/DocGen.sln | |
- HiveCompare/HiveCompare.sln | |
- HiveConsensusWorkflowGenerator/HiveConsensusWorkflowGenerator.csproj | |
- Nethermind.Tools.Kute/Nethermind.Tools.Kute.csproj | |
- SendBlobs/SendBlobs.sln | |
- TxParser/TxParser.csproj | |
steps: | |
- name: Check out repository | |
uses: actions/checkout@v4 | |
- name: Set up .NET | |
uses: actions/setup-dotnet@v4 | |
- name: Build ${{ matrix.project }} | |
working-directory: tools | |
run: dotnet build ./${{ matrix.project }} -c ${{ matrix.config }} |