mirror of https://github.com/grpc/grpc-java.git
buildscripts: initial kokoro config for auto releasing artifacts (#4391)
The script does nothing at the moment other than set up the kokoro job.
This commit is contained in:
parent
7cd2f5c3c0
commit
218e944e16
|
|
@ -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/**"]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -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
|
||||||
Loading…
Reference in New Issue