Skip to content
This repository was archived by the owner on Jul 8, 2022. It is now read-only.

Commit 7c65021

Browse files
authored
Enforce non-interactive package installation in CI (#701)
Fixes issue with failing ubuntu:focal jobs due to tzdata package asking user to provide information about location and timezone.
1 parent 07a0ce5 commit 7c65021

File tree

6 files changed

+12
-0
lines changed

6 files changed

+12
-0
lines changed

.travis/debian10/Dockerfile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ ARG APP_GID=2000
66

77
MAINTAINER TANGO Controls team <tango@esrf.fr>
88

9+
ENV DEBIAN_FRONTEND=noninteractive
10+
911
RUN apt-get update && apt-get install -y \
1012
apt-utils \
1113
build-essential \

.travis/debian8/Dockerfile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ ARG APP_GID=2000
66

77
MAINTAINER TANGO Controls team <tango@esrf.fr>
88

9+
ENV DEBIAN_FRONTEND=noninteractive
10+
911
RUN sed -i '/jessie-updates/d' /etc/apt/sources.list # Now archived
1012

1113
RUN apt-get update && apt-get install -y \

.travis/debian9/Dockerfile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ ARG APP_GID=2000
66

77
MAINTAINER TANGO Controls team <tango@esrf.fr>
88

9+
ENV DEBIAN_FRONTEND=noninteractive
10+
911
RUN apt-get update && apt-get install -y \
1012
apt-utils \
1113
build-essential \

.travis/gcc-latest/Dockerfile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ ARG APP_GID=2000
66

77
MAINTAINER TANGO Controls team <tango@esrf.fr>
88

9+
ENV DEBIAN_FRONTEND=noninteractive
10+
911
RUN apt-get update && apt-get install -y \
1012
apt-utils \
1113
build-essential \

.travis/llvm-latest/Dockerfile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ ARG APP_GID=2000
88

99
MAINTAINER TANGO Controls team <tango@esrf.fr>
1010

11+
ENV DEBIAN_FRONTEND=noninteractive
12+
1113
RUN apt-get update && apt-get install -y \
1214
apt-utils \
1315
build-essential \

.travis/ubuntu-20.04/Dockerfile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ ARG APP_GID=2000
66

77
MAINTAINER TANGO Controls team <tango@esrf.fr>
88

9+
ENV DEBIAN_FRONTEND=noninteractive
10+
911
RUN apt-get update && apt-get install -y \
1012
apt-utils \
1113
build-essential \

0 commit comments

Comments
 (0)