Skip to content

feat: Support Witness Generation #20188

feat: Support Witness Generation

feat: Support Witness Generation #20188

name: Build solutions
on:
pull_request:
branches: [master]
push:
branches: [master]
merge_group:
jobs:
build:
name: Build
runs-on: ubuntu-latest
strategy:
matrix:
config: [release, debug]
solution: [Nethermind, EthereumTests, Benchmarks]
steps:
- name: Free up disk space
uses: jlumbroso/[email protected]
with:
large-packages: false
tool-cache: false
- name: Check out repository
uses: actions/checkout@v6
with:
submodules: ${{ matrix.solution == 'EthereumTests' }}
- name: Set up .NET
uses: actions/setup-dotnet@v5
with:
cache: true
cache-dependency-path: src/Nethermind/Nethermind.Runner/packages.lock.json
- name: Install dependencies
run: dotnet restore src/Nethermind/${{ matrix.solution }}.slnx --locked-mode
- name: Build ${{ matrix.solution }}.slnx
run: dotnet build src/Nethermind/${{ matrix.solution }}.slnx -c ${{ matrix.config }} --no-restore