File tree Expand file tree Collapse file tree 1 file changed +10
-1
lines changed Expand file tree Collapse file tree 1 file changed +10
-1
lines changed Original file line number Diff line number Diff line change 20
20
mode :
21
21
- Debug
22
22
- Release
23
+ test-ssl :
24
+ - Disabled
23
25
24
26
runs-on : ${{ matrix.runs-on }}
25
27
28
+ name : ${{ matrix.runs-on }} (${{ matrix.mode }}, ${{ matrix.test-ssl }} ssl test)
29
+
26
30
steps :
27
31
- name : Clone the connector
28
32
uses : actions/checkout@v3
41
45
run : |
42
46
mkdir build
43
47
cd build
44
- cmake -DCMAKE_BUILD_TYPE=${{ matrix.mode }} -DTNTCXX_BUILD_TESTING=ON -DTNTCXX_ENABLE_SSL=OFF ..
48
+ cmake -DCMAKE_BUILD_TYPE=${{ matrix.mode }} -DTNTCXX_BUILD_TESTING=ON -DTNTCXX_ENABLE_SSL=ON ..
45
49
make -j
46
50
51
+ - name : test without SSL
52
+ if : matrix.test-ssl == 'Disabled'
53
+ run : cd build && ctest --output-on-failure -E ClientSSL.test
54
+
47
55
- name : test
56
+ if : matrix.test-ssl == 'Enabled'
48
57
run : cd build && ctest --output-on-failure
You can’t perform that action at this time.
0 commit comments