@@ -35,11 +35,7 @@ commands:
35
35
- run :
36
36
name : adding UPLOAD_CHANNEL to BASH_ENV
37
37
command : |
38
- our_upload_channel=nightly
39
- # On tags upload to test instead
40
- if [[ -n "${CIRCLE_TAG}" ]]; then
41
- our_upload_channel=test
42
- fi
38
+ our_upload_channel="test"
43
39
echo "export UPLOAD_CHANNEL=${our_upload_channel}" >> ${BASH_ENV}
44
40
45
41
binary_common : &binary_common
@@ -48,11 +44,11 @@ binary_common: &binary_common
48
44
build_version :
49
45
description : " version number of release binary; by default, build a nightly"
50
46
type : string
51
- default : " "
47
+ default : " 0.2.0 "
52
48
pytorch_version :
53
49
description : " PyTorch version to build against; by default, use a nightly"
54
50
type : string
55
- default : " "
51
+ default : " 1.8.0 "
56
52
# Don't edit these
57
53
python_version :
58
54
description : " Python version to build against (e.g., 3.7)"
83
79
resource_class : 2xlarge+
84
80
steps :
85
81
- checkout_merge
82
+ - designate_upload_channel
86
83
- run : packaging/build_wheel.sh
87
84
- store_artifacts :
88
85
path : dist
98
95
resource_class : 2xlarge+
99
96
steps :
100
97
- checkout_merge
98
+ - designate_upload_channel
101
99
- run :
102
100
no_output_timeout : 20m
103
101
command : packaging/build_conda.sh
@@ -115,6 +113,7 @@ jobs:
115
113
executor : windows-cpu
116
114
steps :
117
115
- checkout_merge
116
+ - designate_upload_channel
118
117
- run :
119
118
name : Build conda packages
120
119
no_output_timeout : 20m
@@ -141,6 +140,7 @@ jobs:
141
140
executor : windows-cpu
142
141
steps :
143
142
- checkout_merge
143
+ - designate_upload_channel
144
144
- run :
145
145
name : Build wheel packages
146
146
command : |
@@ -163,6 +163,7 @@ jobs:
163
163
xcode : " 9.4.1"
164
164
steps :
165
165
- checkout_merge
166
+ - designate_upload_channel
166
167
# - run:
167
168
# name: Install libomp
168
169
# command: HOMEBREW_NO_AUTO_UPDATE=1 brew install libomp
@@ -189,6 +190,7 @@ jobs:
189
190
xcode : " 9.4.1"
190
191
steps :
191
192
- checkout_merge
193
+ - designate_upload_channel
192
194
# - run:
193
195
# name: Install libomp
194
196
# command: HOMEBREW_NO_AUTO_UPDATE=1 brew install libomp
0 commit comments