From 35598cf6226eb1c064f362835e0855cbbca3e900 Mon Sep 17 00:00:00 2001 From: Tim Allen Date: Tue, 9 Jun 2020 05:33:17 +1000 Subject: [PATCH] Prevent Debian packages from prompting for configuration. At some point the Debian tzdata package started waiting for somebody to tell it what timezone it was in, causing CI builds to timeout. --- .cirrus.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.cirrus.yml b/.cirrus.yml index 02204e3f..7c85a0bf 100644 --- a/.cirrus.yml +++ b/.cirrus.yml @@ -3,7 +3,7 @@ linux-x86_64-binaries_task: image: ubuntu:latest setup_script: - - apt-get update && apt-get -y install build-essential libgtk2.0-dev libpulse-dev mesa-common-dev libgtksourceview2.0-dev libcairo2-dev libsdl2-dev libxv-dev libao-dev libopenal-dev libudev-dev zip + - apt-get update && DEBIAN_FRONTEND=noninteractive apt-get -y install build-essential libgtk2.0-dev libpulse-dev mesa-common-dev libgtksourceview2.0-dev libcairo2-dev libsdl2-dev libxv-dev libao-dev libopenal-dev libudev-dev zip compile_script: - make -C bsnes local=false @@ -49,7 +49,7 @@ windows-x86_64-binaries_task: image: ubuntu:latest setup_script: - - apt-get update && apt-get -y install build-essential mingw-w64 zip + - apt-get update && DEBIAN_FRONTEND=noninteractive apt-get -y install build-essential mingw-w64 zip compile_script: - make -C bsnes local=false platform=windows compiler="x86_64-w64-mingw32-g++" windres="x86_64-w64-mingw32-windres"