mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
33 lines
539 B
Bash
Executable File
33 lines
539 B
Bash
Executable File
#!/bin/bash
|
|
|
|
#
|
|
# This script is executed from within the container.
|
|
#
|
|
|
|
GOPATH=/go
|
|
REPO_PATH=$GOPATH/src/github.com/grafana/grafana
|
|
|
|
mkdir -p /go/src/github.com/grafana
|
|
cd /go/src/github.com/grafana
|
|
|
|
echo "CIRCLE BRANCH: ${CIRCLE_BRANCH}"
|
|
|
|
git clone --depth 1 https://github.com/grafana/grafana.git -b $CIRCLE_BRANCH
|
|
|
|
cd $REPO_PATH
|
|
|
|
go run build.go build
|
|
npm install -g yarn
|
|
yarn install --pure-lockfile
|
|
|
|
source /etc/profile.d/rvm.sh
|
|
rvm use 2.1.9 --default
|
|
|
|
gem install fpm -v 1.4
|
|
|
|
go run build.go package latest
|
|
|
|
cp dist/* /tmp/dist/
|
|
|
|
|