Use function pointers instead of delegates to clear object pool in C#9. #301
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
# This builds in all configurations and runtimes so we will catch any compilation errors prior to releasing with the automatic publish-nuget action. | |
name: CsProj Builds | |
on: [pull_request] | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | |
cancel-in-progress: true | |
jobs: | |
csproj-build: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
config: [Release, Release_NoProgress, Debug, Debug_NoProgress] | |
developerMode: [true, false] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Setup .NET Core SDK | |
uses: actions/setup-dotnet@v2 | |
with: | |
global-json-file: global.json | |
- name: Build | |
run: | | |
dotnet build -c ${{ matrix.config }} -p:DeveloperMode=${{ matrix.developerMode }} | |
timeout-minutes: 10 |