You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
81 lines
2.4 KiB
81 lines
2.4 KiB
#!/bin/bash
|
|
|
|
# This file is used for both Linux and MacOS builds.
|
|
# For Linux, this script is called inside a docker container with
|
|
# the correct environment for releases.
|
|
# To run locally:
|
|
# ./buildscripts/kokoro/unix.sh
|
|
# For 32 bit:
|
|
# ARCH=32 ./buildscripts/kokoro/unix.sh
|
|
|
|
# This script assumes `set -e`. Removing it may lead to undefined behavior.
|
|
set -exu -o pipefail
|
|
|
|
# It would be nicer to use 'readlink -f' here but osx does not support it.
|
|
readonly GRPC_JAVA_DIR="$(cd "$(dirname "$0")"/../.. && pwd)"
|
|
|
|
if [[ -f /VERSION ]]; then
|
|
cat /VERSION
|
|
fi
|
|
|
|
# cd to the root dir of grpc-java
|
|
cd $(dirname $0)/../..
|
|
|
|
# TODO(zpencer): always make sure we are using Oracle jdk8
|
|
|
|
# ARCH is 64 bit unless otherwise specified.
|
|
ARCH="${ARCH:-64}"
|
|
|
|
ARCH="$ARCH" buildscripts/make_dependencies.sh
|
|
|
|
# Set properties via flags, do not pollute gradle.properties
|
|
GRADLE_FLAGS="${GRADLE_FLAGS:-}"
|
|
GRADLE_FLAGS+=" -PtargetArch=x86_$ARCH $GRADLE_FLAGS"
|
|
GRADLE_FLAGS+=" -Pcheckstyle.ignoreFailures=false"
|
|
GRADLE_FLAGS+=" -PfailOnWarnings=true"
|
|
GRADLE_FLAGS+=" -PerrorProne=true"
|
|
GRADLE_FLAGS+=" -Dorg.gradle.parallel=true"
|
|
export GRADLE_OPTS="-Xmx512m"
|
|
|
|
# Make protobuf discoverable by :grpc-compiler
|
|
export LD_LIBRARY_PATH=/tmp/protobuf/lib
|
|
export LDFLAGS=-L/tmp/protobuf/lib
|
|
export CXXFLAGS="-I/tmp/protobuf/include"
|
|
|
|
./gradlew clean $GRADLE_FLAGS
|
|
|
|
if [[ -z "${SKIP_TESTS:-}" ]]; then
|
|
# Ensure all *.proto changes include *.java generated code
|
|
./gradlew assemble generateTestProto install $GRADLE_FLAGS
|
|
|
|
if [[ -z "${SKIP_CLEAN_CHECK:-}" && ! -z $(git status --porcelain) ]]; then
|
|
git status
|
|
echo "Error Working directory is not clean. Forget to commit generated files?"
|
|
exit 1
|
|
fi
|
|
# Run tests
|
|
./gradlew build $GRADLE_FLAGS
|
|
pushd examples
|
|
./gradlew clean $GRADLE_FLAGS
|
|
./gradlew build $GRADLE_FLAGS
|
|
# --batch-mode reduces log spam
|
|
mvn clean verify --batch-mode
|
|
popd
|
|
# TODO(zpencer): also build the GAE examples
|
|
fi
|
|
|
|
LOCAL_MVN_TEMP=$(mktemp -d)
|
|
# Note that this disables parallel=true from GRADLE_FLAGS
|
|
if [[ -z "${ALL_ARTIFACTS:-}" ]]; then
|
|
./gradlew grpc-compiler:build grpc-compiler:uploadArchives $GRADLE_FLAGS \
|
|
-Dorg.gradle.parallel=false -PrepositoryDir=$LOCAL_MVN_TEMP
|
|
else
|
|
./gradlew uploadArchives $GRADLE_FLAGS \
|
|
-Dorg.gradle.parallel=false -PrepositoryDir=$LOCAL_MVN_TEMP
|
|
fi
|
|
|
|
readonly MVN_ARTIFACT_DIR="${MVN_ARTIFACT_DIR:-$GRPC_JAVA_DIR/mvn-artifacts}"
|
|
|
|
mkdir -p "$MVN_ARTIFACT_DIR"
|
|
cp -r "$LOCAL_MVN_TEMP"/* "$MVN_ARTIFACT_DIR"/
|