Skip to content

Commit

Permalink
Actually test the generated app in Docker. #1
Browse files Browse the repository at this point in the history
  • Loading branch information
eigenhombre committed Nov 21, 2022
1 parent 437dd27 commit 7c0a1e1
Showing 1 changed file with 13 additions and 2 deletions.
15 changes: 13 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,20 @@ RUN echo | ecl --load /home/janice/quicklisp/setup.lisp --eval '(ql:add-to-init-
RUN echo | sbcl --load /home/janice/quicklisp/setup.lisp --eval '(ql:add-to-init-file)' --quit

ENV LISP_HOME=/home/janice/quicklisp/local-projects
ENV BINDIR=/home/janice/bin
WORKDIR /home/janice/steelcut

# Run the unit tests:
COPY . /home/janice/steelcut
COPY *.asd *.sh Makefile /home/janice/steelcut
COPY src /home/janice/steelcut/src
COPY test /home/janice/steelcut/test
# RUN make test-ecl
RUN make test
RUN make clean test
RUN make
RUN mkdir /home/janice/bin
RUN make install
RUN $BINDIR/steelcut foo
WORKDIR /home/janice/quicklisp/local-projects/foo
RUN make
RUN make install
RUN $BINDIR/foo

0 comments on commit 7c0a1e1

Please sign in to comment.