buildbot

Buidlbot Tutorial: URL for runtests under Waterfall view doesn't show? [closed]

主宰稳场 提交于 2019-12-12 06:47:46
问题 Closed . This question needs details or clarity. It is not currently accepting answers. Want to improve this question? Add details and clarify the problem by editing this post. Closed 2 years ago . Doing this tutorial, the URL for runtests in the Waterfall view does not appear. The worker is connected (confirmed by logs of both master and worker). Why doesn't runtests show under the Waterfall view? I've tried the 2 ways that was shown in the tutorial in python's buildbot. (The first way is

Buildbot slaves priority

一笑奈何 提交于 2019-12-12 01:32:14
问题 Problem I have set up a latent slave in buildbot to help avoid congestion. I've set up my builds to run either in permanent slave or latent one. The idea is the latent slave is waken up only when needed but the result is that buildbot randomly selectes one slave or the other so sometimes I have to wait for the latent slave to wake even if the permanent one is idle. Is there a way to prioritize buildbot slaves? Attempted solutions 1. Custom nextSlave Following @david-dean suggestion, I've

Interpolate won't work when passing a property (triggered builder, which will use the property as parameter in a step)

北城余情 提交于 2019-12-11 18:46:16
问题 The scenario: I have various builder, that trigger a builder B. The builder B needs to know a specific piece of data, which is a string, so it knows what operation has to perform. Example: 3 builders build 3 version of the same software, but each one is for a different architecture; I need to pass the architecture to builder B, which does testing, so it does the testing for the right architecture. So when a builder start, triggers B, which gets the architecture as parameter, and pass it to a

avoid that builders will run at the same time in buildbot

拜拜、爱过 提交于 2019-12-11 09:59:56
问题 I need to get data from a server, and this takes time; usually 30 min or more. I have a builder that gets data from this server; I would like that no other builders on this slave, will run, if I am still running this builder. Once done, the other builder can run concurrently, respecting my settings related to the max concurrent build. How do I achieve this? I was looking at locks, but the manual does not have a clear example that show how do I setup a builder to block all the others until is

How to enable basic access authentication with Buildbot

冷暖自知 提交于 2019-12-08 11:48:13
问题 How do you configure Buildbot to prompt for username/password using basic access authentication? I can't find anything in Buildbot's documentation that explicitly mentions this. It has a useHttpHeader option, but that doesn't seem to do anything. My WebStatus config looks like: authz_cfg = authz.Authz( auth=auth.BasicAuth([("admin", "password")]), useHttpHeader=True, gracefulShutdown=False, forceBuild='auth', forceAllBuilds='auth', pingBuilder=False, stopBuild=True, stopAllBuilds=True,

Buildbot running sequential builders after they're finished

Deadly 提交于 2019-12-08 07:48:57
问题 Are there any triggers or anyway to set up buildbot to run builds after another have finished? Right now I have multiple builders set up to turn on a machine, build, and turn off a machine. I've set it up in a nightly schedule where it turns on the machine then 15 minutes after it would run a build then shuts off the machine about an hour after it started building. I'd rather have 1 builder that does all 3 steps automatically. Run builder1, waits X minutes, run builder2, waits Y minutes, run

how to lock steps in buildbot

拜拜、爱过 提交于 2019-12-07 16:51:39
问题 I have a builder which consists of steps A, B, and C; and a second builder which consists of steps U, V, and W: How can I 'block' step U until steps A and B are finished? So basically I want that steps C and U run parallel to each other. My first idea was to introduce two interlocks, a and b: step A demands lock a, step B demands lock b, and step U demands a and b at the same time. But in this situation the execution order is A->U->B, and not A->B->U as I want it to be. The reason: steps are

Buildbot running sequential builders after they're finished

て烟熏妆下的殇ゞ 提交于 2019-12-06 15:38:55
Are there any triggers or anyway to set up buildbot to run builds after another have finished? Right now I have multiple builders set up to turn on a machine, build, and turn off a machine. I've set it up in a nightly schedule where it turns on the machine then 15 minutes after it would run a build then shuts off the machine about an hour after it started building. I'd rather have 1 builder that does all 3 steps automatically. Run builder1, waits X minutes, run builder2, waits Y minutes, run builder3. I think you either want to make the machine into a Latent Slave so that you don't need

How do you install Angular on windows 7

一曲冷凌霜 提交于 2019-12-06 03:08:42
问题 Hi this should be pretty straight forward but I'm getting stuck. I installed buildbot (0.9.06b)on my machine a Windows 7 machine. I have managed to get it up and running however when I try to display the web page(IE8), I get the error Angular not defined. This being a brand new windows box I was not too surprised. I proceeded to download NodeJS the executable and run it on the machine so Node is installed. I then went to Angular website downloaded the zip file, but i'm not sure what to do

how to lock steps in buildbot

与世无争的帅哥 提交于 2019-12-05 18:21:47
I have a builder which consists of steps A, B, and C; and a second builder which consists of steps U, V, and W: How can I 'block' step U until steps A and B are finished? So basically I want that steps C and U run parallel to each other. My first idea was to introduce two interlocks, a and b: step A demands lock a, step B demands lock b, and step U demands a and b at the same time. But in this situation the execution order is A->U->B, and not A->B->U as I want it to be. The reason: steps are greedy for locks. Step U is blocked because of lock a, but despite that it requires lock b. And this