1
1
mirror of https://github.com/kanaka/mal.git synced 2024-09-19 09:38:28 +03:00

vhdl: Update Dockerfile, add Travis-CI build

This commit is contained in:
Dov Murik 2016-05-05 16:06:28 -04:00
parent 36e91db404
commit d14053739b
2 changed files with 6 additions and 1 deletions

View File

@ -58,6 +58,7 @@ matrix:
- {env: IMPL=swift3 NO_DOCKER=1, os: osx, osx_image: xcode7}
- {env: IMPL=tcl, services: [docker]}
- {env: IMPL=vb, services: [docker]}
- {env: IMPL=vhdl, services: [docker]}
- {env: IMPL=vimscript, services: [docker]}
script:

View File

@ -1,4 +1,4 @@
FROM ubuntu:vivid
FROM ubuntu:14.04
MAINTAINER Joel Martin <github@martintribe.org>
##########################################################
@ -21,6 +21,10 @@ WORKDIR /mal
# Specific implementation requirements
##########################################################
RUN apt-get -y install software-properties-common && \
apt-add-repository -y ppa:pgavin/ghdl && \
apt-get update -y
RUN apt-get -y install ghdl
ENV HOME /mal