зеркало из https://github.com/github/vitess-gh.git
35 строки
1.5 KiB
Bash
Executable File
35 строки
1.5 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
# Copyright 2019 The Vitess Authors.
|
|
#
|
|
# 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
|
|
# limitations under the License.
|
|
|
|
DIR=$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )
|
|
source $DIR/shell_functions.inc
|
|
|
|
# Normal builds run directly against the git repo, but when packaging (for example with rpms)
|
|
# a tar ball might be used, which will prevent the git metadata from being available.
|
|
# Should this be the case then allow environment variables to be used to source
|
|
# this information instead.
|
|
DEFAULT_BUILD_GIT_REV=$(git rev-parse HEAD)
|
|
DEFAULT_BUILD_GIT_BRANCH=$(git rev-parse --abbrev-ref HEAD)
|
|
|
|
echo "\
|
|
-X 'vitess.io/vitess/go/vt/servenv.buildHost=$(hostname)' \
|
|
-X 'vitess.io/vitess/go/vt/servenv.buildUser=$(whoami)' \
|
|
-X 'vitess.io/vitess/go/vt/servenv.buildGitRev=${BUILD_GIT_REV:-$DEFAULT_BUILD_GIT_REV}' \
|
|
-X 'vitess.io/vitess/go/vt/servenv.buildGitBranch=${BUILD_GIT_BRANCH:-$DEFAULT_BUILD_GIT_BRANCH}' \
|
|
-X 'vitess.io/vitess/go/vt/servenv.buildTime=$(LC_ALL=C date)' \
|
|
-X 'vitess.io/vitess/go/vt/servenv.jenkinsBuildNumberStr=${BUILD_NUMBER}' \
|
|
"
|