1
1
# The file template originates from the instructions: https://github.com/InsightSoftwareConsortium/ITKModuleTemplate/README.md
2
2
variables :
3
- ITKGitTag : v5.1rc02 # Used for choosing branch of ITK to checkout
4
- ITKPythonGitTag : v20200228 # Used to identify the release name for the cached python build environmeent ITKPythonBuilds-linux.tar.zst
3
+ ITKGitTag : v5.1rc02 # Used for choosing branch of ITK to checkout
4
+ ITKPythonGitTag : v5.1rc02 # Used to identify the release name for the cached python build environmeent ITKPythonBuilds-linux.tar.zst
5
5
CMakeBuildType : Release
6
6
7
7
trigger :
@@ -19,11 +19,11 @@ jobs:
19
19
20
20
strategy :
21
21
matrix :
22
- Linux1604 :
23
- imageName : ' ubuntu-16.04'
24
- cCompiler : gcc
25
- cxxCompiler : g++
26
- compilerInitialization : ' '
22
+ # Linux1604:
23
+ # imageName: 'ubuntu-16.04'
24
+ # cCompiler: gcc
25
+ # cxxCompiler: g++
26
+ # compilerInitialization: ''
27
27
Linux1804 :
28
28
imageName : ' ubuntu-18.04'
29
29
cCompiler : gcc
@@ -34,16 +34,16 @@ jobs:
34
34
cCompiler : clang
35
35
cxxCompiler : clang++
36
36
compilerInitialization : ' '
37
- macOS1014 :
38
- imageName : ' macos-10.14'
39
- cCompiler : clang
40
- cxxCompiler : clang++
41
- compilerInitialization : ' '
42
- Windows2017 :
43
- imageName : ' vs2017-win2016'
44
- cCompiler : cl.exe
45
- cxxCompiler : cl.exe
46
- compilerInitialization : ' call "C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\VC\Auxiliary\Build\vcvars64.bat"'
37
+ # macOS1014:
38
+ # imageName: 'macos-10.14'
39
+ # cCompiler: clang
40
+ # cxxCompiler: clang++
41
+ # compilerInitialization: ''
42
+ # Windows2017:
43
+ # imageName: 'vs2017-win2016'
44
+ # cCompiler: cl.exe
45
+ # cxxCompiler: cl.exe
46
+ # compilerInitialization: 'call "C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\VC\Auxiliary\Build\vcvars64.bat"'
47
47
Windows2019 :
48
48
imageName : ' windows-2019'
49
49
cCompiler : cl.exe
@@ -162,75 +162,75 @@ jobs:
162
162
displayName : ' Publish test results'
163
163
164
164
165
- - job : ' PackageLinux'
166
- timeoutInMinutes : 0
167
- cancelTimeoutInMinutes : 300
168
- displayName : " Build Linux Python packages"
169
- pool :
170
- vmImage : ' Ubuntu-16.04'
171
-
172
- steps :
173
- - script : |
174
- curl -L https://raw.githubusercontent.com/InsightSoftwareConsortium/ITKPythonPackage/master/scripts/dockcross-manylinux-download-cache-and-build-module-wheels.sh -O
175
- chmod u+x dockcross-manylinux-download-cache-and-build-module-wheels.sh
176
- displayName: 'Fetch build script'
177
-
178
- - script : |
179
- export ITK_PACKAGE_VERSION=$(ITKPythonGitTag)
180
- ./dockcross-manylinux-download-cache-and-build-module-wheels.sh
181
- displayName: 'Build Python packages'
182
-
183
- - task : PublishPipelineArtifact@0
184
- inputs :
185
- artifactName : ' LinuxWheels'
186
- targetPath : ' ./dist'
187
-
188
-
189
- - job : ' PackageMacOS'
190
- displayName : " Build macOS Python packages"
191
- timeoutInMinutes : 0
192
- cancelTimeoutInMinutes : 300
193
- pool :
194
- vmImage : ' macos-10.14'
195
-
196
- steps :
197
- - script : |
198
- curl -L https://raw.githubusercontent.com/InsightSoftwareConsortium/ITKPythonPackage/master/scripts/macpython-download-cache-and-build-module-wheels.sh -O
199
- chmod u+x macpython-download-cache-and-build-module-wheels.sh
200
- displayName: 'Fetch build script'
201
-
202
- - script : |
203
- export ITK_PACKAGE_VERSION=$(ITKPythonGitTag)
204
- ./macpython-download-cache-and-build-module-wheels.sh
205
- displayName: 'Build Python packages'
206
-
207
- - task : PublishPipelineArtifact@0
208
- inputs :
209
- artifactName : ' MacOSWheels'
210
- targetPath : ' ./dist'
211
-
212
-
213
- - job : ' PackageWindows'
214
- displayName : " Build Windows Python packages"
215
- timeoutInMinutes : 0
216
- cancelTimeoutInMinutes : 300
217
- pool :
218
- vmImage : ' vs2017-win2016'
219
-
220
- steps :
221
- - script : |
222
- curl -L https://raw.githubusercontent.com/InsightSoftwareConsortium/ITKPythonPackage/master/scripts/windows-download-cache-and-build-module-wheels.ps1 -O
223
- displayName: 'Fetch build script'
224
-
225
- - script : |
226
- call "C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\VC\Auxiliary\Build\vcvars64.bat"
227
- set ITK_PACKAGE_VERSION=$(ITKPythonGitTag)
228
- set CC=cl.exe
229
- set CXX=cl.exe
230
- powershell.exe -file .\windows-download-cache-and-build-module-wheels.ps1
231
- displayName: 'Build Python packages'
232
-
233
- - task : PublishPipelineArtifact@0
234
- inputs :
235
- artifactName : ' WindowsWheels'
236
- targetPath : ' ./dist'
165
+ # - job: 'PackageLinux'
166
+ # timeoutInMinutes: 0
167
+ # cancelTimeoutInMinutes: 300
168
+ # displayName: "Build Linux Python packages"
169
+ # pool:
170
+ # vmImage: 'Ubuntu-16.04'
171
+ #
172
+ # steps:
173
+ # - script: |
174
+ # curl -L https://raw.githubusercontent.com/InsightSoftwareConsortium/ITKPythonPackage/master/scripts/dockcross-manylinux-download-cache-and-build-module-wheels.sh -O
175
+ # chmod u+x dockcross-manylinux-download-cache-and-build-module-wheels.sh
176
+ # displayName: 'Fetch build script'
177
+ #
178
+ # - script: |
179
+ # export ITK_PACKAGE_VERSION=$(ITKPythonGitTag)
180
+ # ./dockcross-manylinux-download-cache-and-build-module-wheels.sh
181
+ # displayName: 'Build Python packages'
182
+ #
183
+ # - task: PublishPipelineArtifact@0
184
+ # inputs:
185
+ # artifactName: 'LinuxWheels'
186
+ # targetPath: './dist'
187
+ #
188
+ #
189
+ # - job: 'PackageMacOS'
190
+ # displayName: "Build macOS Python packages"
191
+ # timeoutInMinutes: 0
192
+ # cancelTimeoutInMinutes: 300
193
+ # pool:
194
+ # vmImage: 'macos-10.14'
195
+ #
196
+ # steps:
197
+ # - script: |
198
+ # curl -L https://raw.githubusercontent.com/InsightSoftwareConsortium/ITKPythonPackage/master/scripts/macpython-download-cache-and-build-module-wheels.sh -O
199
+ # chmod u+x macpython-download-cache-and-build-module-wheels.sh
200
+ # displayName: 'Fetch build script'
201
+ #
202
+ # - script: |
203
+ # export ITK_PACKAGE_VERSION=$(ITKPythonGitTag)
204
+ # ./macpython-download-cache-and-build-module-wheels.sh
205
+ # displayName: 'Build Python packages'
206
+ #
207
+ # - task: PublishPipelineArtifact@0
208
+ # inputs:
209
+ # artifactName: 'MacOSWheels'
210
+ # targetPath: './dist'
211
+ #
212
+ #
213
+ # - job: 'PackageWindows'
214
+ # displayName: "Build Windows Python packages"
215
+ # timeoutInMinutes: 0
216
+ # cancelTimeoutInMinutes: 300
217
+ # pool:
218
+ # vmImage: 'vs2017-win2016'
219
+ #
220
+ # steps:
221
+ # - script: |
222
+ # curl -L https://raw.githubusercontent.com/InsightSoftwareConsortium/ITKPythonPackage/master/scripts/windows-download-cache-and-build-module-wheels.ps1 -O
223
+ # displayName: 'Fetch build script'
224
+ #
225
+ # - script: |
226
+ # call "C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\VC\Auxiliary\Build\vcvars64.bat"
227
+ # set ITK_PACKAGE_VERSION=$(ITKPythonGitTag)
228
+ # set CC=cl.exe
229
+ # set CXX=cl.exe
230
+ # powershell.exe -file .\windows-download-cache-and-build-module-wheels.ps1
231
+ # displayName: 'Build Python packages'
232
+ #
233
+ # - task: PublishPipelineArtifact@0
234
+ # inputs:
235
+ # artifactName: 'WindowsWheels'
236
+ # targetPath: './dist'
0 commit comments