File tree Expand file tree Collapse file tree 2 files changed +18
-10
lines changed
Expand file tree Collapse file tree 2 files changed +18
-10
lines changed Original file line number Diff line number Diff line change 88 matrix :
99 include :
1010 - os : ubuntu-22.04
11- sqlserver-version : 2022
11+ sqlserver-version : 2025
12+ # - os: ubuntu-22.04
13+ # sqlserver-version: 2022
1214 - os : windows-2025
13- sqlserver-version : 2022
14- - os : windows-2025
15- sqlserver-version : 2019
16- - os : windows-2022
17- sqlserver-version : 2022
18- - os : windows-2022
19- sqlserver-version : 2019
15+ sqlserver-version : 2025
16+ # - os: windows-2025
17+ # sqlserver-version: 2022
18+ # - os: windows-2025
19+ # sqlserver-version: 2019
20+ # - os: windows-2022
21+ # sqlserver-version: 2025
22+ # - os: windows-2022
23+ # sqlserver-version: 2022
24+ # - os: windows-2022
25+ # sqlserver-version: 2019
2026 steps :
2127 - uses : actions/checkout@v5
2228 - uses : ./.
Original file line number Diff line number Diff line change @@ -46,15 +46,17 @@ if (acceptEula !== 'true') {
4646
4747const defaultVersion = '2022' ;
4848const sqlserverVersion = parseInt ( process . env [ 'INPUT_SQLSERVER-VERSION' ] || defaultVersion ) ;
49- if ( ! [ 2022 , 2019 ] . includes ( sqlserverVersion ) ) {
49+ if ( ! [ 2025 , 2022 , 2019 ] . includes ( sqlserverVersion ) ) {
5050 throw `SQL Server version not supported: ${ sqlserverVersion } ` ;
5151}
5252
5353if ( isMac ( ) ) {
5454 throw `Mac not supported` ;
5555} else if ( isWindows ( ) ) {
5656 let url ;
57- if ( sqlserverVersion == 2022 ) {
57+ if ( sqlserverVersion == 2025 ) {
58+ url = 'https://download.microsoft.com/download/77dc60d3-0139-4dad-83c8-bb52ab22db01/SQL2025-SSEI-StdDev.exe' ;
59+ } else if ( sqlserverVersion == 2022 ) {
5860 url = 'https://download.microsoft.com/download/c/c/9/cc9c6797-383c-4b24-8920-dc057c1de9d3/SQL2022-SSEI-Dev.exe' ;
5961 } else if ( sqlserverVersion == 2019 ) {
6062 // https://go.microsoft.com/fwlink/?linkid=866662
You can’t perform that action at this time.
0 commit comments