Skip to content

Commit

Permalink
ARROW-8267: [CI][GLib] Fix build error on Ubuntu 16.04
Browse files Browse the repository at this point in the history
Because Meson 0.54.0 requires Ninja 1.7 but Ubuntu 16.04 provides
Ninja 1.5.1 by default.

Closes #6756 from kou/ci-glib-ubuntu-16.04

Authored-by: Sutou Kouhei <kou@clear-code.com>
Signed-off-by: Neal Richardson <neal.p.richardson@gmail.com>
  • Loading branch information
kou authored and nealrichardson committed Mar 29, 2020
1 parent 27bc6fc commit f140625
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions ci/docker/linux-apt-c-glib.dockerfile
Expand Up @@ -28,6 +28,10 @@ RUN apt-get update -y -q && \
luarocks \
pkg-config \
ruby-dev && \
if [ "$(lsb_release --codename --short)" = "xenial" ]; then \
apt-get install -y -q --no-install-recommends -t xenial-backports \
ninja-build; \
fi && \
apt-get clean && \
rm -rf /var/lib/apt/lists/*

Expand Down

0 comments on commit f140625

Please sign in to comment.