[gradle] More gradle 9 codesign updates (#8536)

This replicates the fix in #8531 for other binaries that are still tripping up CI.
This commit is contained in:
PJ Reiniger
2026-01-02 15:33:00 -05:00
committed by GitHub
parent 8518b7014c
commit 5a3f2ce13a
5 changed files with 20 additions and 20 deletions

View File

@@ -129,8 +129,8 @@ model {
doLast {
if (project.hasProperty("developerID")) {
// Get path to binary.
exec {
workingDir rootDir
providers.exec {
setWorkingDir(rootDir)
def args = [
"sh",
"-c",
@@ -139,8 +139,8 @@ model {
"--verbose -s ${project.findProperty("developerID")} " +
"$project.buildDir/outputs/bundles/$binary.targetPlatform.architecture.name/Glass.app/"
]
commandLine args
}
commandLine(args)
}.result.get()
}
}
}

View File

@@ -74,8 +74,8 @@ model {
doLast {
if (project.hasProperty("developerID")) {
// Get path to binary.
exec {
workingDir rootDir
providers.exec {
setWorkingDir(rootDir)
def args = [
"sh",
"-c",
@@ -84,8 +84,8 @@ model {
"--verbose -s ${project.findProperty("developerID")} " +
"$project.buildDir/outputs/bundles/$binary.targetPlatform.architecture.name/DataLogTool.app/"
]
commandLine args
}
commandLine(args)
}.result.get()
}
}
}

View File

@@ -74,8 +74,8 @@ model {
doLast {
if (project.hasProperty("developerID")) {
// Get path to binary.
exec {
workingDir rootDir
providers.exec {
setWorkingDir(rootDir)
def args = [
"sh",
"-c",
@@ -84,8 +84,8 @@ model {
"--verbose -s ${project.findProperty("developerID")} " +
"$project.buildDir/outputs/bundles/$binary.targetPlatform.architecture.name/OutlineViewer.app/"
]
commandLine args
}
commandLine(args)
}.result.get()
}
}
}

View File

@@ -50,8 +50,8 @@ model {
doLast {
if (project.hasProperty("developerID")) {
// Get path to binary.
exec {
workingDir rootDir
providers.exec {
setWorkingDir(rootDir)
def args = [
"sh",
"-c",
@@ -60,8 +60,8 @@ model {
"--verbose -s ${project.findProperty("developerID")} " +
"$project.buildDir/outputs/bundles/$binary.targetPlatform.architecture.name/SysId.app/"
]
commandLine args
}
commandLine(args)
}.result.get()
}
}
}

View File

@@ -78,8 +78,8 @@ model {
doLast {
if (project.hasProperty("developerID")) {
// Get path to binary.
exec {
workingDir rootDir
providers.exec {
setWorkingDir(rootDir)
def args = [
"sh",
"-c",
@@ -88,8 +88,8 @@ model {
"--verbose -s ${project.findProperty("developerID")} " +
"$project.buildDir/outputs/bundles/$binary.targetPlatform.architecture.name/wpical.app/"
]
commandLine args
}
commandLine(args)
}.result.get()
}
}
}