Move some containers to ubuntu 18.04

Apparently 17.04 is broken now?
This commit is contained in:
Alex Crichton 2018-01-18 11:21:30 -08:00
parent 041fd77ea7
commit 1f29ac3167
4 changed files with 8 additions and 3 deletions

View File

@ -1,4 +1,4 @@
FROM ubuntu:17.04
FROM ubuntu:18.04
RUN apt-get update
RUN apt-get install -y --no-install-recommends \
gcc-multilib libc6-dev ca-certificates

View File

@ -1,4 +1,4 @@
FROM ubuntu:17.04
FROM ubuntu:18.04
RUN apt-get update
RUN apt-get install -y --no-install-recommends \
gcc libc6-dev ca-certificates

View File

@ -1,4 +1,4 @@
FROM ubuntu:17.04
FROM ubuntu:18.04
RUN apt-get update
RUN apt-get install -y --no-install-recommends \
gcc-multilib libc6-dev ca-certificates

View File

@ -555,6 +555,11 @@ fn main() {
// These are defined for Solaris 11, but the crate is tested on illumos, where they are currently not defined
"EADI" | "PORT_SOURCE_POSTWAIT" | "PORT_SOURCE_SIGNAL" | "PTHREAD_STACK_MIN" => true,
// These change all the time from release to release of linux
// distros, let's just not bother trying to verify them. They
// shouldn't be used in code anyway...
"AF_MAX" | "PF_MAX" => true,
_ => false,
}
});