mirror of
https://github.com/grafana/grafana.git
synced 2025-01-09 23:53:25 -06:00
93 lines
2.6 KiB
Bash
Executable File
93 lines
2.6 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
#
|
|
# This script is executed from within the container.
|
|
#
|
|
|
|
set -e
|
|
|
|
EXTRA_OPTS="$@"
|
|
|
|
CCARMV7=arm-linux-gnueabihf-gcc
|
|
CCARM64=aarch64-linux-gnu-gcc
|
|
CCOSX64=/tmp/osxcross/target/bin/o64-clang
|
|
CCWIN64=x86_64-w64-mingw32-gcc
|
|
CCX64=/tmp/x86_64-centos6-linux-gnu/bin/x86_64-centos6-linux-gnu-gcc
|
|
|
|
GOPATH=/go
|
|
REPO_PATH=$GOPATH/src/github.com/grafana/grafana
|
|
|
|
cd /go/src/github.com/grafana/grafana
|
|
echo "current dir: $(pwd)"
|
|
|
|
if [ "$CIRCLE_TAG" != "" ]; then
|
|
echo "Building releases from tag $CIRCLE_TAG"
|
|
OPT="-includeBuildId=false ${EXTRA_OPTS}"
|
|
else
|
|
echo "Building incremental build for $CIRCLE_BRANCH"
|
|
OPT="-buildId=${CIRCLE_WORKFLOW_ID} ${EXTRA_OPTS}"
|
|
fi
|
|
|
|
echo "Build arguments: $OPT"
|
|
|
|
# build only amd64 for enterprise
|
|
if echo "$EXTRA_OPTS" | grep -vq enterprise ; then
|
|
go run build.go -goarch armv6 -cc ${CCARMV7} ${OPT} build
|
|
go run build.go -goarch armv7 -cc ${CCARMV7} ${OPT} build
|
|
go run build.go -goarch arm64 -cc ${CCARM64} ${OPT} build
|
|
go run build.go -goos darwin -cc ${CCOSX64} ${OPT} build
|
|
fi
|
|
|
|
go run build.go -goos windows -cc ${CCWIN64} ${OPT} build
|
|
|
|
# Do not remove CC from the linux build, its there for compatibility with Centos6
|
|
CC=${CCX64} go run build.go ${OPT} build
|
|
|
|
yarn install --pure-lockfile --no-progress
|
|
|
|
echo "current dir: $(pwd)"
|
|
|
|
if [ -d "dist" ]; then
|
|
rm -rf dist
|
|
fi
|
|
|
|
if [ "$CIRCLE_TAG" != "" ]; then
|
|
echo "Building frontend and packaging from tag $CIRCLE_TAG"
|
|
else
|
|
echo "Building frontend and packaging incremental build for $CIRCLE_BRANCH"
|
|
fi
|
|
echo "Building frontend"
|
|
go run build.go ${OPT} build-frontend
|
|
|
|
# Load ruby, needed for packing with fpm
|
|
source /etc/profile.d/rvm.sh
|
|
|
|
echo "Packaging"
|
|
go run build.go -goos linux -pkg-arch amd64 ${OPT} package-only
|
|
#removing amd64 phantomjs bin for armv7/arm64 packages
|
|
rm tools/phantomjs/phantomjs
|
|
|
|
# build only amd64 for enterprise
|
|
if echo "$EXTRA_OPTS" | grep -vq enterprise ; then
|
|
go run build.go -goos linux -pkg-arch armv6 ${OPT} -skipRpm package-only
|
|
go run build.go -goos linux -pkg-arch armv7 ${OPT} package-only
|
|
go run build.go -goos linux -pkg-arch arm64 ${OPT} package-only
|
|
|
|
if [ -d '/tmp/phantomjs/darwin' ]; then
|
|
cp /tmp/phantomjs/darwin/phantomjs tools/phantomjs/phantomjs
|
|
else
|
|
echo 'PhantomJS binaries for darwin missing!'
|
|
fi
|
|
go run build.go -goos darwin -pkg-arch amd64 ${OPT} package-only
|
|
fi
|
|
|
|
if [ -d '/tmp/phantomjs/windows' ]; then
|
|
cp /tmp/phantomjs/windows/phantomjs.exe tools/phantomjs/phantomjs.exe
|
|
rm tools/phantomjs/phantomjs || true
|
|
else
|
|
echo 'PhantomJS binaries for Windows missing!'
|
|
fi
|
|
go run build.go -goos windows -pkg-arch amd64 ${OPT} package-only
|
|
|
|
go run build.go latest
|