summaryrefslogtreecommitdiffstats
path: root/shared
diff options
context:
space:
mode:
authorlassulus <lass@aidsballs.de>2016-08-07 19:06:17 +0200
committerlassulus <lass@aidsballs.de>2016-08-07 19:18:12 +0200
commiteadaf02e52b4cb62310a2df3a1d5cb827e9a3600 (patch)
treec1b05392250dc56b82e6b975b6502742c3f07790 /shared
parent48a71c7604ce159e919c12e98c59361516a7f0c9 (diff)
s 2 buildbot: build-local also builds wolf
Diffstat (limited to 'shared')
-rw-r--r--shared/2configs/shared-buildbot.nix18
1 files changed, 9 insertions, 9 deletions
diff --git a/shared/2configs/shared-buildbot.nix b/shared/2configs/shared-buildbot.nix
index a873c8e7..22144e9e 100644
--- a/shared/2configs/shared-buildbot.nix
+++ b/shared/2configs/shared-buildbot.nix
@@ -119,15 +119,15 @@
f = util.BuildFactory()
f.addStep(grab_repo)
- addShell(f,name="build-test-all-modules",env=env,
- command=nixshell + \
- ["mkdir -p /tmp/testbuild/$LOGNAME && touch /tmp/testbuild/$LOGNAME/.populate; \
- make \
- test \
- target=$LOGNAME@${config.krebs.build.host.name}/tmp/testbuild/$LOGNAME \
- method=build \
- system=test-all-krebs-modules"]
- )
+ for i in [ "test-all-krebs-modules", "wolf" ]:
+ addShell(f,name="build-{}".format(i),env=env,
+ command=nixshell + \
+ ["mkdir -p /tmp/testbuild/$LOGNAME && touch /tmp/testbuild/$LOGNAME/.populate; \
+ make \
+ test \
+ target=$LOGNAME@${config.krebs.build.host.name}/tmp/testbuild/$LOGNAME \
+ method=build \
+ system={}".format(i)])
bu.append(util.BuilderConfig(name="build-local",
slavenames=slavenames,