Compare commits
No commits in common. "998e1c993d6770d08fb8ced752d076ef3d34273d" and "c2fcf4acd843e7cfb1bcff1d2d6c5e69041bdb35" have entirely different histories.
998e1c993d
...
c2fcf4acd8
|
|
@ -24,6 +24,6 @@ RUN make PREFIX=/opt/compile-r7rs build
|
||||||
RUN make PREFIX=/opt/compile-r7rs install
|
RUN make PREFIX=/opt/compile-r7rs install
|
||||||
|
|
||||||
FROM schemers/chibi
|
FROM schemers/chibi
|
||||||
RUN apt-get update && apt-get install -y podman-docker make
|
RUN apt-get update && apt-get install -y docker.io podman make
|
||||||
COPY --from=build /opt/compile-r7rs /opt/compile-r7rs
|
COPY --from=build /opt/compile-r7rs /opt/compile-r7rs
|
||||||
ENV PATH=/opt/compile-r7rs/bin:${PATH}
|
ENV PATH=/opt/compile-r7rs/bin:${PATH}
|
||||||
|
|
|
||||||
|
|
@ -277,16 +277,9 @@
|
||||||
(when (file-exists? build-out) (delete-file build-out))
|
(when (file-exists? build-out) (delete-file build-out))
|
||||||
(when (file-exists? run-out) (delete-file run-out))
|
(when (file-exists? run-out) (delete-file run-out))
|
||||||
(when (not (= (system docker-build-cmd) 0))
|
(when (not (= (system docker-build-cmd) 0))
|
||||||
(display "Docker container build failed")
|
(error (string-append "Docker container build failed, see output in "
|
||||||
(newline)
|
docker-build-out)
|
||||||
(display "Command: ")
|
docker-build-cmd))
|
||||||
(display docker-build-cmd)
|
|
||||||
(newline)
|
|
||||||
(display "Output: ")
|
|
||||||
(newline)
|
|
||||||
(cat docker-build-out)
|
|
||||||
(newline)
|
|
||||||
(exit 1))
|
|
||||||
(let* ((build-exit-code (number->string (system build-cmd)))
|
(let* ((build-exit-code (number->string (system build-cmd)))
|
||||||
(run-exit-code (number->string (system run-cmd)))
|
(run-exit-code (number->string (system run-cmd)))
|
||||||
(testname (if (and (string? run-exit-code)
|
(testname (if (and (string? run-exit-code)
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue