Skip to content

Wait for background JumpDestinationAnalysis if in progress #6698

Wait for background JumpDestinationAnalysis if in progress

Wait for background JumpDestinationAnalysis if in progress #6698

Workflow file for this run

name: Build solutions
on:
pull_request:
branches: [master]
push:
branches: [master]
jobs:
build:
name: Build
runs-on: ubuntu-latest
strategy:
matrix:
config: [release, debug]
solution: [Nethermind, EthereumTests, Benchmarks]
steps:
- name: Check out repository
uses: actions/checkout@v4
with:
submodules: ${{ matrix.solution == 'EthereumTests' }}
- name: Set up .NET
uses: actions/setup-dotnet@v4
- name: Build ${{ matrix.solution }}.sln
run: dotnet build src/Nethermind/${{ matrix.solution }}.sln -c ${{ matrix.config }}