Skip to content

Commit a4068d7

Browse files
authored
Merge pull request #28 from thewtex/do-not-run-tests
BUG: Do not run tests on Azure pipelines
2 parents c6d0abe + b4d23d3 commit a4068d7

File tree

1 file changed

+13
-13
lines changed

1 file changed

+13
-13
lines changed

test/azure-pipelines.yml

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -12,28 +12,28 @@ trigger:
1212

1313
jobs:
1414

15-
- job: 'Test'
16-
displayName: "Build and test"
15+
- job: 'Build'
16+
displayName: "C++ Build"
1717
timeoutInMinutes: 0
1818
cancelTimeoutInMinutes: 300
1919

2020
strategy:
2121
matrix:
22-
Linux:
23-
imageName: 'ubuntu-16.04'
24-
cCompiler: gcc
25-
cxxCompiler: g++
26-
compilerInitialization: ''
22+
#Linux:
23+
#imageName: 'ubuntu-16.04'
24+
#cCompiler: gcc
25+
#cxxCompiler: g++
26+
#compilerInitialization: ''
2727
macOS:
2828
imageName: 'macos-10.13'
2929
cCompiler: clang
3030
cxxCompiler: clang++
3131
compilerInitialization: ''
32-
Windows:
33-
imageName: 'vs2017-win2016'
34-
cCompiler: cl.exe
35-
cxxCompiler: cl.exe
36-
compilerInitialization: 'call "C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\VC\Auxiliary\Build\vcvars64.bat"'
32+
#Windows:
33+
#imageName: 'vs2017-win2016'
34+
#cCompiler: cl.exe
35+
#cxxCompiler: cl.exe
36+
#compilerInitialization: 'call "C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\VC\Auxiliary\Build\vcvars64.bat"'
3737

3838
pool:
3939
vmImage: $(imageName)
@@ -114,7 +114,7 @@ jobs:
114114
endif()
115115
set(CTEST_BUILD_NAME "$(Build.Repository.Name)-$(Agent.OS)-Build$(Build.BuildId)\${pr}\${branch}")
116116
set(CTEST_UPDATE_VERSION_ONLY 1)
117-
set(CTEST_TEST_ARGS \${CTEST_TEST_ARGS} PARALLEL_LEVEL \${PARALLEL_LEVEL})
117+
set(CTEST_TEST_ARGS \${CTEST_TEST_ARGS} PARALLEL_LEVEL \${PARALLEL_LEVEL} INCLUDE "VTKImageTo")
118118
set(CTEST_BUILD_CONFIGURATION "Release")
119119
set(CTEST_CMAKE_GENERATOR "Ninja")
120120
set(CTEST_CUSTOM_WARNING_EXCEPTION

0 commit comments

Comments
 (0)