From d3082b2ffc3f7d7b273359e82956fb8842c96dc6 Mon Sep 17 00:00:00 2001 From: Jordan Dominion Date: Thu, 10 Oct 2024 18:44:24 -0400 Subject: [PATCH] Do not blanket enable GraphQL in CI --- .github/workflows/ci-pipeline.yml | 1 - tests/Tgstation.Server.Tests/Live/LiveTestingServer.cs | 3 +++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci-pipeline.yml b/.github/workflows/ci-pipeline.yml index 41bef2a36a..ccd353acf7 100644 --- a/.github/workflows/ci-pipeline.yml +++ b/.github/workflows/ci-pipeline.yml @@ -41,7 +41,6 @@ env: TGS_WEBPANEL_NODE_VERSION: 20.x TGS_TEST_GITHUB_TOKEN: ${{ secrets.LIVE_TESTS_TOKEN }} PACKAGING_PRIVATE_KEY_PASSPHRASE: ${{ secrets.PACKAGING_PRIVATE_KEY_PASSPHRASE }} - Internal__EnableGraphQL: true concurrency: group: "ci-${{ (github.event_name != 'push' && github.event_name != 'schedule' && github.event.inputs.pull_request_number) || github.run_id }}-${{ github.event_name }}" diff --git a/tests/Tgstation.Server.Tests/Live/LiveTestingServer.cs b/tests/Tgstation.Server.Tests/Live/LiveTestingServer.cs index f9ed0b926a..bbd6bb176c 100644 --- a/tests/Tgstation.Server.Tests/Live/LiveTestingServer.cs +++ b/tests/Tgstation.Server.Tests/Live/LiveTestingServer.cs @@ -158,6 +158,9 @@ namespace Tgstation.Server.Tests.Live "Telemetry:DisableVersionReporting=true", }; + if (MultiServerClient.UseGraphQL) + args.Add("Internal:EnableGraphQL=true"); + swarmArgs = new List(); if (swarmConfiguration != null) {