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 e1f0598 commit 38e3d8bCopy full SHA for 38e3d8b
.github/workflows/pull-db-tests.yml
@@ -198,11 +198,12 @@ jobs:
198
test-mssql:
199
if: needs.files-changed.outputs.backend == 'true' || needs.files-changed.outputs.actions == 'true'
200
needs: files-changed
201
- runs-on: ubuntu-latest
+ # specifying the version of ubuntu in use as mssql fails on newer kernels
202
+ # pending resolution from vendor
203
+ runs-on: ubuntu-20.04
204
services:
205
mssql:
- # some images before 2024-04 can't run on new kernels
- image: mcr.microsoft.com/mssql/server:2019-latest
206
+ image: mcr.microsoft.com/mssql/server:2017-latest
207
env:
208
ACCEPT_EULA: Y
209
MSSQL_PID: Standard
0 commit comments