blob: b29d966864f74c7d51faa713d5f46f995e0e33e3 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
FROM ubuntu
RUN apt-get update && apt-get install -y \
git \
mercurial \
subversion \
erlang \
build-essential \
autoconf \
automake \
curl \
python-sphinx \
asciidoc \
p7zip-full \
unzip
COPY . /erlang.mk
WORKDIR /erlang.mk
# Run specific test-case with verbose output
# RUN make check c=escript-deps V=4
RUN make check -j 8 -k
RUN make check LEGACY=1 -j 8 -k
|