From d8573d818e86de0dcc07d10f0b34bcac8bd60898 Mon Sep 17 00:00:00 2001 From: Jordan Brown Date: Fri, 18 Dec 2020 01:32:49 -0500 Subject: [PATCH] Readd "NoService" specifier to Linux build configs --- .github/workflows/ci-suite.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci-suite.yml b/.github/workflows/ci-suite.yml index a6a8e8dc43..3a34442ea6 100644 --- a/.github/workflows/ci-suite.yml +++ b/.github/workflows/ci-suite.yml @@ -372,13 +372,13 @@ jobs: echo "TGS4_GITHUB_REF=${TEMP_GITHUB_REF##*/}" >> $GITHUB_ENV - name: Build - run: dotnet build -c ${{ matrix.configuration }} + run: dotnet build -c ${{ matrix.configuration }}NoService - name: Run Integration Test run: | cd tests/Tgstation.Server.Tests sleep 10 - dotnet test -c ${{ matrix.configuration }} --no-build -l "console;verbosity=detailed;noprogress=true" --collect:"XPlat Code Coverage" --settings ../../build/coverlet.runsettings -r ./TestResults + dotnet test -c ${{ matrix.configuration }}NoService --no-build -l "console;verbosity=detailed;noprogress=true" --collect:"XPlat Code Coverage" --settings ../../build/coverlet.runsettings -r ./TestResults - name: Store Code Coverage uses: actions/upload-artifact@v2