This repository was archived by the owner on Aug 30, 2024. It is now read-only.
File tree 2 files changed +4
-4
lines changed
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 32
32
- bash : |
33
33
set -e
34
34
35
- if [ "$BUILD_REASON" == "Schedule" ]; then
35
+ if [ 1 -o "$BUILD_REASON" == "Schedule" ]; then
36
36
BUILD_COMMIT=$NIGHTLY_BUILD_COMMIT
37
37
fi
38
38
echo "Building numpy@$BUILD_COMMIT"
90
90
91
91
- bash : |
92
92
set -e
93
- if [ "$BUILD_REASON" == "Schedule" ]; then
93
+ if [ 1 -o "$BUILD_REASON" == "Schedule" ]; then
94
94
ANACONDA_ORG="scipy-wheels-nightly"
95
95
TOKEN="$MAPPED_NUMPY_NIGHTLY_UPLOAD_TOKEN"
96
96
else
Original file line number Diff line number Diff line change 36
36
displayName: Check that we have the expected version and architecture for Python
37
37
- bash : |
38
38
set -e
39
- if [ "$BUILD_REASON" == "Schedule" ]; then
39
+ if [ 1 -o "$BUILD_REASON" == "Schedule" ]; then
40
40
BUILD_COMMIT=$NIGHTLY_BUILD_COMMIT
41
41
fi
42
42
echo "Building numpy@$BUILD_COMMIT"
@@ -118,7 +118,7 @@ jobs:
118
118
119
119
- bash : |
120
120
set -e
121
- if [ "$BUILD_REASON" == "Schedule" ]; then
121
+ if [ 1 -o "$BUILD_REASON" == "Schedule" ]; then
122
122
ANACONDA_ORG="scipy-wheels-nightly"
123
123
TOKEN="$MAPPED_NUMPY_NIGHTLY_UPLOAD_TOKEN"
124
124
else
You can’t perform that action at this time.
0 commit comments