Reduced number of parallel jobs, I suspect this is making the travis-ci build fail.
This commit is contained in:
parent
662469465e
commit
c496d608dd
|
@ -7,7 +7,7 @@ make/make: make/make.rkt make/lib.rkt
|
||||||
|
|
||||||
.PHONY: clean
|
.PHONY: clean
|
||||||
clean:
|
clean:
|
||||||
rm -fr make/make docs coverage
|
rm -fr make/make docs
|
||||||
find \( -path ./lib/doc/bracket -prune -and -false \) -or -name compiled -print0 | xargs -0 rm -rf
|
find \( -path ./lib/doc/bracket -prune -and -false \) -or -name compiled -print0 | xargs -0 rm -rf
|
||||||
|
|
||||||
.PHONY: build-dep
|
.PHONY: build-dep
|
||||||
|
|
|
@ -226,12 +226,12 @@
|
||||||
" "))
|
" "))
|
||||||
(display "\033[1;34m")
|
(display "\033[1;34m")
|
||||||
(flush-output)
|
(flush-output)
|
||||||
(let ((result (apply system* arg0 args)))
|
(let ((exit-code (apply system*/exit-code arg0 args)))
|
||||||
(display "\033[m")
|
(display "\033[m")
|
||||||
(flush-output)
|
(flush-output)
|
||||||
(unless result
|
(unless (= exit-code 0)
|
||||||
(raise "Command failed."))
|
(raise (format "Command failed with exit code ~a." exit-code)))
|
||||||
result))))
|
(= exit-code 0)))))
|
||||||
|
|
||||||
(define-syntax-rule (run! . rest) (let () (run . rest) (values)))
|
(define-syntax-rule (run! . rest) (let () (run . rest) (values)))
|
||||||
|
|
||||||
|
@ -253,4 +253,4 @@
|
||||||
(case-lambda
|
(case-lambda
|
||||||
[(x) (fn x 'none 'none)]
|
[(x) (fn x 'none 'none)]
|
||||||
[(x a) (fn x a 'none)]
|
[(x a) (fn x a 'none)]
|
||||||
[(x a b) (fn x a (list b))])))
|
[(x a b) (fn x a (list b))])))
|
||||||
|
|
|
@ -137,7 +137,7 @@
|
||||||
|
|
||||||
(run! `(,(find-executable-path-or-fail "raco")
|
(run! `(,(find-executable-path-or-fail "raco")
|
||||||
"make"
|
"make"
|
||||||
"-j" "8"
|
"-j" "5"
|
||||||
,@rkt-files))
|
,@rkt-files))
|
||||||
|
|
||||||
;; Create root MathJax link, must be done before the others
|
;; Create root MathJax link, must be done before the others
|
||||||
|
|
Loading…
Reference in New Issue
Block a user