-
Notifications
You must be signed in to change notification settings - Fork 84
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* move azure cibuildwheel main yml to root * print cmake status for version and whether tests are enabled * increase verbosity for cibuildwheel on linux * fix tests: compatibility to numpy 1.24, fixed some deprecation warnings regarding matplotlib and networkx * make test_reversible_pi flaky
- Loading branch information
Showing
10 changed files
with
60 additions
and
88 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
jobs: | ||
- job: linux | ||
pool: { vmImage: 'Ubuntu-22.04' } | ||
variables: | ||
CIBW_BUILD: cp3{8,9,10,11}-manylinux_x86_64 | ||
CIBW_BUILD_VERBOSITY: 2 | ||
steps: | ||
- template: devtools/cibuildwheel.yml | ||
|
||
- job: macos | ||
pool: { vmImage: 'macOS-12' } | ||
variables: | ||
CIBW_BUILD: cp3{8,9,10,11}-macosx_* | ||
CIBW_ARCHS_MACOS: $(arch) | ||
strategy: | ||
matrix: | ||
x86_64: | ||
arch: 'x86_64' | ||
arm64: | ||
arch: 'arm64' | ||
steps: | ||
- template: devtools/cibuildwheel.yml | ||
|
||
- job: windows | ||
pool: { vmImage: 'windows-2019' } | ||
variables: | ||
CIBW_BUILD: cp3{8,9,10,11}-win_amd64 | ||
steps: | ||
- template: devtools/cibuildwheel.yml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
steps: | ||
- template: checkout.yml | ||
- task: UsePythonVersion@0 | ||
inputs: | ||
versionSpec: '3.10' | ||
architecture: 'x64' | ||
displayName: Use Python 3.10 | ||
- bash: | | ||
set -o errexit | ||
python3 -m pip install --upgrade pip | ||
pip3 install cibuildwheel | ||
displayName: Install dependencies | ||
- bash: cibuildwheel --output-dir wheelhouse . | ||
displayName: Build wheels | ||
- task: PublishBuildArtifacts@1 | ||
inputs: { pathtoPublish: 'wheelhouse' } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters