Skip to content

Commit

Permalink
fix nightly release
Browse files Browse the repository at this point in the history
  • Loading branch information
trittsv authored and eboasson committed Oct 11, 2024
1 parent 97ad37c commit b63a355
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
8 changes: 4 additions & 4 deletions .azure/publish-release-nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@
# Azure Pipeline publishing packages
#

trigger: none
pr: none
trigger: [ '*' ]
pr: [ '*' ]
schedules:
- cron: "0 0 * * *"
displayName: Nightly release
Expand All @@ -38,8 +38,8 @@ jobs:
matrix:
'Ubuntu_20.04_LTS':
image: ubuntu-20.04
'macOS_12':
image: macOS-12
'macOS_13':
image: macOS-13
'Windows_Server_2019_64_bit':
image: windows-2019
steps:
Expand Down
4 changes: 2 additions & 2 deletions .azure/publish-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@ jobs:
matrix:
'Ubuntu_20.04_LTS':
image: ubuntu-20.04
'macOS_12':
image: macOS-12
'macOS_13':
image: macOS-13
'Windows_Server_2019_64_bit':
image: windows-2019
steps:
Expand Down
4 changes: 2 additions & 2 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@
# SPDX-License-Identifier: EPL-2.0 OR BSD-3-Clause
#

trigger: [ '*' ]
pr: [ '*' ]
trigger: none
pr: none

variables:
run-fuzzing: false
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ markers = ["fuzzing: run the fuzzing testsuite."]
[tool.cibuildwheel]

# Skip PyPy (C API incompatible), Skip 32bit systems, Skip universal binaries macOS (we build specific intel/arm ones)
skip = "pp* *-win32 *_i686 *-macosx_universal2:arm64"
skip = "pp* *-win32 *_i686 *-macosx_universal2:arm64 *musllinux*"

# Don't test arm64 macos wheels (we cannot do this on ci: crossbuild)
test-skip = "*musllinux* *-macosx_arm64"
Expand Down

0 comments on commit b63a355

Please sign in to comment.