Skip to content
This repository was archived by the owner on Aug 30, 2024. It is now read-only.

Commit 4e16bab

Browse files
committed
trigger as if scheduled build
1 parent 3b74aa4 commit 4e16bab

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

azure/posix.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
- bash: |
3333
set -e
3434
35-
if [ "$BUILD_REASON" == "Schedule" ]; then
35+
if [ 1 -o "$BUILD_REASON" == "Schedule" ]; then
3636
BUILD_COMMIT=$NIGHTLY_BUILD_COMMIT
3737
fi
3838
echo "Building numpy@$BUILD_COMMIT"
@@ -90,7 +90,7 @@ jobs:
9090

9191
- bash: |
9292
set -e
93-
if [ "$BUILD_REASON" == "Schedule" ]; then
93+
if [ 1 -o "$BUILD_REASON" == "Schedule" ]; then
9494
ANACONDA_ORG="scipy-wheels-nightly"
9595
TOKEN="$MAPPED_NUMPY_NIGHTLY_UPLOAD_TOKEN"
9696
else

azure/windows.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
displayName: Check that we have the expected version and architecture for Python
3737
- bash: |
3838
set -e
39-
if [ "$BUILD_REASON" == "Schedule" ]; then
39+
if [ 1 -o "$BUILD_REASON" == "Schedule" ]; then
4040
BUILD_COMMIT=$NIGHTLY_BUILD_COMMIT
4141
fi
4242
echo "Building numpy@$BUILD_COMMIT"
@@ -118,7 +118,7 @@ jobs:
118118

119119
- bash: |
120120
set -e
121-
if [ "$BUILD_REASON" == "Schedule" ]; then
121+
if [ 1 -o "$BUILD_REASON" == "Schedule" ]; then
122122
ANACONDA_ORG="scipy-wheels-nightly"
123123
TOKEN="$MAPPED_NUMPY_NIGHTLY_UPLOAD_TOKEN"
124124
else

0 commit comments

Comments
 (0)