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

Commit bc9b6ca

Browse files
committed
Promote beta targets to stable
1 parent 619636e commit bc9b6ca

File tree

1 file changed

+3
-8
lines changed

1 file changed

+3
-8
lines changed

master/master.cfg

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -254,15 +254,14 @@ stable_cross_targets = [
254254
{'t': 'mips64-unknown-linux-gnuabi64', 'b': rustbuild_cross, 'host': True, 'pkg': True},
255255
{'t': 'mips64el-unknown-linux-gnuabi64', 'b': rustbuild_cross, 'host': True, 'pkg': True},
256256
{'t': 's390x-unknown-linux-gnu', 'b': rustbuild_cross, 'host': True, 'pkg': True},
257-
]
258-
# FIXME: WHEN YOU PROMOTE THESE ARM TARGETS ALSO CHANGE THE DIST BUILDER SETUP MARKED WITH "XXX"
259-
beta_cross_targets = stable_cross_targets + [
260257
{'t': 'arm-unknown-linux-musleabi', 'b': lincross_rustbuild},
261258
{'t': 'arm-unknown-linux-musleabihf', 'b': lincross_rustbuild},
262259
{'t': 'armv7-unknown-linux-musleabihf', 'b': lincross_rustbuild},
263260
{'t': 'asmjs-unknown-emscripten', 'b': lincross_rustbuild},
264261
{'t': 'wasm32-unknown-emscripten', 'b': lincross_rustbuild},
265262
]
263+
beta_cross_targets = stable_cross_targets + [
264+
]
266265
nightly_cross_targets = beta_cross_targets + [
267266
]
268267

@@ -1671,12 +1670,8 @@ for p in dist_platforms:
16711670
if "rustbuild" in p:
16721671
rustbuild = True
16731672

1674-
# FIXME: WHEN ARM TARGETS ARE PROMOTED CHANGE THIS TO INCLUDE BETA / STABLE XXX
16751673
if 'cross-rustbuild-linux' in p:
1676-
if channel == 'nightly' or channel == 'beta':
1677-
musl = "arm"
1678-
else:
1679-
musl = None
1674+
musl = "arm"
16801675

16811676
if channel == 'stable':
16821677
my_cross_targets = stable_cross_targets

0 commit comments

Comments
 (0)