forked from kanaka/mal
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Travis: add remaining implementations.
- new impls: awk, crystal, elixir, erlang, es6, fsharp, groovy, guile (disabled), rpython (disabled)
- Loading branch information
Showing
15 changed files
with
319 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
FROM ubuntu:vivid | ||
MAINTAINER Joel Martin <[email protected]> | ||
|
||
########################################################## | ||
# General requirements for testing or common across many | ||
# implementations | ||
########################################################## | ||
|
||
RUN apt-get -y update | ||
|
||
# Required for running tests | ||
RUN apt-get -y install make python | ||
|
||
# Some typical implementation and test requirements | ||
RUN apt-get -y install curl libreadline-dev libedit-dev | ||
|
||
RUN mkdir -p /mal | ||
WORKDIR /mal | ||
|
||
########################################################## | ||
# Specific implementation requirements | ||
########################################################## | ||
|
||
# GNU Awk | ||
RUN apt-get -y install gawk |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
FROM ubuntu:vivid | ||
MAINTAINER Joel Martin <[email protected]> | ||
|
||
########################################################## | ||
# General requirements for testing or common across many | ||
# implementations | ||
########################################################## | ||
|
||
RUN apt-get -y update | ||
|
||
# Required for running tests | ||
RUN apt-get -y install make python | ||
|
||
# Some typical implementation and test requirements | ||
RUN apt-get -y install curl libreadline-dev libedit-dev | ||
|
||
RUN mkdir -p /mal | ||
WORKDIR /mal | ||
|
||
########################################################## | ||
# Specific implementation requirements | ||
########################################################## | ||
|
||
# Install g++ for any C/C++ based implementations | ||
RUN apt-get -y install g++ | ||
|
||
# Crystal | ||
RUN curl http://dist.crystal-lang.org/apt/setup.sh | bash | ||
RUN apt-get -y install crystal |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
FROM ubuntu:vivid | ||
MAINTAINER Joel Martin <[email protected]> | ||
|
||
########################################################## | ||
# General requirements for testing or common across many | ||
# implementations | ||
########################################################## | ||
|
||
RUN apt-get -y update | ||
|
||
# Required for running tests | ||
RUN apt-get -y install make python | ||
|
||
# Some typical implementation and test requirements | ||
RUN apt-get -y install curl libreadline-dev libedit-dev | ||
|
||
RUN mkdir -p /mal | ||
WORKDIR /mal | ||
|
||
########################################################## | ||
# Specific implementation requirements | ||
########################################################## | ||
|
||
# Elixir | ||
RUN curl -O https://packages.erlang-solutions.com/erlang-solutions_1.0_all.deb \ | ||
&& dpkg -i erlang-solutions_1.0_all.deb | ||
RUN apt-get -y update | ||
RUN apt-get -y install elixir | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
FROM ubuntu:vivid | ||
MAINTAINER Joel Martin <[email protected]> | ||
|
||
########################################################## | ||
# General requirements for testing or common across many | ||
# implementations | ||
########################################################## | ||
|
||
RUN apt-get -y update | ||
|
||
# Required for running tests | ||
RUN apt-get -y install make python | ||
|
||
# Some typical implementation and test requirements | ||
RUN apt-get -y install curl libreadline-dev libedit-dev | ||
|
||
RUN mkdir -p /mal | ||
WORKDIR /mal | ||
|
||
########################################################## | ||
# Specific implementation requirements | ||
########################################################## | ||
|
||
# Erlang R17 (so I can use maps) | ||
RUN apt-get -y install build-essential libncurses5-dev libssl-dev | ||
RUN cd /tmp && curl -O http://www.erlang.org/download/otp_src_17.5.tar.gz \ | ||
&& tar -C /tmp -zxf /tmp/otp_src_17.5.tar.gz \ | ||
&& cd /tmp/otp_src_17.5 && ./configure && make && make install \ | ||
&& rm -rf /tmp/otp_src_17.5 /tmp/otp_src_17.5.tar.gz | ||
# Rebar for building the Erlang implementation | ||
RUN apt-get -y install git sudo | ||
RUN cd /tmp/ && git clone -q https://github.com/rebar/rebar.git \ | ||
&& cd /tmp/rebar && ./bootstrap && cp rebar /usr/local/bin \ | ||
&& rm -rf /tmp/rebar | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
FROM ubuntu:vivid | ||
MAINTAINER Joel Martin <[email protected]> | ||
|
||
########################################################## | ||
# General requirements for testing or common across many | ||
# implementations | ||
########################################################## | ||
|
||
RUN apt-get -y update | ||
|
||
# Required for running tests | ||
RUN apt-get -y install make python | ||
|
||
# Some typical implementation and test requirements | ||
RUN apt-get -y install curl libreadline-dev libedit-dev | ||
|
||
RUN mkdir -p /mal | ||
WORKDIR /mal | ||
|
||
########################################################## | ||
# Specific implementation requirements | ||
########################################################## | ||
|
||
# For building node modules | ||
RUN apt-get -y install g++ | ||
|
||
# Add nodesource apt repo config for 0.12 stable | ||
RUN curl -sL https://deb.nodesource.com/setup_0.12 | bash - | ||
|
||
# Install nodejs | ||
RUN apt-get -y install nodejs | ||
|
||
# Link common name | ||
RUN ln -sf nodejs /usr/bin/node | ||
|
||
ENV NPM_CONFIG_CACHE /mal/.npm | ||
|
||
# ES6 | ||
RUN npm install -g babel |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
FROM ubuntu:vivid | ||
MAINTAINER Joel Martin <[email protected]> | ||
|
||
########################################################## | ||
# General requirements for testing or common across many | ||
# implementations | ||
########################################################## | ||
|
||
RUN apt-get -y update | ||
|
||
# Required for running tests | ||
RUN apt-get -y install make python | ||
|
||
# Some typical implementation and test requirements | ||
RUN apt-get -y install curl libreadline-dev libedit-dev | ||
|
||
RUN mkdir -p /mal | ||
WORKDIR /mal | ||
|
||
########################################################## | ||
# Specific implementation requirements | ||
########################################################## | ||
|
||
# Deps for Mono-based languages (C#, VB.Net) | ||
RUN apt-get -y install mono-runtime mono-mcs mono-vbnc | ||
|
||
RUN apt-get -y install fsharp |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
FROM ubuntu:vivid | ||
MAINTAINER Joel Martin <[email protected]> | ||
|
||
########################################################## | ||
# General requirements for testing or common across many | ||
# implementations | ||
########################################################## | ||
|
||
RUN apt-get -y update | ||
|
||
# Required for running tests | ||
RUN apt-get -y install make python | ||
|
||
# Some typical implementation and test requirements | ||
RUN apt-get -y install curl libreadline-dev libedit-dev | ||
|
||
RUN mkdir -p /mal | ||
WORKDIR /mal | ||
|
||
########################################################## | ||
# Specific implementation requirements | ||
########################################################## | ||
|
||
# Java and Groovy | ||
RUN apt-get -y install openjdk-7-jdk | ||
#RUN apt-get -y install maven2 | ||
#ENV MAVEN_OPTS -Duser.home=/mal | ||
RUN apt-get -y install groovy | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
FROM ubuntu:vivid | ||
MAINTAINER Joel Martin <[email protected]> | ||
|
||
########################################################## | ||
# General requirements for testing or common across many | ||
# implementations | ||
########################################################## | ||
|
||
RUN apt-get -y update | ||
|
||
# Required for running tests | ||
RUN apt-get -y install make python | ||
|
||
# Some typical implementation and test requirements | ||
RUN apt-get -y install curl libreadline-dev libedit-dev | ||
|
||
RUN mkdir -p /mal | ||
WORKDIR /mal | ||
|
||
########################################################## | ||
# Specific implementation requirements | ||
########################################################## | ||
|
||
# Guile | ||
RUN apt-get -y install libunistring-dev libgc-dev autoconf libtool flex gettext texinfo libgmp-dev | ||
RUN apt-get -y install git pkg-config libffi-dev | ||
# TODO: remove /tmp/guile in same command | ||
RUN git clone git://git.sv.gnu.org/guile.git /tmp/guile \ | ||
&& cd /tmp/guile && ./autogen.sh && ./configure && make && make install | ||
RUN ldconfig | ||
# TODO: move this up with other deps | ||
RUN apt-get -y install libpcre3 libpcre3-dev | ||
|
Oops, something went wrong.