Skip to content

Commit

Permalink
Merge pull request #16084 from MinaProtocol/dkijania/port_lightnet_su…
Browse files Browse the repository at this point in the history
…ffix_to_cmp

Port lightnet suffix fix from develop to compatible
  • Loading branch information
dkijania authored Sep 23, 2024
2 parents 208c5fd + e4ef0f2 commit 7a73517
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion scripts/docker/helper.sh
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,18 @@ function export_suffixes () {
;;
esac
;;
lightnet)
case "${DEB_BUILD_FLAGS}" in
*instrumented)
export DOCKER_DEB_SUFFIX="--build-arg deb_suffix=lightnet-instrumented"
export BUILD_FLAG_SUFFIX="lightnet-instrumented"
;;
*)
export DOCKER_DEB_SUFFIX="--build-arg deb_suffix=lightnet"
export BUILD_FLAG_SUFFIX="-lightnet"
;;
esac
;;
*)
case "${DEB_BUILD_FLAGS}" in
*instrumented)
Expand All @@ -57,7 +69,6 @@ function export_suffixes () {
;;
esac
}


function export_docker_tag() {
export_suffixes
Expand Down

0 comments on commit 7a73517

Please sign in to comment.