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

Commit 2b9f595

Browse files
authored
Merge pull request #130 from brson/emscripten
Add emscripten targets to new 'rustbuild-cross' slaves
2 parents 53461be + 402ffbe commit 2b9f595

File tree

1 file changed

+8
-6
lines changed

1 file changed

+8
-6
lines changed

master/master.cfg

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ auto_platforms = [
127127
"linux-64-debug-opt",
128128
"linux-musl-64-opt",
129129
"linux-cross-opt",
130-
"linux-rustbuildcross-opt",
130+
"linux-rustbuild-cross-opt",
131131
#"linux-32cross-opt",
132132
"linux-64-opt-rustbuild",
133133

@@ -175,7 +175,7 @@ dist_platforms = ["linux", "mac", "arm-android", "musl-linux",
175175
"cross-linux",
176176
"cross32-linux",
177177
"cross-host-linux",
178-
"rustbuildcross-linux",
178+
"cross-rustbuild-linux",
179179
"mac-ios",
180180
"win-gnu-32", "win-gnu-64",
181181
"win-msvc-32", "win-msvc-64",
@@ -211,13 +211,13 @@ nogate_builders = [
211211
"auto-freebsd10_64-1",
212212
"auto-dragonflybsd-64-opt",
213213
"auto-openbsd-64-opt",
214-
"auto-linux-rustbuildcross-opt",
214+
"auto-linux-rustbuild-cross-opt",
215215
]
216216
dist_nogate_platforms = [
217217
#"mac-ios",
218218
#"cross-host-linux",
219219
#"cross-win",
220-
"rustbuildcross-linux",
220+
"cross-rustbuild-linux",
221221
]
222222

223223
cargo_cross_targets = [
@@ -233,7 +233,7 @@ cargo_cross_targets = [
233233
ios = {'auto': 'cross-ios-opt', 'dist': 'mac-ios'}
234234
lincross = {'auto': 'linux-cross', 'dist': 'cross-linux'}
235235
lincross32 = {'auto': 'linux-32cross', 'dist': 'cross32-linux'}
236-
lincross_rustbuild = {'auto': 'linux-rustbuildcross', 'dist': 'rustbuildcross-linux'}
236+
lincross_rustbuild = {'auto': 'linux-rustbuild-cross', 'dist': 'cross-rustbuild-linux'}
237237
msvc32 = {'auto': 'msvc-32-cross', 'dist': 'win-msvc-32-cross'}
238238

239239
def xhost(name):
@@ -1314,7 +1314,7 @@ def distsnap_buildfactory(platform, channel_label):
13141314

13151315
# Upload artifacts from slave
13161316
slave_dist_dir = "dist"
1317-
if 'cross-host-linux' in platform:
1317+
if 'cross-host-linux' in platform or 'cross-rustbuild-linux' in platform:
13181318
slave_dist_dir = "build/dist"
13191319
f.addStep(DirectoryUpload(slavesrc=slave_dist_dir,
13201320
masterdest=local_dist_platform_dir,
@@ -1822,6 +1822,8 @@ for p in dist_platforms:
18221822
my_targets = targets[:]
18231823
my_hosts = hosts
18241824
rustbuild = None
1825+
if "rustbuild" in p:
1826+
rustbuild = True
18251827

18261828
if channel == 'stable':
18271829
my_cross_targets = stable_cross_targets

0 commit comments

Comments
 (0)