2008-01-31 01:25:06 -05:00
|
|
|
|
2008-04-12 22:54:35 -04:00
|
|
|
USING: kernel debugger io.files threads calendar
|
2008-02-22 18:26:09 -05:00
|
|
|
builder.common
|
2008-04-12 22:54:35 -04:00
|
|
|
builder.updates
|
|
|
|
builder.build ;
|
2008-01-31 01:25:06 -05:00
|
|
|
|
|
|
|
IN: builder
|
|
|
|
|
|
|
|
! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
|
|
|
|
2008-02-11 15:59:02 -05:00
|
|
|
: build-loop ( -- )
|
2008-02-15 06:54:19 -05:00
|
|
|
builds-check
|
2008-02-11 15:59:02 -05:00
|
|
|
[
|
2008-04-12 22:54:35 -04:00
|
|
|
builds/factor set-current-directory
|
|
|
|
new-code-available? [ build ] when
|
2008-02-11 15:59:02 -05:00
|
|
|
]
|
2008-04-04 22:14:24 -04:00
|
|
|
try
|
2008-02-22 18:48:20 -05:00
|
|
|
5 minutes sleep
|
2008-02-11 15:59:02 -05:00
|
|
|
build-loop ;
|
2008-01-31 01:25:06 -05:00
|
|
|
|
2008-04-12 22:54:35 -04:00
|
|
|
MAIN: build-loop
|