builder: up bootstrap timeout to 60 minutes (yikes!)
parent
89d4c4ca59
commit
a245dcb0c9
|
@ -13,8 +13,6 @@ IN: builder
|
||||||
|
|
||||||
! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
||||||
|
|
||||||
! : cd ( path -- ) current-directory set ;
|
|
||||||
|
|
||||||
: cd ( path -- ) set-current-directory ;
|
: cd ( path -- ) set-current-directory ;
|
||||||
|
|
||||||
! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
||||||
|
@ -56,18 +54,10 @@ IN: builder
|
||||||
[ "make" ]
|
[ "make" ]
|
||||||
if ;
|
if ;
|
||||||
|
|
||||||
! : do-make-clean ( -- ) { "make" "clean" } try-process ;
|
|
||||||
|
|
||||||
: do-make-clean ( -- ) { gnu-make "clean" } to-strings try-process ;
|
: do-make-clean ( -- ) { gnu-make "clean" } to-strings try-process ;
|
||||||
|
|
||||||
! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
||||||
|
|
||||||
! : make-vm ( -- desc )
|
|
||||||
! <process>
|
|
||||||
! { "make" } >>command
|
|
||||||
! "../compile-log" >>stdout
|
|
||||||
! +stdout+ >>stderr ;
|
|
||||||
|
|
||||||
: make-vm ( -- desc )
|
: make-vm ( -- desc )
|
||||||
<process>
|
<process>
|
||||||
{ gnu-make } to-strings >>command
|
{ gnu-make } to-strings >>command
|
||||||
|
@ -94,7 +84,7 @@ IN: builder
|
||||||
+closed+ >>stdin
|
+closed+ >>stdin
|
||||||
"../boot-log" >>stdout
|
"../boot-log" >>stdout
|
||||||
+stdout+ >>stderr
|
+stdout+ >>stderr
|
||||||
20 minutes >>timeout ;
|
60 minutes >>timeout ;
|
||||||
|
|
||||||
: do-bootstrap ( -- )
|
: do-bootstrap ( -- )
|
||||||
bootstrap [ "Bootstrap error" print "../boot-log" cat ] run-or-bail ;
|
bootstrap [ "Bootstrap error" print "../boot-log" cat ] run-or-bail ;
|
||||||
|
|
Loading…
Reference in New Issue