From ca84aca54c45f6ec7b7ab09163ddb68d28492caf Mon Sep 17 00:00:00 2001 From: Dominion Date: Tue, 13 Jun 2023 08:12:43 -0400 Subject: [PATCH] Check for LocalDB failures early Fixes #1539 --- .github/workflows/ci-suite.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/ci-suite.yml b/.github/workflows/ci-suite.yml index 728bebfcaa..2b5927e4ad 100644 --- a/.github/workflows/ci-suite.yml +++ b/.github/workflows/ci-suite.yml @@ -290,6 +290,13 @@ jobs: BYOND_MAJOR: 514 BYOND_MINOR: 1588 steps: + - name: Wait for LocalDB Connection # Do this first because we don't want to find out it's failing later + shell: powershell + if: ${{ matrix.database-type == 'SqlServer' }} + run: | + Write-Host "Checking" + sqlcmd -l 600 -S "(localdb)\MSSQLLocalDB" -Q "SELECT @@VERSION;" + - name: Setup dotnet uses: actions/setup-dotnet@v2 with: