Skip to content

Commit f867bfa

Browse files
committed
azure: skip SSH tests on Win32 platforms
On Win32 build hosts, we do not have an SSH daemon readily available and thus cannot perform the SSH tests. Let's skip the tests to not let Azure Pipelines fail.
1 parent 0cda525 commit f867bfa

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

azure-pipelines.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,7 @@ jobs:
8383
environmentVariables:
8484
CMAKE_GENERATOR: Visual Studio 12 2013 Win64
8585
CMAKE_OPTIONS: -DMSVC_CRTDBG=ON -DDEPRECATE_HARD=ON
86+
SKIP_SSH_TESTS: true
8687

8788
- job: windows_vs_x86
8889
displayName: 'Windows (x86; Visual Studio)'
@@ -93,6 +94,7 @@ jobs:
9394
environmentVariables:
9495
CMAKE_GENERATOR: Visual Studio 12 2013
9596
CMAKE_OPTIONS: -DMSVC_CRTDBG=ON -DDEPRECATE_HARD=ON -DUSE_SHA1=HTTPS
97+
SKIP_SSH_TESTS: true
9698

9799
- job: windows_mingw_amd64
98100
displayName: 'Windows (amd64; MinGW)'
@@ -109,6 +111,7 @@ jobs:
109111
BUILD_PATH: $(Agent.TempDirectory)\mingw64\bin;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Program Files (x86)\CMake\bin
110112
CMAKE_GENERATOR: MinGW Makefiles
111113
CMAKE_OPTIONS: -DDEPRECATE_HARD=ON
114+
SKIP_SSH_TESTS: true
112115

113116
- job: windows_mingw_x86
114117
displayName: 'Windows (x86; MinGW)'
@@ -126,6 +129,7 @@ jobs:
126129
BUILD_PATH: $(Agent.TempDirectory)\mingw32\bin;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Program Files (x86)\CMake\bin
127130
CMAKE_GENERATOR: MinGW Makefiles
128131
CMAKE_OPTIONS: -DDEPRECATE_HARD=ON
132+
SKIP_SSH_TESTS: true
129133

130134
- job: documentation
131135
displayName: 'Generate Documentation'

azure-pipelines/nightly.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,7 @@ jobs:
8585
CMAKE_GENERATOR: Visual Studio 12 2013 Win64
8686
CMAKE_OPTIONS: -DMSVC_CRTDBG=ON -DDEPRECATE_HARD=ON
8787
RUN_INVASIVE_TESTS: true
88+
SKIP_SSH_TESTS: true
8889

8990
- job: windows_vs_x86
9091
displayName: 'Windows (x86; Visual Studio)'
@@ -96,6 +97,7 @@ jobs:
9697
CMAKE_GENERATOR: Visual Studio 12 2013
9798
CMAKE_OPTIONS: -DMSVC_CRTDBG=ON -DDEPRECATE_HARD=ON -DUSE_SHA1=HTTPS
9899
RUN_INVASIVE_TESTS: true
100+
SKIP_SSH_TESTS: true
99101

100102
- job: windows_mingw_amd64
101103
displayName: 'Windows (amd64; MinGW)'
@@ -113,6 +115,7 @@ jobs:
113115
CMAKE_GENERATOR: MinGW Makefiles
114116
CMAKE_OPTIONS: -DDEPRECATE_HARD=ON
115117
RUN_INVASIVE_TESTS: true
118+
SKIP_SSH_TESTS: true
116119

117120
- job: windows_mingw_x86
118121
displayName: 'Windows (x86; MinGW)'
@@ -131,6 +134,7 @@ jobs:
131134
CMAKE_GENERATOR: MinGW Makefiles
132135
CMAKE_OPTIONS: -DDEPRECATE_HARD=ON
133136
RUN_INVASIVE_TESTS: true
137+
SKIP_SSH_TESTS: true
134138

135139
- job: linux_x86_bionic_gcc_openssl
136140
displayName: 'Linux (x86; Bionic; GCC; OpenSSL)'

0 commit comments

Comments
 (0)