From fa160d1036bcc96089405e4878c9ab59b593d85b Mon Sep 17 00:00:00 2001 From: Gallyus <5572280+francinum@users.noreply.github.com> Date: Fri, 28 Feb 2025 13:18:24 -0500 Subject: [PATCH] Removes redundant MySQL Server (#89724) Port of https://github.com/DaedalusDock/daedalusdock/pull/1220 ## About The Pull Request Test runs bleed ~26 seconds on average starting a completely unused and misconfigured MySQL Docker container. Let's.... Not do that? ## Why It's Good For The Repository TG tests 10 maps, at 26 seconds each, that's 260 seconds of pointless time. ## Changelog No User-Facing Changes --- .github/workflows/run_integration_tests.yml | 8 -------- 1 file changed, 8 deletions(-) diff --git a/.github/workflows/run_integration_tests.yml b/.github/workflows/run_integration_tests.yml index c2dcc421a91..3354b4ccf3e 100644 --- a/.github/workflows/run_integration_tests.yml +++ b/.github/workflows/run_integration_tests.yml @@ -27,14 +27,6 @@ jobs: name: Run Tests (${{ inputs.major && format('{0}.{1}; ', inputs.major, inputs.minor) || '' }}${{ inputs.map }}; ${{ inputs.max_required_byond_client }}) runs-on: ubuntu-latest timeout-minutes: 15 - services: - mysql: - image: mysql:latest - env: - MYSQL_ROOT_PASSWORD: root - ports: - - 3306 - options: --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=5s --health-retries=3 steps: - uses: actions/checkout@v4 - name: Setup database