Skip to content

Commit

Permalink
buildbot: enable code signing for OS X builds
Browse files Browse the repository at this point in the history
  • Loading branch information
delroth committed Jan 10, 2016
1 parent 7b8e942 commit 279b9b1
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions buildbot/master.cfg
Expand Up @@ -372,6 +372,12 @@ def make_dolphin_osx_build(mode="normal"):
descriptionDone="test",
haltOnFailure=True))

f.addStep(ShellCommand(command="/build/codesign.sh --deep Binaries/Dolphin.app",
workdir="build/build",
description="signing",
descriptionDone="sign",
haltOnFailure=True))

f.addStep(ShellCommand(command=["hdiutil", "create", "dolphin.dmg",
"-format", "UDBZ",
"-srcfolder", "Binaries/Dolphin.app", "-ov",
Expand All @@ -381,6 +387,12 @@ def make_dolphin_osx_build(mode="normal"):
description="packaging",
descriptionDone="package"))

f.addStep(ShellCommand(command="/build/codesign.sh --deep dolphin.dmg",
workdir="build/build",
description="signing dmg",
descriptionDone="sign dmg",
haltOnFailure=True))

if mode == "normal":
master_filename = WithProperties("/srv/http/dl/builds/dolphin-%s-%s.dmg", "branchname", "shortrev")
url = WithProperties("http://dl.dolphin-emu.org/builds/dolphin-%s-%s.dmg", "branchname", "shortrev")
Expand Down

0 comments on commit 279b9b1

Please sign in to comment.