Switch from Debian to Ubuntu 16.04 to work around Rust musl link bug

See https://github.com/rust-lang/rust/issues/34978

Allowing broken musl cross compilers through to stable really does break
some Rust-based projects.
This commit is contained in:
Eric Kidd 2016-09-12 06:45:04 -04:00
parent c6ed680715
commit c1116675a1

View file

@ -1,5 +1,6 @@
# Use Debian 8.0 "Jessie" as the base for our Rust musl toolchain. # Use Debian 16.04 as the base for our Rust musl toolchain, because of
FROM debian:jessie # https://github.com/rust-lang/rust/issues/34978 (as of Rust 1.11).
FROM ubuntu:16.04
# Make sure we have basic dev tools for building C libraries. Our goal # Make sure we have basic dev tools for building C libraries. Our goal
# here is to support the musl-libc builds and Cargo builds needed for a # here is to support the musl-libc builds and Cargo builds needed for a