This repository was archived by the owner on Aug 30, 2024. It is now read-only.
File tree 4 files changed +5
-4
lines changed
4 files changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -58,7 +58,7 @@ where user is the ``ANACONDA_ORG`` value in the ``yml`` files.
58
58
Triggering a build
59
59
==================
60
60
61
- You will likely want to edit the ``azure/* `` files to
61
+ You will likely want to edit the ``azure-pipelines.yml `` files to
62
62
specify the ``BUILD_COMMIT `` before triggering a build - see below.
63
63
64
64
You will need write permission to the github repository to trigger new builds.
@@ -75,7 +75,7 @@ Which numpy commit does the repository build?
75
75
76
76
PRs merged to this repo from a fork, and commits directly pushed to this repo
77
77
will build the commit specified in the ``BUILD_COMMIT `` at the top of the
78
- ``azure/windows .yml `` and `` azure/posix.yml `` files , the wheels will be
78
+ ``azure-pipelines .yml `` file , the wheels will be
79
79
uploaded to https://anaconda.org/multibuild-wheels-staging/numpy. The
80
80
``NIGHTLY_BUILD_COMMIT `` is built once a week (sorry for the misnomer),
81
81
and uploaded to https://anaconda.org/scipy-wheels-nightly/.
Original file line number Diff line number Diff line change @@ -13,6 +13,9 @@ trigger:
13
13
pr :
14
14
- master
15
15
16
+ variables :
17
+ BUILD_COMMIT : " master"
18
+
16
19
jobs :
17
20
- template : azure/windows.yml
18
21
parameters :
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 : " master"
13
12
PLAT : " x86_64"
14
13
CYTHON_BUILD_DEP : " cython==0.29.16"
15
14
NIGHTLY_BUILD_COMMIT : " master"
Original file line number Diff line number Diff line change 8
8
pool :
9
9
vmImage : ${{ parameters.vmImage }}
10
10
variables :
11
- BUILD_COMMIT : " master"
12
11
NIGHTLY_BUILD_COMMIT : " master"
13
12
JUNITXML : " test-data.xml"
14
13
TEST_DIR : ' $(Agent.WorkFolder)/tmp_for_test'
You can’t perform that action at this time.
0 commit comments