This repository was archived by the owner on Aug 30, 2024. It is now read-only.
File tree 3 files changed +9
-5
lines changed
3 files changed +9
-5
lines changed Original file line number Diff line number Diff line change 9
9
vmImage : ${{ parameters.vmImage }}
10
10
variables :
11
11
REPO_DIR : " numpy"
12
- BUILD_COMMIT : ' f1be9e50ff ' # needed for 32 bit builds, should become 1.18.4
12
+ BUILD_COMMIT : ' maintenance/ 1.18.x '
13
13
PLAT : " x86_64"
14
14
CYTHON_BUILD_DEP : " cython==0.29.16"
15
15
NIGHTLY_BUILD_COMMIT : " master"
97
97
ANACONDA_ORG="multibuild-wheels-staging"
98
98
TOKEN="$MAPPED_NUMPY_STAGING_UPLOAD_TOKEN"
99
99
fi
100
- if [ "$TOKEN" == "" ]; then
100
+ if [ "$TOKEN" == "" -o "${TOKEN:0:7}" == "\$(NUMPY" ]; then
101
101
echo "##[warning] Could not find anaconda.org upload token in secret variables"
102
+ TOKEN=""
102
103
fi
103
104
echo "##vso[task.setvariable variable=TOKEN]$TOKEN"
104
105
echo "##vso[task.setvariable variable=ANACONDA_ORG]$ANACONDA_ORG"
Original file line number Diff line number Diff line change 8
8
pool :
9
9
vmImage : ${{ parameters.vmImage }}
10
10
variables :
11
- BUILD_COMMIT : " v1 .18.3 "
11
+ BUILD_COMMIT : ' maintenance/1 .18.x '
12
12
NIGHTLY_BUILD_COMMIT : " master"
13
13
JUNITXML : " test-data.xml"
14
14
TEST_DIR : ' $(Agent.WorkFolder)/tmp_for_test'
@@ -125,8 +125,9 @@ jobs:
125
125
ANACONDA_ORG="multibuild-wheels-staging"
126
126
TOKEN="$MAPPED_NUMPY_STAGING_UPLOAD_TOKEN"
127
127
fi
128
- if [ "$TOKEN" == "" ]; then
128
+ if [ "$TOKEN" == "" -o "${TOKEN:0:7}" == "\$(NUMPY" ]; then
129
129
echo "##[warning] Could not find anaconda.org upload token in secret variables"
130
+ TOKEN=""
130
131
fi
131
132
echo "##vso[task.setvariable variable=TOKEN]$TOKEN"
132
133
echo "##vso[task.setvariable variable=ANACONDA_ORG]$ANACONDA_ORG"
Original file line number Diff line number Diff line change 4
4
set -x
5
5
OPENBLAS_VERSION=" v0.3.7"
6
6
MACOSX_DEPLOYMENT_TARGET=10.9
7
- CFLAGS=" -msse2 -std=c99 -fno-strict-aliasing"
7
+ # Causes failure for pre-1.19 in np.reciprocal
8
+ # CFLAGS="-msse2 -std=c99 -fno-strict-aliasing"
9
+ CFLAGS=" -std=c99 -fno-strict-aliasing"
You can’t perform that action at this time.
0 commit comments