summaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
diff options
context:
space:
mode:
authorPeter Hutterer <peter.hutterer@who-t.net>2018-07-30 10:51:36 +1000
committerPeter Hutterer <peter.hutterer@who-t.net>2018-07-30 10:51:36 +1000
commitdc877190ec92730e007e3949e80db91a4b37225d (patch)
tree8eeed1bb82919dd60d10be1dc484a2d555057048 /.gitlab-ci.yml
parent608b451eafd2a3c85fe7ade8875a50b1d8d0cb95 (diff)
downloadlibinput-dc877190ec92730e007e3949e80db91a4b37225d.tar.gz
Gitlab CI: set DEBIAN_FRONTEND noninteractive for the Ubuntu images
Because Godot doesn't care about tzdata, so waiting for him is pointless. Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r--.gitlab-ci.yml10
1 files changed, 5 insertions, 5 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index a4beab3a..e9e89d5a 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -275,11 +275,11 @@ fedora:27@docker-prep:
# create a Dockerfile with our dependencies
- echo "FROM ubuntu:$UBUNTU_VERSION" > Dockerfile
- echo "WORKDIR /app" >> Dockerfile
- - echo "RUN apt-get update" >> Dockerfile
- - echo "RUN apt-get install -y software-properties-common" >> Dockerfile
- - echo "RUN add-apt-repository universe" >> Dockerfile
- - echo "RUN apt-get update" >> Dockerfile
- - echo "RUN apt-get install -y $UBUNTU_DEBS" >> Dockerfile
+ - echo "RUN DEBIAN_FRONTEND=noninteractive apt-get update" >> Dockerfile
+ - echo "RUN DEBIAN_FRONTEND=noninteractive apt-get install -y software-properties-common" >> Dockerfile
+ - echo "RUN DEBIAN_FRONTEND=noninteractive add-apt-repository universe" >> Dockerfile
+ - echo "RUN DEBIAN_FRONTEND=noninteractive apt-get update" >> Dockerfile
+ - echo "RUN DEBIAN_FRONTEND=noninteractive apt-get install -y $UBUNTU_DEBS" >> Dockerfile
# create the docker image
- docker build --tag $UBUNTU_DOCKER_IMAGE:latest --tag $UBUNTU_DOCKER_IMAGE:$CI_JOB_ID .