Skip to content

Fix concurrency bug in AssemblyHelper #10

Fix concurrency bug in AssemblyHelper

Fix concurrency bug in AssemblyHelper #10

Workflow file for this run

name: PR Build
on:
- pull_request
- workflow_dispatch
jobs:
build:
name: "Build"
runs-on: windows-2022
env:
DOTNET_NOLOGO: true
steps:
- name: Clone source
uses: actions/checkout@v3
with:
fetch-depth: 0
submodules: true
- name: Add MSBuild to PATH
uses: microsoft/setup-msbuild@v1
- name: Replace global.json
run: cp .github/workflows/.global.json global.json
shell: bash
- name: Install .NET SDK
uses: actions/setup-dotnet@v3
with:
dotnet-version: |
6.0.x
8.0.x
- name: Get .NET information
run: dotnet --info
- name: "Build target: BuildAll"
run: dotnet run --project tools/builder --no-launch-profile -- BuildAll --timing
- name: "Upload artifact: test"
uses: actions/upload-artifact@v3
with:
name: test
path: artifacts/test
if: always()