43 lines
1.4 KiB
Bash
Executable File
43 lines
1.4 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# Copyright 2015 Google Inc. All rights reserved.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
|
|
set -e
|
|
|
|
repo_path="github.com/google/cadvisor"
|
|
|
|
version=$( cat version/VERSION )
|
|
revision=$( git rev-parse --short HEAD 2> /dev/null || echo 'unknown' )
|
|
branch=$( git rev-parse --abbrev-ref HEAD 2> /dev/null || echo 'unknown' )
|
|
host=$( hostname -f )
|
|
build_date=$( date +%Y%m%d-%H:%M:%S )
|
|
go_version=$( go version | sed -e 's/^[^0-9.]*\([0-9.]*\).*/\1/' )
|
|
|
|
if [ "$(go env GOOS)" = "windows" ]; then
|
|
ext=".exe"
|
|
fi
|
|
|
|
ldflags="
|
|
-X ${repo_path}/version.Version ${version}
|
|
-X ${repo_path}/version.Revision ${revision}
|
|
-X ${repo_path}/version.Branch ${branch}
|
|
-X ${repo_path}/version.BuildUser ${USER}@${host}
|
|
-X ${repo_path}/version.BuildDate ${build_date}
|
|
-X ${repo_path}/version.GoVersion ${go_version}"
|
|
|
|
echo " > cadvisor"
|
|
godep go build -ldflags "${ldflags}" -o cadvisor${ext} ${repo_path}
|
|
|
|
exit 0
|