Skip to content

Commit 4d71027

Browse files
committed
travis: Disable source tarballs on most builders
Currently we create a source tarball on almost all of the `DEPLOY=1` builders but this has the adverse side effect of all source tarballs overriding themselves in the S3 bucket. Normally this is ok but unfortunately a source tarball created on Windows is not buildable on Unix. On Windows the vendored sources contain paths with `\` characters in them which when interpreted on Unix end up in "file not found" errors. Instead of this overwriting behavior, whitelist just one linux builder for producing tarballs and avoid producing tarballs on all other hosts.
1 parent 48bc082 commit 4d71027

File tree

5 files changed

+18
-1
lines changed

5 files changed

+18
-1
lines changed

configure

+1
Original file line numberDiff line numberDiff line change
@@ -650,6 +650,7 @@ opt ninja 0 "build LLVM using the Ninja generator (for MSVC, requires building i
650650
opt locked-deps 0 "force Cargo.lock to be up to date"
651651
opt vendor 0 "enable usage of vendored Rust crates"
652652
opt sanitizers 0 "build the sanitizer runtimes (asan, lsan, msan, tsan)"
653+
opt dist-src 1 "when building tarballs enables building a source tarball"
653654

654655
# Optimization and debugging options. These may be overridden by the release channel, etc.
655656
opt_nosave optimize 1 "build optimized rust code"

src/bootstrap/config.rs

+4
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,7 @@ pub struct Config {
7272
pub rustc_default_ar: Option<String>,
7373
pub rust_optimize_tests: bool,
7474
pub rust_debuginfo_tests: bool,
75+
pub rust_dist_src: bool,
7576

7677
pub build: String,
7778
pub host: Vec<String>,
@@ -183,6 +184,7 @@ struct Dist {
183184
sign_folder: Option<String>,
184185
gpg_password_file: Option<String>,
185186
upload_addr: Option<String>,
187+
src_tarball: Option<bool>,
186188
}
187189

188190
#[derive(RustcDecodable)]
@@ -380,6 +382,7 @@ impl Config {
380382
config.dist_sign_folder = t.sign_folder.clone().map(PathBuf::from);
381383
config.dist_gpg_password_file = t.gpg_password_file.clone().map(PathBuf::from);
382384
config.dist_upload_addr = t.upload_addr.clone();
385+
set(&mut config.rust_dist_src, t.src_tarball);
383386
}
384387

385388
return config
@@ -448,6 +451,7 @@ impl Config {
448451
("FULL_BOOTSTRAP", self.full_bootstrap),
449452
("EXTENDED", self.extended),
450453
("SANITIZERS", self.sanitizers),
454+
("DIST_SRC", self.rust_dist_src),
451455
}
452456

453457
match key {

src/bootstrap/dist.rs

+4
Original file line numberDiff line numberDiff line change
@@ -364,6 +364,10 @@ const CARGO_VENDOR_VERSION: &'static str = "0.1.4";
364364

365365
/// Creates the `rust-src` installer component and the plain source tarball
366366
pub fn rust_src(build: &Build) {
367+
if !build.config.rust_dist_src {
368+
return
369+
}
370+
367371
println!("Dist src");
368372

369373
let name = pkgname(build, "rust-src");

src/ci/docker/dist-x86-linux/Dockerfile

+5-1
Original file line numberDiff line numberDiff line change
@@ -82,5 +82,9 @@ RUN curl -L https://api.pub.build.mozilla.org/tooltool/sha512/$SCCACHE_DIGEST |
8282
ENV HOSTS=i686-unknown-linux-gnu
8383
ENV HOSTS=$HOSTS,x86_64-unknown-linux-gnu
8484

85-
ENV RUST_CONFIGURE_ARGS --host=$HOSTS --enable-extended --enable-sanitizers
85+
ENV RUST_CONFIGURE_ARGS \
86+
--host=$HOSTS \
87+
--enable-extended \
88+
--enable-sanitizers
8689
ENV SCRIPT python2.7 ../x.py dist --host $HOSTS --target $HOSTS
90+
ENV DIST_SRC 1

src/ci/run.sh

+4
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,10 @@ RUST_CONFIGURE_ARGS="$RUST_CONFIGURE_ARGS --enable-quiet-tests"
2525
RUST_CONFIGURE_ARGS="$RUST_CONFIGURE_ARGS --disable-manage-submodules"
2626
RUST_CONFIGURE_ARGS="$RUST_CONFIGURE_ARGS --enable-locked-deps"
2727

28+
if [ "$DIST_SRC" == "" ]; then
29+
RUST_CONFIGURE_ARGS="$RUST_CONFIGURE_ARGS --disable-dist-src"
30+
fi
31+
2832
# If we're deploying artifacts then we set the release channel, otherwise if
2933
# we're not deploying then we want to be sure to enable all assertions becauase
3034
# we'll be running tests

0 commit comments

Comments
 (0)