mirror of https://github.com/portainer/portainer
37 lines
1.1 KiB
Bash
Executable File
37 lines
1.1 KiB
Bash
Executable File
#!/bin/sh
|
|
DEBUG=${DEBUG:-""}
|
|
if [ -n "$DEBUG" ]; then
|
|
set -x
|
|
fi
|
|
|
|
mkdir -p dist
|
|
|
|
# populate tool versions
|
|
BUILD_NUMBER=${BUILD_NUMBER:-"N/A"}
|
|
CONTAINER_IMAGE_TAG=${CONTAINER_IMAGE_TAG:-"N/A"}
|
|
NODE_VERSION=${NODE_VERSION:-"0"}
|
|
YARN_VERSION=${YARN_VERSION:-"0"}
|
|
WEBPACK_VERSION=${WEBPACK_VERSION:-"0"}
|
|
GO_VERSION=${GO_VERSION:-"0"}
|
|
|
|
# copy templates
|
|
cp -r "./mustache-templates" "./dist"
|
|
|
|
cd api
|
|
# the go get adds 8 seconds
|
|
go get -t -d -v ./...
|
|
|
|
# the build takes 2 seconds
|
|
GOOS=$1 GOARCH=$2 CGO_ENABLED=0 go build \
|
|
-trimpath \
|
|
--installsuffix cgo \
|
|
--ldflags "-s \
|
|
--X 'github.com/portainer/portainer/api/build.BuildNumber=${BUILD_NUMBER}' \
|
|
--X 'github.com/portainer/portainer/api/build.ImageTag=${CONTAINER_IMAGE_TAG}' \
|
|
--X 'github.com/portainer/portainer/api/build.NodejsVersion=${NODE_VERSION}' \
|
|
--X 'github.com/portainer/portainer/api/build.YarnVersion=${YARN_VERSION}' \
|
|
--X 'github.com/portainer/portainer/api/build.WebpackVersion=${WEBPACK_VERSION}' \
|
|
--X 'github.com/portainer/portainer/api/build.GoVersion=${GO_VERSION}'" \
|
|
-o "../dist/portainer" \
|
|
./cmd/portainer/
|