Skip to content

Commit

Permalink
Add Zesty to travis builds
Browse files Browse the repository at this point in the history
  • Loading branch information
hamishmack committed Aug 12, 2017
1 parent e14b5ee commit d10e3ca
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .travis.yml
Expand Up @@ -11,6 +11,9 @@ env:
- CABALVER=1.24 GHCVER=7.10.3 OSVER=xenial
- CABALVER=1.24 GHCVER=8.0.2 OSVER=xenial
- CABALVER=1.24 GHCVER=8.2.1 OSVER=xenial
- CABALVER=1.24 GHCVER=7.10.3 OSVER=zesty
- CABALVER=1.24 GHCVER=8.0.2 OSVER=zesty
- CABALVER=1.24 GHCVER=8.2.1 OSVER=zesty

before_install:
- docker build -t ltk -f travis/$OSVER.Dockerfile travis
Expand Down
2 changes: 1 addition & 1 deletion travis/xenial.Dockerfile
Expand Up @@ -4,7 +4,7 @@ RUN apt-get update && \
apt-get -y install software-properties-common && \
add-apt-repository -y ppa:hvr/ghc && \
apt-get update && \
apt-get -y install happy-1.19.5 alex-3.1.7 libgirepository1.0-dev libgtksourceview-3.0-dev libwebkitgtk-3.0-dev
apt-get -y install happy-1.19.5 alex-3.1.7 libgirepository1.0-dev libgtksourceview-3.0-dev libwebkitgtk-3.0-dev libtinfo-dev

RUN mkdir /build
WORKDIR /build
Expand Down
11 changes: 11 additions & 0 deletions travis/zesty.Dockerfile
@@ -0,0 +1,11 @@
FROM ubuntu:zesty

RUN apt-get update && \
apt-get -y install software-properties-common && \
add-apt-repository -y ppa:hvr/ghc && \
apt-get update && \
apt-get -y install happy-1.19.5 alex-3.1.7 libgirepository1.0-dev libgtksourceview-3.0-dev libwebkitgtk-3.0-dev libtinfo-dev

RUN mkdir /build
WORKDIR /build

0 comments on commit d10e3ca

Please sign in to comment.