Skip to content

Commit

Permalink
BUG: Remove Python packages from the testing configuration
Browse files Browse the repository at this point in the history
We can generate Python packages, but they will not be valid until more
effort is put into bundling the Jar's and JRE.
  • Loading branch information
thewtex committed Dec 11, 2019
1 parent 9c3a20d commit 4e1bd53
Showing 1 changed file with 0 additions and 74 deletions.
74 changes: 0 additions & 74 deletions test/azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -143,77 +143,3 @@ jobs:
testRunTitle: 'CTest $(Agent.OS)'
condition: succeededOrFailed()
displayName: 'Publish test results'


- job: 'PackageLinux'
timeoutInMinutes: 0
cancelTimeoutInMinutes: 300
displayName: "Build Linux Python packages"
pool:
vmImage: 'Ubuntu-16.04'

steps:
- script: |
curl -L https://raw.githubusercontent.com/InsightSoftwareConsortium/ITKPythonPackage/master/scripts/dockcross-manylinux-download-cache-and-build-module-wheels.sh -O
chmod u+x dockcross-manylinux-download-cache-and-build-module-wheels.sh
displayName: 'Fetch build script'
- script: |
export ITK_PACKAGE_VERSION=$(ITKPythonGitTag)
./dockcross-manylinux-download-cache-and-build-module-wheels.sh
displayName: 'Build Python packages'
- task: PublishPipelineArtifact@0
inputs:
artifactName: 'LinuxWheels'
targetPath: './dist'


- job: 'PackageMacOS'
displayName: "Build macOS Python packages"
timeoutInMinutes: 0
cancelTimeoutInMinutes: 300
pool:
vmImage: 'macos-10.14'

steps:
- script: |
curl -L https://raw.githubusercontent.com/InsightSoftwareConsortium/ITKPythonPackage/master/scripts/macpython-download-cache-and-build-module-wheels.sh -O
chmod u+x macpython-download-cache-and-build-module-wheels.sh
displayName: 'Fetch build script'
- script: |
export ITK_PACKAGE_VERSION=$(ITKPythonGitTag)
./macpython-download-cache-and-build-module-wheels.sh
displayName: 'Build Python packages'
- task: PublishPipelineArtifact@0
inputs:
artifactName: 'MacOSWheels'
targetPath: './dist'


- job: 'PackageWindows'
displayName: "Build Windows Python packages"
timeoutInMinutes: 0
cancelTimeoutInMinutes: 300
pool:
vmImage: 'vs2017-win2016'

steps:
- script: |
curl -L https://raw.githubusercontent.com/InsightSoftwareConsortium/ITKPythonPackage/master/scripts/windows-download-cache-and-build-module-wheels.ps1 -O
displayName: 'Fetch build script'
- script: |
call "C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\VC\Auxiliary\Build\vcvars64.bat"
set ITK_PACKAGE_VERSION=$(ITKPythonGitTag)
set CC=cl.exe
set CXX=cl.exe
powershell.exe -file .\windows-download-cache-and-build-module-wheels.ps1
displayName: 'Build Python packages'
- task: PublishPipelineArtifact@0
inputs:
artifactName: 'WindowsWheels'
targetPath: './dist'

0 comments on commit 4e1bd53

Please sign in to comment.