Skip to content

Commit

Permalink
added clean step also on tesing
Browse files Browse the repository at this point in the history
  • Loading branch information
Alice Ferrazzi committed Dec 11, 2017
1 parent df31f47 commit b3e1150
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions master.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -264,10 +264,16 @@ def test_gentoo_sources():
workerdest="files/qemu_check.py"))
factory.addStep(steps.FileDownload(mastersrc="~/files/stabilize-packages.py",
workerdest="files/stabilize-packages.py"))
factory.addStep(steps.FileDownload(mastersrc="~/files/clean.sh",
workerdest="clean.sh"))
factory.addStep(steps.FileDownload(mastersrc="~/files/clean.py",
workerdest="clean.py"))
factory.addStep(steps.ShellCommand(command=filterFiles,
workdir="build/files/"))
factory.addStep(steps.ShellCommand(command=["/usr/bin/python", "qemu_check.py"],
workdir="build/files/"))
# factory.addStep(steps.ShellCommand(command=["/usr/bin/python", "qemu_check.py"],
# workdir="build/files/"))
factory.addStep(steps.ShellCommand(command=["/bin/sh", "clean.sh"],
workdir="build/", alwaysRun=True))
return factory


Expand Down

0 comments on commit b3e1150

Please sign in to comment.