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

Commit

Permalink
Merge pull request #136 from brson/new-builds
Browse files Browse the repository at this point in the history
Package powerpc, mips, and s390x for combined distribution
  • Loading branch information
alexcrichton committed Nov 5, 2016
2 parents ecc813b + d106355 commit 58d0021
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 16 deletions.
16 changes: 8 additions & 8 deletions master/build-rust-manifest.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,14 +60,14 @@
"i686-pc-windows-gnu",
"i686-pc-windows-msvc",
"i686-unknown-linux-gnu",
# "mips-unknown-linux-gnu",
# "mipsel-unknown-linux-gnu",
# "mips64-unknown-linux-gnuabi64",
# "mips64el-unknown-linux-gnuabi64",
# "powerpc-unknown-linux-gnu",
# "powerpc64-unknown-linux-gnu",
# "powerpc64le-unknown-linux-gnu",
# "s390x-unknown-linux-gnu",
"mips-unknown-linux-gnu",
"mipsel-unknown-linux-gnu",
"mips64-unknown-linux-gnuabi64",
"mips64el-unknown-linux-gnuabi64",
"powerpc-unknown-linux-gnu",
"powerpc64-unknown-linux-gnu",
"powerpc64le-unknown-linux-gnu",
"s390x-unknown-linux-gnu",
"x86_64-apple-darwin",
"x86_64-pc-windows-gnu",
"x86_64-pc-windows-msvc",
Expand Down
16 changes: 8 additions & 8 deletions master/master.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -276,14 +276,14 @@ stable_cross_targets = [
{'t': 'x86_64-unknown-netbsd', 'b': xhost('netbsd'), 'host': True, 'pkg': True},
]
beta_cross_targets = stable_cross_targets + [
{'t': 'powerpc-unknown-linux-gnu', 'b': rustbuild_cross, 'host': True},
{'t': 'powerpc64-unknown-linux-gnu', 'b': rustbuild_cross, 'host': True},
{'t': 'powerpc64le-unknown-linux-gnu', 'b': rustbuild_cross, 'host': True},
{'t': 'mips-unknown-linux-gnu', 'b': rustbuild_cross, 'host': True},
{'t': 'mipsel-unknown-linux-gnu', 'b': rustbuild_cross, 'host': True},
{'t': 'mips64-unknown-linux-gnuabi64', 'b': rustbuild_cross, 'host': True},
{'t': 'mips64el-unknown-linux-gnuabi64', 'b': rustbuild_cross, 'host': True},
{'t': 's390x-unknown-linux-gnu', 'b': rustbuild_cross, 'host': True},
{'t': 'powerpc-unknown-linux-gnu', 'b': rustbuild_cross, 'host': True, 'pkg': True},
{'t': 'powerpc64-unknown-linux-gnu', 'b': rustbuild_cross, 'host': True, 'pkg': True},
{'t': 'powerpc64le-unknown-linux-gnu', 'b': rustbuild_cross, 'host': True, 'pkg': True},
{'t': 'mips-unknown-linux-gnu', 'b': rustbuild_cross, 'host': True, 'pkg': True},
{'t': 'mipsel-unknown-linux-gnu', 'b': rustbuild_cross, 'host': True, 'pkg': True},
{'t': 'mips64-unknown-linux-gnuabi64', 'b': rustbuild_cross, 'host': True, 'pkg': True},
{'t': 'mips64el-unknown-linux-gnuabi64', 'b': rustbuild_cross, 'host': True, 'pkg': True},
{'t': 's390x-unknown-linux-gnu', 'b': rustbuild_cross, 'host': True}, 'pkg': True,
]
# FIXME: WHEN YOU PROMOTE THESE ARM TARGETS ALSO CHANGE THE DIST BUILDER SETUP MARKED WITH "XXX"
nightly_cross_targets = beta_cross_targets + [
Expand Down

0 comments on commit 58d0021

Please sign in to comment.