]> git.lizzy.rs Git - rust.git/commit
Auto merge of #40382 - alexcrichton:split-tested-targets, r=brson
authorbors <bors@rust-lang.org>
Thu, 9 Mar 2017 20:46:14 +0000 (20:46 +0000)
committerbors <bors@rust-lang.org>
Thu, 9 Mar 2017 20:46:14 +0000 (20:46 +0000)
commitec87925325c005922977ebf9b10dc9e98d8a6d40
tree83def9b791defd156f02d1fd79e0d2c0bff57b2b
parent3087a1f39eaeac9d76c8b159dcc64de515bb2b83
parentf44801c5ee71861c67977992d69d14bfb1a702d3
Auto merge of #40382 - alexcrichton:split-tested-targets, r=brson

travis: Split the linux-tested-targets builder

Travis only gives us 30GB disk space and we don't currently have an option to
increase that. Each musl target generates "hello world" binaries of about 3.5MB
in size, and we're testing two targets in the same image. We have around 3k
run-pass tests and 2 musl targets which works out to around 20GB. That's
dangerously close to the limit and is causing PRs to bounce.

This PR splits up the builder in two, one for x86_64 musl and the other for
i686. Hopefully that'll keep us under the disk limit.

Closes #40359