Skip to content

Commit fb75c32

Browse files
committed
ci: use 20.04 on x86_64-gnu-nopt builder
This commit switches the x86_64-gnu-nopt builder to use Ubuntu 20.04, which contains a more recent gdb version than Ubuntu 16.04 (newer gdb versions fix a bug that Split DWARF can trigger, see rust-lang/rust#77177 for motivation). x86_64-gnu-nopt is chosen because it runs compare modes, which is how Split DWARF testing is implemented in rust-lang/rust#77177. Signed-off-by: David Wood <[email protected]>
1 parent 39b841d commit fb75c32

File tree

1 file changed

+3
-2
lines changed
  • src/ci/docker/host-x86_64/x86_64-gnu-nopt

1 file changed

+3
-2
lines changed

Diff for: src/ci/docker/host-x86_64/x86_64-gnu-nopt/Dockerfile

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
1-
FROM ubuntu:16.04
1+
FROM ubuntu:20.04
22

3-
RUN apt-get update && apt-get install -y --no-install-recommends \
3+
# Avoid interactive prompts while installing `tzdata` dependency with `DEBIAN_FRONTEND`.
4+
RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \
45
g++ \
56
make \
67
ninja-build \

0 commit comments

Comments
 (0)