Changes between Version 5 and Version 6 of BuildBot
- Timestamp:
- 02/15/07 03:24:59 (6 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
BuildBot
v5 v6 39 39 40 40 {{{ 41 @reboot cd /buildbot/ghc&& make start41 @reboot cd <buildbotdir> && make start 42 42 }}} 43 43 44 Remember to change ` /buildbot/ghc` to your buildbot directory.44 Remember to change `<buildbotdir>` to your buildbot directory. 45 45 46 Cron will run the command in a minimal environment: it won't execute your normal shell startup files, so you won't have your usual `PATH` settings, for example. To get the right `PATH` and other environment variables, we suggest adding them to the `make start` rule in the `Makefile`. FOr example, my setuplooks something like this:46 Cron will run the command in a minimal environment: it won't execute your normal shell startup files, so you won't have your usual `PATH` settings, for example. To get the right `PATH` and other environment variables, we suggest adding them to the `make start` rule in `<buildbotdir>/Makefile`. FOr example, my start rule looks something like this: 47 47 48 48 {{{ … … 56 56 57 57 {{{ 58 0 17 * * * cd /64playpen/buildbot&& (make stop; make start)58 0 17 * * * cd <buildbotdir> && (make stop; make start) 59 59 }}} 60 60
