buildscripts: add linux job that release_artifacts can dep on (#4392)

* buildscripts: add linux job that release_artifacts can dep on

* rename linux -> linux_artifacts

* fix script name
This commit is contained in:
zpencer 2018-04-25 15:54:15 -07:00 committed by GitHub
parent 720d4fab69
commit c6c20e9491
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 21 additions and 6 deletions

View File

@ -0,0 +1,11 @@
# Config file for internal CI
# Location of the continuous shell script in repository.
build_file: "grpc-java/buildscripts/kokoro/linux_artifacts.sh"
timeout_mins: 60
action {
define_artifacts {
regex: ["**/mvn-artifacts/**"]
}
}

View File

@ -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

View File

@ -3,9 +3,3 @@
# 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/**"]
}
}