diff options
author | Tristan Gingold <tgingold@free.fr> | 2017-08-25 12:05:25 +0200 |
---|---|---|
committer | Tristan Gingold <tgingold@free.fr> | 2017-08-25 12:05:25 +0200 |
commit | 8342d5af61fc7c936c3f1f8354f3332d47a636b1 (patch) | |
tree | 22a99fabac585912b6652d553a3e612c0886384e /dist/linux/docker | |
parent | fd99c0f8fc967b1b89b4eda249543b3df577d3f0 (diff) | |
download | ghdl-8342d5af61fc7c936c3f1f8354f3332d47a636b1.tar.gz ghdl-8342d5af61fc7c936c3f1f8354f3332d47a636b1.tar.bz2 ghdl-8342d5af61fc7c936c3f1f8354f3332d47a636b1.zip |
travis-ci: use matrix for docker builds
Diffstat (limited to 'dist/linux/docker')
-rw-r--r-- | dist/linux/docker/build-fedora26+mcode | 5 | ||||
-rw-r--r-- | dist/linux/docker/build-stretch+mcode | 7 | ||||
-rw-r--r-- | dist/linux/docker/build-ubuntu14+llvm-3.8 | 7 | ||||
-rw-r--r-- | dist/linux/docker/build-ubuntu14+mcode | 7 |
4 files changed, 26 insertions, 0 deletions
diff --git a/dist/linux/docker/build-fedora26+mcode b/dist/linux/docker/build-fedora26+mcode new file mode 100644 index 000000000..fb0aaee9d --- /dev/null +++ b/dist/linux/docker/build-fedora26+mcode @@ -0,0 +1,5 @@ +# Fedora 26 +FROM fedora:26 + +RUN dnf --nodocs -y install gcc-gnat zlib-devel make \ + && dnf clean all diff --git a/dist/linux/docker/build-stretch+mcode b/dist/linux/docker/build-stretch+mcode new file mode 100644 index 000000000..2830f0769 --- /dev/null +++ b/dist/linux/docker/build-stretch+mcode @@ -0,0 +1,7 @@ +# Debian 9 +FROM debian:stretch-slim + +RUN apt-get update -qq \ + && apt-get -y install --no-install-recommends \ + gnat gcc make zlib1g-dev \ + && apt-get clean diff --git a/dist/linux/docker/build-ubuntu14+llvm-3.8 b/dist/linux/docker/build-ubuntu14+llvm-3.8 new file mode 100644 index 000000000..e90ab7bbc --- /dev/null +++ b/dist/linux/docker/build-ubuntu14+llvm-3.8 @@ -0,0 +1,7 @@ +# Ubuntu 14 +FROM ubuntu:trusty + +RUN apt-get update -qq \ + && apt-get -y install --no-install-recommends \ + gnat gcc make zlib1g-dev llvm-3.8-dev clang-3.8 \ + && apt-get clean diff --git a/dist/linux/docker/build-ubuntu14+mcode b/dist/linux/docker/build-ubuntu14+mcode new file mode 100644 index 000000000..6756dc35f --- /dev/null +++ b/dist/linux/docker/build-ubuntu14+mcode @@ -0,0 +1,7 @@ +# Ubuntu 14 +FROM ubuntu:trusty + +RUN apt-get update -qq \ + && apt-get -y install --no-install-recommends \ + gnat gcc make zlib1g-dev \ + && apt-get clean |