Skip to content

Update OP Superchain chains #21638

Update OP Superchain chains

Update OP Superchain chains #21638

Workflow file for this run

name: Build tools
on:
merge_group:
types: [checks_requested]
pull_request:
branches: [master]
push:
branches: [master]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
name: Build
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
config: [release]
project:
- DocGen/DocGen.slnx
- Evm/Evm.slnx
- HiveCompare/HiveCompare.slnx
- HiveConsensusWorkflowGenerator/HiveConsensusWorkflowGenerator.slnx
- JitAsm/JitAsm.slnx
- Kute/Kute.slnx
# - SchemaGenerator/SchemaGenerator.slnx
- SendBlobs/SendBlobs.slnx
- StatelessInputGen/StatelessInputGen.slnx
- StatsAnalyzer/StatsAnalyzer.slnx
- TxParser/TxParser.slnx
- RpcTests/RpcTests.slnx
steps:
- name: Check out repository
uses: actions/checkout@v6
- name: Set up .NET
uses: actions/setup-dotnet@v5
- name: Build ${{ matrix.project }}
working-directory: tools
run: dotnet build ./${{ matrix.project }} -c ${{ matrix.config }}