Skip to content

Commit

Permalink
#209 add support for mssql server 2022
Browse files Browse the repository at this point in the history
  • Loading branch information
tomix26 committed Dec 5, 2022
1 parent 3448f10 commit 8336cc7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions accept-third-party-license.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
#!/bin/sh

{
echo "mcr.microsoft.com/mssql/server:2022-latest"
echo "mcr.microsoft.com/mssql/server:2019-latest"
echo "mcr.microsoft.com/mssql/server:2017-latest"
echo "mcr.microsoft.com/mssql/server:2017-CU20"
Expand Down
3 changes: 2 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,8 @@ ext {
]],
[name: 'mssql', versions: [
[name: '2017', 'mssql': '2017-latest', 'mssql-driver': 'default'],
[name: '2019', 'mssql': '2019-latest', 'mssql-driver': 'default']
[name: '2019', 'mssql': '2019-latest', 'mssql-driver': 'default'],
[name: '2022', 'mssql': '2022-latest', 'mssql-driver': 'default']
]],
[name: 'mysql', versions: [
[name: '5.7', 'mysql': '5.7', 'mysql-driver': 'default'],
Expand Down

0 comments on commit 8336cc7

Please sign in to comment.