Skip to content
This repository was archived by the owner on Nov 21, 2018. It is now read-only.

Commit 17c11e2

Browse files
committed
Promote beta targets
1 parent 36554de commit 17c11e2

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

master/master.cfg

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -274,8 +274,6 @@ stable_cross_targets = [
274274
{'t': 'x86_64-rumprun-netbsd', 'b': lincross},
275275
{'t': 'x86_64-unknown-freebsd', 'b': xhost('freebsd'), 'host': True, 'pkg': True},
276276
{'t': 'x86_64-unknown-netbsd', 'b': xhost('netbsd'), 'host': True, 'pkg': True},
277-
]
278-
beta_cross_targets = stable_cross_targets + [
279277
{'t': 'powerpc-unknown-linux-gnu', 'b': rustbuild_cross, 'host': True, 'pkg': True},
280278
{'t': 'powerpc64-unknown-linux-gnu', 'b': rustbuild_cross, 'host': True, 'pkg': True},
281279
{'t': 'powerpc64le-unknown-linux-gnu', 'b': rustbuild_cross, 'host': True, 'pkg': True},
@@ -286,13 +284,15 @@ beta_cross_targets = stable_cross_targets + [
286284
{'t': 's390x-unknown-linux-gnu', 'b': rustbuild_cross, 'host': True}, 'pkg': True,
287285
]
288286
# FIXME: WHEN YOU PROMOTE THESE ARM TARGETS ALSO CHANGE THE DIST BUILDER SETUP MARKED WITH "XXX"
289-
nightly_cross_targets = beta_cross_targets + [
287+
beta_cross_targets = stable_cross_targets + [
290288
{'t': 'arm-unknown-linux-musleabi', 'b': lincross_rustbuild},
291289
{'t': 'arm-unknown-linux-musleabihf', 'b': lincross_rustbuild},
292290
{'t': 'armv7-unknown-linux-musleabihf', 'b': lincross_rustbuild},
293291
{'t': 'asmjs-unknown-emscripten', 'b': lincross_rustbuild},
294292
{'t': 'wasm32-unknown-emscripten', 'b': lincross_rustbuild},
295293
]
294+
nightly_cross_targets = beta_cross_targets + [
295+
]
296296

297297
####### BUILDSLAVES
298298

@@ -1854,7 +1854,7 @@ for p in dist_platforms:
18541854

18551855
# FIXME: WHEN ARM TARGETS ARE PROMOTED CHANGE THIS TO INCLUDE BETA / STABLE XXX
18561856
if 'cross-rustbuild-linux' in p:
1857-
if channel == 'nightly':
1857+
if channel == 'nightly' or channel == 'beta':
18581858
musl = "arm"
18591859
else:
18601860
musl = None

0 commit comments

Comments
 (0)