Skip to content
Snippets Groups Projects
Commit 6d5c28b7 authored by bors's avatar bors
Browse files

Auto merge of #904 - alexcrichton:fix-ci, r=alexcrichton

Fix containers using ubuntu 17.04

Apparently 17.04 has gone away? Or updates are failing now?
parents 041fd77e ac4afe74
No related branches found
No related tags found
No related merge requests found
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
......
# link fails on 17.10
FROM ubuntu:17.04
FROM debian:stretch
RUN apt-get update && apt-get install -y --no-install-recommends \
curl ca-certificates \
......
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
......
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
......
......@@ -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,
}
});
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment