﻿<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="ja">
	<id>https://wiki.blender.jp/index.php?action=history&amp;feed=atom&amp;title=Dev%3ADoc%2FTools%2FBuildBot</id>
	<title>Dev:Doc/Tools/BuildBot - 版の履歴</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.blender.jp/index.php?action=history&amp;feed=atom&amp;title=Dev%3ADoc%2FTools%2FBuildBot"/>
	<link rel="alternate" type="text/html" href="https://wiki.blender.jp/index.php?title=Dev:Doc/Tools/BuildBot&amp;action=history"/>
	<updated>2026-04-30T17:48:17Z</updated>
	<subtitle>このウィキのこのページに関する変更履歴</subtitle>
	<generator>MediaWiki 1.31.0</generator>
	<entry>
		<id>https://wiki.blender.jp/index.php?title=Dev:Doc/Tools/BuildBot&amp;diff=103993&amp;oldid=prev</id>
		<title>Yamyam: 1版 をインポートしました</title>
		<link rel="alternate" type="text/html" href="https://wiki.blender.jp/index.php?title=Dev:Doc/Tools/BuildBot&amp;diff=103993&amp;oldid=prev"/>
		<updated>2018-06-28T19:42:15Z</updated>

		<summary type="html">&lt;p&gt;1版 をインポートしました&lt;/p&gt;
&lt;table class=&quot;diff diff-contentalign-left&quot; data-mw=&quot;interface&quot;&gt;
				&lt;tr class=&quot;diff-title&quot; lang=&quot;ja&quot;&gt;
				&lt;td colspan=&quot;1&quot; style=&quot;background-color: #fff; color: #222; text-align: center;&quot;&gt;← 古い版&lt;/td&gt;
				&lt;td colspan=&quot;1&quot; style=&quot;background-color: #fff; color: #222; text-align: center;&quot;&gt;2018年6月28日 (木) 19:42時点における版&lt;/td&gt;
				&lt;/tr&gt;&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-notice&quot; lang=&quot;ja&quot;&gt;&lt;div class=&quot;mw-diff-empty&quot;&gt;(相違点なし)&lt;/div&gt;
&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</summary>
		<author><name>Yamyam</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.blender.jp/index.php?title=Dev:Doc/Tools/BuildBot&amp;diff=103992&amp;oldid=prev</id>
		<title>2013年3月4日 (月) 19:42にwiki&gt;Brechtによる</title>
		<link rel="alternate" type="text/html" href="https://wiki.blender.jp/index.php?title=Dev:Doc/Tools/BuildBot&amp;diff=103992&amp;oldid=prev"/>
		<updated>2013-03-04T19:42:17Z</updated>

		<summary type="html">&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;新規ページ&lt;/b&gt;&lt;/p&gt;&lt;div&gt;= BuildBot =&lt;br /&gt;
&lt;br /&gt;
A buildbot is running at [http://builder.blender.org builder.blender.org], which controls a number of build slaves that automatically make blender builds to offer users official daily builds, and for developers to quickly find out when things break on other platforms.&lt;br /&gt;
&lt;br /&gt;
=== Master ===&lt;br /&gt;
&lt;br /&gt;
Buildbot master configuration files are located in bf-blender svn, under:&lt;br /&gt;
&amp;lt;source lang=&amp;quot;text&amp;quot;&amp;gt;&lt;br /&gt;
build_files/buildbot/&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
To actually update the server configuration, these are manually copied to the server. The buildbot master is started with&lt;br /&gt;
&amp;lt;source lang=&amp;quot;text&amp;quot;&amp;gt;&lt;br /&gt;
buildbot start /data/buildbot-master&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Builders ===&lt;br /&gt;
&lt;br /&gt;
Builders are a configuration for how to build for a particular platform. They consist of a number of steps, some optional:&lt;br /&gt;
&lt;br /&gt;
* svn update: updates source code form trunk&lt;br /&gt;
* lib svn update: updates lib directory for a given platform (windows/mac only)&lt;br /&gt;
* compile: rebuild blender&lt;br /&gt;
* test: run tests&lt;br /&gt;
* package: create package for upload&lt;br /&gt;
* upload: transfer package to the server&lt;br /&gt;
* unpack: server side updates for the new package&lt;br /&gt;
&lt;br /&gt;
The compile, test and package steps are python scripts in blender svn. This is also the place to add any build configurations.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;text&amp;quot;&amp;gt;&lt;br /&gt;
build_files/buildbot/slave_compile.py&lt;br /&gt;
build_files/buildbot/slave_test.py&lt;br /&gt;
build_files/buildbot/slave_pack.py&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Adding Build Slaves ===&lt;br /&gt;
&lt;br /&gt;
* Download and install the [http://trac.buildbot.net/ Buildbot Slave] (not master), see the Buildbot manual for instructions.&lt;br /&gt;
* Next, a number of changes have to be done on the server:&lt;br /&gt;
** A build slave account must be added in master_private.py.&lt;br /&gt;
** If no relevant builder for the given platform exists yet, one must be created in master.cfg.&lt;br /&gt;
* Once this is set up, the build slave can be set up. A directory must be specified, where buildbot will keep its configuration files, download the source code, and write build system output.&lt;br /&gt;
&amp;lt;source lang=&amp;quot;text&amp;quot;&amp;gt;&lt;br /&gt;
buildslave create-slave &amp;lt;directory&amp;gt; builder.blender.org:9989 &amp;lt;slavename&amp;gt; &amp;lt;password&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
* After this, the slave can be started and stopped:&lt;br /&gt;
&amp;lt;source lang=&amp;quot;text&amp;quot;&amp;gt;&lt;br /&gt;
buildslave start &amp;lt;directory&amp;gt;&lt;br /&gt;
buildslave stop &amp;lt;directory&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Force Rebuild and Cancel Build ===&lt;br /&gt;
&lt;br /&gt;
A build can be started at any time, if you have the right username and password. For this you need a slave name and matching password, the same one as used to setup the build slave with the create-slave command.&lt;br /&gt;
&lt;br /&gt;
The slavename and password can be found in buildbot.tac, in the buildslave directory, or in master_private.py on the server.&lt;/div&gt;</summary>
		<author><name>wiki&gt;Brecht</name></author>
		
	</entry>
</feed>