From 497be5a47068d5448881c9abec867b73e8e3ad8f Mon Sep 17 00:00:00 2001 From: Pieter-Jan Briers Date: Fri, 10 Mar 2023 20:58:57 +0100 Subject: [PATCH] Project files CI changes (#14466) --- .github/workflows/build-test-debug.yml | 6 +++--- .github/workflows/build-test-release.yml | 6 +++--- .github/workflows/validate-rgas.yml | 2 +- .github/workflows/validate_mapfiles.yml | 2 +- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/build-test-debug.yml b/.github/workflows/build-test-debug.yml index 3a3d93b7fb1..89abcee4457 100644 --- a/.github/workflows/build-test-debug.yml +++ b/.github/workflows/build-test-debug.yml @@ -42,16 +42,16 @@ jobs: run: dotnet restore - name: Build Project - run: dotnet build --configuration Debug --no-restore /p:WarningsAsErrors=nullable /m + run: dotnet build --configuration DebugOpt --no-restore /p:WarningsAsErrors=nullable /m - name: Run Content.Tests - run: dotnet test --no-build Content.Tests/Content.Tests.csproj -- NUnit.ConsoleOut=0 + run: dotnet test --no-build --configuration DebugOpt Content.Tests/Content.Tests.csproj -- NUnit.ConsoleOut=0 - name: Run Content.IntegrationTests shell: pwsh run: | $env:DOTNET_gcServer=1 - dotnet test --no-build Content.IntegrationTests/Content.IntegrationTests.csproj -- NUnit.ConsoleOut=0 + dotnet test --no-build --configuration DebugOpt Content.IntegrationTests/Content.IntegrationTests.csproj -- NUnit.ConsoleOut=0 ci-success: name: Build & Test Debug needs: diff --git a/.github/workflows/build-test-release.yml b/.github/workflows/build-test-release.yml index 1658a57d5cd..07ce558fb02 100644 --- a/.github/workflows/build-test-release.yml +++ b/.github/workflows/build-test-release.yml @@ -42,16 +42,16 @@ jobs: run: dotnet restore - name: Build Project - run: dotnet build --configuration Release --no-restore /p:WarningsAsErrors=nullable /m + run: dotnet build --configuration Tools --no-restore /p:WarningsAsErrors=nullable /m - name: Run Content.Tests - run: dotnet test --no-build Content.Tests/Content.Tests.csproj -- NUnit.ConsoleOut=0 + run: dotnet test --configuration Tools --no-build Content.Tests/Content.Tests.csproj -- NUnit.ConsoleOut=0 - name: Run Content.IntegrationTests shell: pwsh run: | $env:DOTNET_gcServer=1 - dotnet test --no-build Content.IntegrationTests/Content.IntegrationTests.csproj -- NUnit.ConsoleOut=0 + dotnet test --configuration Tools --no-build Content.IntegrationTests/Content.IntegrationTests.csproj -- NUnit.ConsoleOut=0 ci-success: name: Build & Test Release needs: diff --git a/.github/workflows/validate-rgas.yml b/.github/workflows/validate-rgas.yml index a06d3793e78..539a3357d4a 100644 --- a/.github/workflows/validate-rgas.yml +++ b/.github/workflows/validate-rgas.yml @@ -1,4 +1,4 @@ -name: YAML schema validator +name: RGA schema validator on: push: branches: [ master, staging, trying ] diff --git a/.github/workflows/validate_mapfiles.yml b/.github/workflows/validate_mapfiles.yml index e849d2a53eb..c47d33db716 100644 --- a/.github/workflows/validate_mapfiles.yml +++ b/.github/workflows/validate_mapfiles.yml @@ -1,4 +1,4 @@ -name: YAML schema validator +name: Map file schema validator on: push: branches: [ master, staging, trying ]