You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
boundary/enos/modules/build_boundary_docker_local/build.sh

22 lines
494 B

#!/usr/bin/env bash
# Copyright (c) HashiCorp, Inc.
# SPDX-License-Identifier: BUSL-1.1
set -eux -o pipefail
# Go to the root of the boundary repo
root_dir="$(git rev-parse --show-toplevel)"
pushd "${root_dir}" > /dev/null
# make docker image
export DEV_DOCKER_GOARCH=$(uname -m)
export IMAGE_TAG_DEV="${IMAGE_NAME}"
make build-ui docker-build-dev
# make the cli to be used by the test runner
export GOOS=linux
make build
zip -j ${ARTIFACT_PATH}/boundary.zip bin/boundary
popd > /dev/null