This repository was archived by the owner on Aug 30, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 4 files changed +11
-11
lines changed Expand file tree Collapse file tree 4 files changed +11
-11
lines changed Original file line number Diff line number Diff line change 2
2
global :
3
3
- REPO_DIR=numpy
4
4
# Also see CRON_COMMIT below
5
- - BUILD_COMMIT=master
5
+ - BUILD_COMMIT=main
6
6
- BUILD_DEPENDS=cython==0.29.21
7
7
- TEST_DEPENDS="pytest hypothesis cffi pytz"
8
8
# Commit when running from cron job
9
- - CRON_COMMIT=master
9
+ - CRON_COMMIT=main
10
10
- EXTRA_ARGV="'--disable-pytest-warnings'"
11
11
12
12
language : python
@@ -73,13 +73,13 @@ script:
73
73
after_success :
74
74
# trigger an upload to the shared ecosystem
75
75
# infrastructure at: https://anaconda.org/scipy-wheels-nightly
76
- # for cron jobs only (restricted to master branch once
76
+ # for cron jobs only (restricted to main branch once
77
77
# per week)
78
78
# The tokens are set from
79
79
# https://travis-ci.org/github/MacPython/numpy-wheels/settings
80
80
# originally generated at
81
81
# anaconda.org/scipy-wheels-nightly/settings/access
82
- - if [ "$TRAVIS_BRANCH" == "master " ] ; then
82
+ - if [ "$TRAVIS_BRANCH" == "main " ] ; then
83
83
ANACONDA_ORG="scipy-wheels-nightly";
84
84
TOKEN=${NUMPY_NIGHTLY_UPLOAD_TOKEN};
85
85
else
Original file line number Diff line number Diff line change @@ -4,14 +4,14 @@ schedules:
4
4
displayName : Weekly build
5
5
branches :
6
6
include :
7
- - master
7
+ - main
8
8
always : true
9
9
10
10
pr :
11
- - master
11
+ - main
12
12
13
13
variables :
14
- BUILD_COMMIT : " master "
14
+ BUILD_COMMIT : " main "
15
15
16
16
jobs :
17
17
- template : azure/windows.yml
Original file line number Diff line number Diff line change 11
11
REPO_DIR : " numpy"
12
12
PLAT : " x86_64"
13
13
CYTHON_BUILD_DEP : " cython==0.29.21"
14
- NIGHTLY_BUILD_COMMIT : " master "
14
+ NIGHTLY_BUILD_COMMIT : " main "
15
15
TEST_DEPENDS : " pytest hypothesis cffi pytz"
16
16
JUNITXML : " test-data.xml"
17
17
TEST_DIR : " tmp_for_test"
97
97
98
98
- bash : |
99
99
set -e
100
- if [ "$BUILD_COMMIT" == "master " ]; then
100
+ if [ "$BUILD_COMMIT" == "main " ]; then
101
101
ANACONDA_ORG="scipy-wheels-nightly"
102
102
TOKEN="$MAPPED_NUMPY_NIGHTLY_UPLOAD_TOKEN"
103
103
else
Original file line number Diff line number Diff line change 8
8
pool :
9
9
vmImage : ${{ parameters.vmImage }}
10
10
variables :
11
- NIGHTLY_BUILD_COMMIT : " master "
11
+ NIGHTLY_BUILD_COMMIT : " main "
12
12
JUNITXML : " test-data.xml"
13
13
TEST_DIR : ' $(Agent.WorkFolder)/tmp_for_test'
14
14
strategy :
@@ -137,7 +137,7 @@ jobs:
137
137
138
138
- bash : |
139
139
set -e
140
- if [ "$BUILD_COMMIT" == "master " ]; then
140
+ if [ "$BUILD_COMMIT" == "main " ]; then
141
141
ANACONDA_ORG="scipy-wheels-nightly"
142
142
TOKEN="$MAPPED_NUMPY_NIGHTLY_UPLOAD_TOKEN"
143
143
else
You can’t perform that action at this time.
0 commit comments