mirror of
https://github.com/logos-messaging/logos-messaging-nim.git
synced 2026-01-05 23:43:07 +00:00
fix(ci): remove target flag from docker command (#1725)
* fix(ci): remove target flag from docker command * fix(ci): add additional debug flag to rollout debug images to fleets
This commit is contained in:
parent
2defbd2301
commit
d822cdc599
@ -41,6 +41,11 @@ pipeline {
|
|||||||
description: 'Enable experimental features.',
|
description: 'Enable experimental features.',
|
||||||
defaultValue: false
|
defaultValue: false
|
||||||
)
|
)
|
||||||
|
booleanParam(
|
||||||
|
name: 'DEBUG',
|
||||||
|
description: 'Enable debug features (heaptrack).',
|
||||||
|
defaultValue: false
|
||||||
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
stages {
|
stages {
|
||||||
@ -52,7 +57,7 @@ pipeline {
|
|||||||
"--build-arg=MAKE_TARGET='${params.MAKE_TARGET}' " +
|
"--build-arg=MAKE_TARGET='${params.MAKE_TARGET}' " +
|
||||||
"--build-arg=NIMFLAGS='${params.NIMFLAGS}' " +
|
"--build-arg=NIMFLAGS='${params.NIMFLAGS}' " +
|
||||||
"--build-arg=EXPERIMENTAL='${params.EXPERIMENTAL}' " +
|
"--build-arg=EXPERIMENTAL='${params.EXPERIMENTAL}' " +
|
||||||
"--target=${params.EXPERIMENTAL ? "experimental" : "prod"} ."
|
"--target=${params.DEBUG ? "debug" : "prod"} ."
|
||||||
)
|
)
|
||||||
} }
|
} }
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user