Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'build_files/buildbot-lts/README.md')
-rw-r--r--build_files/buildbot-lts/README.md19
1 files changed, 19 insertions, 0 deletions
diff --git a/build_files/buildbot-lts/README.md b/build_files/buildbot-lts/README.md
index 73750be84f6..ec2a96c4652 100644
--- a/build_files/buildbot-lts/README.md
+++ b/build_files/buildbot-lts/README.md
@@ -13,3 +13,22 @@ private keys and the process needs to be controlled security wise.
But of course the source and configurations are public available for anyone to
check, develop and use.
+
+Setting up build-bot
+--------------------
+
+instructions from https://github.com/cjolowicz/docker-buildbot.
+
+Create custom buildbot worker containing packages we need for building (git, wget).
+
+ cd docker
+ docker build -t buildbot --no-cache .
+ cd worker
+ docker build -t buildbot-worker --no-cache .
+
+ docker network create net-buildbot
+
+ docker rm lts-buildbot && docker run --init --name lts-buildbot --network net-buildbot --publish=127.0.0.1:8010:8010 -t -i buildbot
+
+ docker rm lts-worker && docker run --init --name lts-worker --network net-buildbot --name lts-worker -e BUILDMASTER=lts-buildbot -e WORKERNAME=lts-worker -e WORKERPASS=secret -t -i buildbot-worker
+