Uh oh!
There was an error while loading. Please reload this page.
travis: Expand the cross linux image - #39111
Conversation
alexcrichton
commented
Jan 17, 2017
cc @japaric, mind checking my logic on this? |
rust-highfive
commented
Jan 17, 2017
r? @brson (rust_highfive has picked a reviewer for you, use r? to override) |
japaric
commented
Jan 17, 2017
LGTM. Just concerned about using Ubuntu's |
This expands the `cross` travis matrix entry with a few more targets that our nightlies are building: * x86_64-rumprun-netbsd * arm-unknown-linux-musleabi * arm-unknown-linux-musleabihf * armv7-unknown-linux-musleabihf * mips-unknown-linux-musl * mipsel-unknown-linux-musl This commit doesn't compile custom toolchains like our current cross-image does, but instead compiles musl manually and then compiles libunwind manually (like x86_64) for use for the ARM targets and just uses openwrt toolchains for the mips targets.
15457c3 to
6b23cc4Comparealexcrichton
commented
Jan 17, 2017
@japaric yeah my hope is that through the use of the musl wrapper scripts we avoid any usage of glibc objects as the wrapper scripts should point everything to the musl objects. I suppose we'll see though! |
brson
commented
Jan 18, 2017
@bors r+ |
bors
commented
Jan 18, 2017
📌 Commit 6b23cc4 has been approved by |
…brson travis: Expand the `cross` linux image This expands the `cross` travis matrix entry with a few more targets that our nightlies are building: * x86_64-rumprun-netbsd * arm-unknown-linux-musleabi * arm-unknown-linux-musleabihf * armv7-unknown-linux-musleabihf * mips-unknown-linux-musl * mipsel-unknown-linux-musl This commit doesn't compile custom toolchains like our current cross-image does, but instead compiles musl manually and then compiles libunwind manually (like x86_64) for use for the ARM targets and just uses openwrt toolchains for the mips targets. cc rust-lang#38531
alexcrichton
commented
Jan 20, 2017
@bors: r- Building this docker image now produces too much output, so it needs to be hidden by default. I fixed this in the rollup and hope to land that but we'll see how that goes. |
Rollup of 28 pull requests - Successful merges: #38603, #38761, #38842, #38847, #38955, #38966, #39062, #39068, #39077, #39111, #39112, #39114, #39118, #39120, #39132, #39135, #39138, #39142, #39143, #39146, #39157, #39166, #39167, #39168, #39179, #39184, #39195, #39197 - Failed merges: #39060, #39145
Rollup of 28 pull requests - Successful merges: #38603, #38761, #38842, #38847, #38955, #38966, #39062, #39068, #39077, #39111, #39112, #39114, #39118, #39120, #39132, #39135, #39138, #39142, #39143, #39146, #39157, #39166, #39167, #39168, #39179, #39184, #39195, #39197 - Failed merges: #39060, #39145
This expands the
crosstravis matrix entry with a few more targets that ournightlies are building:
This commit doesn't compile custom toolchains like our current cross-image does,
but instead compiles musl manually and then compiles libunwind manually (like
x86_64) for use for the ARM targets and just uses openwrt toolchains for the
mips targets.
cc #38531