Fixing tests
This commit is contained in:
parent
63522e8228
commit
0f0d42f0dc
|
@ -0,0 +1,11 @@
|
||||||
|
FROM schemers/chibi:head
|
||||||
|
RUN apt-get update && apt-get install -y \
|
||||||
|
build-essential ca-certificates git make libffi-dev
|
||||||
|
RUN git clone https://github.com/ashinn/chibi-scheme.git --depth=1 \
|
||||||
|
&& cd chibi-scheme && make -j 16 && make -j 16 install
|
||||||
|
WORKDIR /builddir
|
||||||
|
COPY Makefile Makefile
|
||||||
|
COPY compile-r7rs.scm .
|
||||||
|
COPY libs/ libs/
|
||||||
|
RUN make && make install
|
||||||
|
WORKDIR /workdir
|
|
@ -1,6 +1,6 @@
|
||||||
FROM schemers/chibi:head
|
FROM schemers/chibi:head
|
||||||
RUN apt-get update && apt-get install -y \
|
RUN apt-get update && apt-get install -y \
|
||||||
build-essential ca-certificates git make docker.io
|
build-essential ca-certificates git make docker.io libffi-dev
|
||||||
RUN git clone https://github.com/ashinn/chibi-scheme.git --depth=1 \
|
RUN git clone https://github.com/ashinn/chibi-scheme.git --depth=1 \
|
||||||
&& cd chibi-scheme && make -j 16 && make -j 16 install
|
&& cd chibi-scheme && make -j 16 && make -j 16 install
|
||||||
WORKDIR /builddir
|
WORKDIR /builddir
|
||||||
|
|
Loading…
Reference in New Issue