We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1f8cbba commit 83a570fCopy full SHA for 83a570f
.github/workflows/pull-db-tests.yml
@@ -194,11 +194,12 @@ jobs:
194
test-mssql:
195
if: needs.files-changed.outputs.backend == 'true' || needs.files-changed.outputs.actions == 'true'
196
needs: files-changed
197
- runs-on: ubuntu-latest
+ # specifying the version of ubuntu in use as mssql fails on newer kernels
198
+ # pending resolution from vendor
199
+ runs-on: ubuntu-20.04
200
services:
201
mssql:
- # some images before 2024-04 can't run on new kernels
- image: mcr.microsoft.com/mssql/server:2019-latest
202
+ image: mcr.microsoft.com/mssql/server:2017-latest
203
env:
204
ACCEPT_EULA: Y
205
MSSQL_PID: Standard
0 commit comments