Skip to content

Commit

Permalink
build-containers: remove option to build
Browse files Browse the repository at this point in the history
  • Loading branch information
jasonish committed Aug 5, 2023
1 parent b68f0e5 commit 59ef579
Showing 1 changed file with 0 additions and 14 deletions.
14 changes: 0 additions & 14 deletions build-containers.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
#
# Arguments:
#
# --skip-make Skips building (making) EveBox
# --push Push images and manifest
# --latest Also tag as "latest"
#
Expand All @@ -18,7 +17,6 @@ BUILD_REV=$(git rev-parse --short HEAD)
DOCKER_NAME="${REGISTRY}/jasonish/evebox"

push="no"
skip_make="no"
latest="no"

aliases=()
Expand All @@ -28,9 +26,6 @@ for a in $@; do
--push)
push="yes"
;;
--skip-make)
skip_make="yes"
;;
--latest)
latest="yes"
aliases+=("latest")
Expand All @@ -51,7 +46,6 @@ if [[ "${tag}" = "" ]]; then
case "${version}" in
devel)
tag=${version}
aliases+=("master")
;;
*)
tag=${version}
Expand Down Expand Up @@ -85,14 +79,6 @@ cross_run() {
${TAG} $@
}

if [[ "${skip_make}" = "yes" ]]; then
echo "===> Skipping make of EveBox"
else
cross_run x86_64-unknown-linux-musl make dist
cross_run aarch64-unknown-linux-musl make dist
cross_run arm-unknown-linux-musleabihf make dist
fi

bins=(
./dist/evebox-${version}-linux-x64/evebox
./dist/evebox-${version}-linux-arm64/evebox
Expand Down

0 comments on commit 59ef579

Please sign in to comment.