perkeep/misc/buildbot
Will Norris 77ed42edf8 add canonical import paths
The import path was added to the go file that included the package
documentation if one existed.  Otherwise, I used what seemed to be the
primary file for the package.

Fixes #689

Change-Id: If51be0e86529fd6f179e80af6781e639f8550fd2
2016-03-13 19:57:14 -07:00
..
builder add canonical import paths 2016-03-13 19:57:14 -07:00
master add canonical import paths 2016-03-13 19:57:14 -07:00
README buildbot: switch to Go 1.5 2015-08-21 19:27:52 +02:00

README

# before doing anything:

export GO15VENDOREXPERIMENT=1

Running:

mkdir ~/buildbot
cp master/master.go ~/buildbot/
cd ~/builbot
go build -o master master.go
./master -verbose -builderopts -verbose=true

Hacking:

mkdir ~/buildbot
cp master/master.go ~/buildbot/
cp builder/builder.go ~/buildbot/
cd ~/builbot
go build -o master master.go
#hack on builder.go
./master -verbose -buildersrc ./builder.go -builderopts -verbose=true,-skipgo1build=true,-faketests=true

Or, if you want the bot(s) to pull from a local repo (so you can trigger some test commits), here is a setup example script:
https://github.com/mpl/misc/blob/master/camlistore.org/misc/buildbot/prepbot