From b9f33ac5bc0af39f35ee9e72561ed05fc5b525b2 Mon Sep 17 00:00:00 2001 From: Jordan Dominion Date: Mon, 29 Jan 2024 12:54:26 -0500 Subject: [PATCH] More attempts to suppress OD build warnings --- .github/workflows/ci-pipeline.yml | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci-pipeline.yml b/.github/workflows/ci-pipeline.yml index 12e154ff5a..1ad9880ec8 100644 --- a/.github/workflows/ci-pipeline.yml +++ b/.github/workflows/ci-pipeline.yml @@ -206,10 +206,20 @@ jobs: git checkout ${{ matrix.committish }} git submodule update --init --recursive + - name: Restore OpenDream + run: | + cd $HOME/OpenDream + dotnet restore + + - name: Build OpenDream + run: | + cd $HOME/OpenDream/OpenDreamPackageTool + dotnet build -c Release --nologo -v q --property WarningLevel=0 /clp:ErrorsOnly + - name: Create TGS Deployment run: | cd $HOME/OpenDream - dotnet run -c Release --project OpenDreamPackageTool --property WarningLevel=0 -- --tgs -o tgs_deploy + dotnet run -c Release --project OpenDreamPackageTool --no-build -- --tgs -o tgs_deploy - name: Build DMAPI run: |