Skip to content

Commit 41d52c6

Browse files
committed
Testing on MSSQL earliest and latest
1 parent 5a2d9db commit 41d52c6

File tree

2 files changed

+25
-10
lines changed

2 files changed

+25
-10
lines changed

.github/workflows/tests-sqlsrv.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121

2222
services:
2323
database:
24-
image: mcr.microsoft.com/mssql/server:${{ inputs.version }}-latest
24+
image: mcr.microsoft.com/mssql/server:${{ inputs.version }}
2525
options: --health-cmd "echo quit | /opt/mssql-tools/bin/sqlcmd -S 127.0.0.1 -l 1 -U sa -P Password_123" --health-interval=10s --health-timeout=5s --health-retries=3
2626
env:
2727
ACCEPT_EULA: Y

.github/workflows/tests.yml

Lines changed: 24 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -125,18 +125,33 @@ jobs:
125125
name: SQLite
126126
uses: ./.github/workflows/tests-sqlite.yml
127127

128-
sqlsrv2017:
129-
name: Microsoft SQL Server 2017
128+
sqlsrv2017_ga:
129+
name: Microsoft SQL Server 2017 (GA)
130130
uses: ./.github/workflows/tests-sqlsrv.yml
131131
with:
132-
version: 2017
133-
sqlsrv2019:
134-
name: Microsoft SQL Server 2019
132+
version: 2017-GA-ubuntu
133+
sqlsrv2017_latest:
134+
name: Microsoft SQL Server 2017 (Latest)
135135
uses: ./.github/workflows/tests-sqlsrv.yml
136136
with:
137-
version: 2019
138-
sqlsrv2022:
139-
name: Microsoft SQL Server 2022
137+
version: 2017-latest
138+
sqlsrv2019_ga:
139+
name: Microsoft SQL Server 2019 (GA)
140140
uses: ./.github/workflows/tests-sqlsrv.yml
141141
with:
142-
version: 2022
142+
version: 2019-GA-ubuntu-16.04
143+
sqlsrv2019_latest:
144+
name: Microsoft SQL Server 2019 (Latest)
145+
uses: ./.github/workflows/tests-sqlsrv.yml
146+
with:
147+
version: 2019-latest
148+
sqlsrv2022_ga:
149+
name: Microsoft SQL Server 2022 (GA)
150+
uses: ./.github/workflows/tests-sqlsrv.yml
151+
with:
152+
version: 2022-RTM-GDR1-ubuntu-20.04
153+
sqlsrv2022_latest:
154+
name: Microsoft SQL Server 2022 (Latest)
155+
uses: ./.github/workflows/tests-sqlsrv.yml
156+
with:
157+
version: 2022-latest

0 commit comments

Comments
 (0)