summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorParménides GV <parmegv@sdf.org>2015-08-05 09:41:08 +0200
committerParménides GV <parmegv@sdf.org>2015-08-05 09:41:08 +0200
commit948c388a5e3dd79da92ec9c56ec49da490ef6a71 (patch)
tree35cc034f12722bbba5d00a044b3e2b4a74d43423
parent11aee88ffd3aedd3e70de4a26fa624c8e7e92759 (diff)
Forgot to uncomment steps in bundler's builder.
-rw-r--r--master.cfg16
1 files changed, 8 insertions, 8 deletions
diff --git a/master.cfg b/master.cfg
index f9934c4..b0bb64e 100644
--- a/master.cfg
+++ b/master.cfg
@@ -262,14 +262,14 @@ def make_bundler_builder():
publish_bundle = publish_bundle_command('`ls -t *.tar.gz | head -1`')
factory.addSteps([
- # Git(repourl=repo_url, branch=branch, workdir=repo_dir, mode='incremental', method='clean', haltOnFailure=True, name="Pull " + repo_url),
- # ShellCommand(command="rm -rf " + bundler_output_dir, workdir=workdir, name="Remove previous bundler dir"),
- # ShellCommand(command="mkdir " + bundler_output_dir, workdir=workdir, name="Create bundler dir"),
- # ShellCommand(command="cp bundle_pyinstaller.sh download_osrandom_engine.sh ../" + bundler_output_dir, workdir=repo_dir, haltOnFailure=True, name="Copy bundle_pyinstaller"),
- # ShellCommand(command="mkdir files", workdir=workdir + '/' + bundler_output_dir, name="Create auxiliary folder"),
- # ShellCommand(command="./download_osrandom_engine.sh 0.9.3 files", workdir=workdir + '/' + bundler_output_dir, haltOnFailure=True, name="Create auxiliary folder"),
- # ShellCommand(command="wget http://lizard.leap.se/sumo-tarball/" + sumo_tarball, workdir=workdir + '/' + bundler_output_dir, haltOnFailure=True, name="Download sumo"),
- # ShellCommand(command="./bundle_pyinstaller.sh " + sumo_tarball, workdir=workdir + '/' + bundler_output_dir, name="Create bundle"),
+ Git(repourl=repo_url, branch=branch, workdir=repo_dir, mode='incremental', method='clean', haltOnFailure=True, name="Pull " + repo_url),
+ ShellCommand(command="rm -rf " + bundler_output_dir, workdir=workdir, name="Remove previous bundler dir"),
+ ShellCommand(command="mkdir " + bundler_output_dir, workdir=workdir, name="Create bundler dir"),
+ ShellCommand(command="cp bundle_pyinstaller.sh download_osrandom_engine.sh ../" + bundler_output_dir, workdir=repo_dir, haltOnFailure=True, name="Copy bundle_pyinstaller"),
+ ShellCommand(command="mkdir files", workdir=workdir + '/' + bundler_output_dir, name="Create auxiliary folder"),
+ ShellCommand(command="./download_osrandom_engine.sh 0.9.3 files", workdir=workdir + '/' + bundler_output_dir, haltOnFailure=True, name="Create auxiliary folder"),
+ ShellCommand(command="wget http://lizard.leap.se/sumo-tarball/" + sumo_tarball, workdir=workdir + '/' + bundler_output_dir, haltOnFailure=True, name="Download sumo"),
+ ShellCommand(command="./bundle_pyinstaller.sh " + sumo_tarball, workdir=workdir + '/' + bundler_output_dir, name="Create bundle"),
ShellCommand(command=publish_bundle, workdir=workdir + '/' + bundler_output_dir, name="Publish bundle")
])