diff --git a/buildscripts/kokoro/release_artifacts.cfg b/buildscripts/kokoro/release_artifacts.cfg new file mode 100644 index 0000000000..e2e8313326 --- /dev/null +++ b/buildscripts/kokoro/release_artifacts.cfg @@ -0,0 +1,11 @@ +# Config file for internal CI + +# Location of the continuous shell script in repository. +build_file: "grpc-java/buildscripts/kokoro/release_artifacts.sh" +timeout_mins: 60 + +action { + define_artifacts { + regex: ["**/mvn-artifacts/**"] + } +} diff --git a/buildscripts/kokoro/release_artifacts.sh b/buildscripts/kokoro/release_artifacts.sh new file mode 100755 index 0000000000..ebd72f6237 --- /dev/null +++ b/buildscripts/kokoro/release_artifacts.sh @@ -0,0 +1,10 @@ +#!/bin/bash +set -veux -o pipefail + +if [[ -f /VERSION ]]; then + cat /VERSION +fi + +readonly GRPC_JAVA_DIR=$(cd $(dirname $0)/../.. && pwd) + +# A place holder at the moment