fixup! bci2: Add resources argument
parent
569da8645b
commit
53a5dd1873
|
@ -53,7 +53,7 @@ def call(args) {
|
||||||
}
|
}
|
||||||
parallel stages
|
parallel stages
|
||||||
|
|
||||||
runInPod(null) {
|
runInPod {
|
||||||
container('buildah') {
|
container('buildah') {
|
||||||
withBuildahCreds(registry) {
|
withBuildahCreds(registry) {
|
||||||
if (archlist.size() > 1) {
|
if (archlist.size() > 1) {
|
||||||
|
@ -109,6 +109,10 @@ def buildStage(args) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
def runInPod(block) {
|
||||||
|
runInPod(null, block)
|
||||||
|
}
|
||||||
|
|
||||||
def runInPod(args, block) {
|
def runInPod(args, block) {
|
||||||
def arch = args?.arch
|
def arch = args?.arch
|
||||||
def resources = args?.resources
|
def resources = args?.resources
|
||||||
|
|
Loading…
Reference in New Issue