Skip to content

Commit cad6d45

Browse files
authored
Fix CICD pipelines (Waikato#231)
* Fix Travis CI pipeline * Fix devel docker image
1 parent 740e8ca commit cad6d45

File tree

2 files changed

+7
-0
lines changed

2 files changed

+7
-0
lines changed

.travis.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,7 @@ language: java
22

33
jdk: oraclejdk11
44

5+
install: sudo apt-get install texlive-full
6+
57
notifications:
68
email: false

docker/devel-gui.Dockerfile

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ RUN mkdir /app
44

55
WORKDIR /app
66

7+
# This is a workaround to bypass the tzdata prompts
8+
ENV TZ=Europe/Paris
9+
RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone
10+
711
RUN apt-get update && apt-get install -y --no-install-recommends \
812
wget \
913
git \
@@ -12,6 +16,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
1216
openjdk-8-jdk \
1317
maven \
1418
unzip \
19+
texlive-full \
1520
&& \
1621
apt-get clean && \
1722
rm -rf /var/lib/apt/lists/*

0 commit comments

Comments
 (0)