Revert "Add azure-template.yml for more compact config"
This reverts commit 6377854545.
This commit is contained in:
@@ -1,44 +0,0 @@
|
|||||||
# Template config to build a Python package. You can either copy/paste this
|
|
||||||
# into your azure-pipelines.yml or reference it using the `template` syntax.
|
|
||||||
# See: https://docs.microsoft.com/en-us/azure/devops/pipelines/process/templates?view=azure-devops#using-other-repositories
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
- job: linux
|
|
||||||
pool: {vmImage: 'Ubuntu-16.04'}
|
|
||||||
steps:
|
|
||||||
- task: UsePythonVersion@0
|
|
||||||
- bash: |
|
|
||||||
python -m pip install --upgrade pip
|
|
||||||
pip install cibuildwheel==0.10.1
|
|
||||||
cibuildwheel --output-dir wheelhouse .
|
|
||||||
- task: PublishBuildArtifacts@1
|
|
||||||
inputs: {pathtoPublish: 'wheelhouse'}
|
|
||||||
- job: macos
|
|
||||||
pool: {vmImage: 'macOS-10.13'}
|
|
||||||
steps:
|
|
||||||
- task: UsePythonVersion@0
|
|
||||||
- bash: |
|
|
||||||
python -m pip install --upgrade pip
|
|
||||||
pip install cibuildwheel==0.10.1
|
|
||||||
cibuildwheel --output-dir wheelhouse .
|
|
||||||
- task: PublishBuildArtifacts@1
|
|
||||||
inputs: {pathtoPublish: 'wheelhouse'}
|
|
||||||
- job: windows
|
|
||||||
pool: {vmImage: 'vs2017-win2016'}
|
|
||||||
steps:
|
|
||||||
- {task: UsePythonVersion@0, inputs: {versionSpec: '2.7', architecture: x86}}
|
|
||||||
- {task: UsePythonVersion@0, inputs: {versionSpec: '2.7', architecture: x64}}
|
|
||||||
- {task: UsePythonVersion@0, inputs: {versionSpec: '3.5', architecture: x86}}
|
|
||||||
- {task: UsePythonVersion@0, inputs: {versionSpec: '3.5', architecture: x64}}
|
|
||||||
- {task: UsePythonVersion@0, inputs: {versionSpec: '3.6', architecture: x86}}
|
|
||||||
- {task: UsePythonVersion@0, inputs: {versionSpec: '3.6', architecture: x64}}
|
|
||||||
- {task: UsePythonVersion@0, inputs: {versionSpec: '3.7', architecture: x86}}
|
|
||||||
- {task: UsePythonVersion@0, inputs: {versionSpec: '3.7', architecture: x64}}
|
|
||||||
- script: choco install vcpython27 -f -y
|
|
||||||
displayName: Install Visual C++ for Python 2.7
|
|
||||||
- bash: |
|
|
||||||
python -m pip install --upgrade pip
|
|
||||||
pip install cibuildwheel==0.10.1
|
|
||||||
cibuildwheel --output-dir wheelhouse .
|
|
||||||
- task: PublishBuildArtifacts@1
|
|
||||||
inputs: {pathtoPublish: 'wheelhouse'}
|
|
||||||
@@ -12,7 +12,3 @@ message = Bump version
|
|||||||
search = cibuildwheel=={current_version}
|
search = cibuildwheel=={current_version}
|
||||||
replace = cibuildwheel=={new_version}
|
replace = cibuildwheel=={new_version}
|
||||||
|
|
||||||
[bumpversion:file:azure-template.yml]
|
|
||||||
search = cibuildwheel=={current_version}
|
|
||||||
replace = cibuildwheel=={new_version}
|
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user