Skip to content
This repository was archived by the owner on Jun 6, 2026. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
217 changes: 0 additions & 217 deletions azure-pipelines.yml

This file was deleted.

15 changes: 9 additions & 6 deletions test/azure-pipelines.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
variables:
ITKGitTag: v5.0rc01
ITKGitTag: v5.0.1
ITKPythonGitTag: v5.0.1
CMakeBuildType: Release

trigger:
Expand Down Expand Up @@ -57,7 +58,9 @@ jobs:
displayName: 'Install build dependencies'

- script: |
git clone --depth 5 --branch $(ITKGitTag) https://github.com/InsightSoftwareConsortium/ITK.git
git clone https://github.com/InsightSoftwareConsortium/ITK.git
cd ITK
git checkout $(ITKGitTag)
workingDirectory: $(Agent.BuildDirectory)
displayName: 'Download ITK'

Expand Down Expand Up @@ -156,7 +159,7 @@ jobs:
displayName: 'Fetch build script'

- script: |
export ITK_PACKAGE_VERSION=$(ITKGitTag)
export ITK_PACKAGE_VERSION=$(ITKPythonGitTag)
./dockcross-manylinux-download-cache-and-build-module-wheels.sh
displayName: 'Build Python packages'

Expand All @@ -171,7 +174,7 @@ jobs:
timeoutInMinutes: 0
cancelTimeoutInMinutes: 300
pool:
vmImage: 'macos-10.13'
vmImage: 'macos-10.14'

steps:
- script: |
Expand All @@ -180,7 +183,7 @@ jobs:
displayName: 'Fetch build script'

- script: |
export ITK_PACKAGE_VERSION=$(ITKGitTag)
export ITK_PACKAGE_VERSION=$(ITKPythonGitTag)
./macpython-download-cache-and-build-module-wheels.sh
displayName: 'Build Python packages'

Expand All @@ -204,7 +207,7 @@ jobs:

- script: |
call "C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\VC\Auxiliary\Build\vcvars64.bat"
set ITK_PACKAGE_VERSION=$(ITKGitTag)
set ITK_PACKAGE_VERSION=$(ITKPythonGitTag)
set CC=cl.exe
set CXX=cl.exe
powershell.exe -file .\windows-download-cache-and-build-module-wheels.ps1
Expand Down