From 62b2f14ffd1d413a29df77c7aa6c11f4073fb602 Mon Sep 17 00:00:00 2001 From: Michael Gratton Date: Wed, 25 Mar 2020 13:42:08 +1100 Subject: [PATCH] .gitlab-ci.yml: Preconfigure /etc/localtime on Ubuntu CI This prevents it blocking waiting for terminal input on upgrades. --- .gitlab-ci.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 902c4601..af7489b1 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -67,6 +67,7 @@ ubuntu: stage: build image: ubuntu:devel before_script: + - ln -fs /usr/share/zoneinfo/Etc/UTC /etc/localtime - apt-get update - apt-get install -q -y --no-install-recommends $UBUNTU_DEPS $UBUNTU_TEST_DEPS - locale-gen $TEST_LOCALE