Skip to content

Commit 2bff820

Browse files
committed
Add new force encryption scenario on Windows
The new action allows us to specify if the MSSQL server should enforce encryption at all times. This helps us to verify that our precompiled build on Windows, where we compile OpenSSL ourselves, will work as expected.
1 parent 9226df1 commit 2bff820

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

.github/workflows/ci.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -96,6 +96,9 @@ jobs:
9696
strategy:
9797
fail-fast: false
9898
matrix:
99+
force-encryption:
100+
- "false"
101+
- "true"
99102
mssql-version:
100103
- 2017
101104
- 2019
@@ -143,6 +146,7 @@ jobs:
143146
components: sqlcmd,sqlengine
144147
version: ${{ matrix.mssql-version }}
145148
sa-password: c0MplicatedP@ssword
149+
force-encryption: ${{ matrix.force-encryption }}
146150

147151
- name: Setup MSSQL database
148152
shell: pwsh
@@ -216,6 +220,9 @@ jobs:
216220
strategy:
217221
fail-fast: false
218222
matrix:
223+
force-encryption:
224+
- "false"
225+
- "true"
219226
mssql-version:
220227
- 2017
221228
- 2019
@@ -263,6 +270,7 @@ jobs:
263270
components: sqlcmd,sqlengine
264271
version: ${{ matrix.mssql-version }}
265272
sa-password: c0MplicatedP@ssword
273+
force-encryption: ${{ matrix.force-encryption }}
266274

267275
- name: Setup MSSQL database
268276
shell: pwsh

0 commit comments

Comments
 (0)