|
|
|
@ -40,3 +40,26 @@ MASTER_PREFIXCMD[1]="" # prefix command, i.e. nice, linux32, dch
|
|
|
|
|
systemctl start buildbot@fs.service
|
|
|
|
|
systemctl enable buildbot@fs.service
|
|
|
|
|
|
|
|
|
|
###########################################################
|
|
|
|
|
# Install via Docker on Buster
|
|
|
|
|
|
|
|
|
|
https://docs.buildbot.net/current/tutorial/docker.html
|
|
|
|
|
|
|
|
|
|
apt install docker docker-compose
|
|
|
|
|
|
|
|
|
|
# Test docker is ok:
|
|
|
|
|
docker run -i busybox /bin/echo Success
|
|
|
|
|
|
|
|
|
|
# clone the example repository
|
|
|
|
|
git clone --depth 1 https://github.com/buildbot/buildbot-docker-example-config
|
|
|
|
|
|
|
|
|
|
# Build the Buildbot container (it will take a few minutes to download packages)
|
|
|
|
|
cd buildbot-docker-example-config/simple
|
|
|
|
|
docker-compose up
|
|
|
|
|
|
|
|
|
|
# Create a tunnel:
|
|
|
|
|
ssh -N -C -L 8010:localhost:8010 buildbot
|
|
|
|
|
|
|
|
|
|
# Hit it in browser
|
|
|
|
|
http://localhost:8010
|
|
|
|
|
|
|
|
|
|