Fix disposing of a pooled array #11506
This file contains hidden or 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.slnx | |
| - Evm/Evm.slnx | |
| - HiveCompare/HiveCompare.slnx | |
| - HiveConsensusWorkflowGenerator/HiveConsensusWorkflowGenerator.slnx | |
| - Kute/Kute.slnx | |
| # - SchemaGenerator/SchemaGenerator.slnx | |
| - SendBlobs/SendBlobs.slnx | |
| - StatelessExecution/StatelessExecution.slnx | |
| - TxParser/TxParser.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 }} |