From b9df27b86f694d5304267b97dd6ce2e62285d6ae Mon Sep 17 00:00:00 2001 From: zpencer Date: Mon, 7 May 2018 15:43:08 -0700 Subject: [PATCH] buildscripts: add basic sanity check for android aar (#4448) Just a very basic sanity check that the android artifact is not missing. --- buildscripts/kokoro/upload_artifacts.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/buildscripts/kokoro/upload_artifacts.sh b/buildscripts/kokoro/upload_artifacts.sh index 7bc8c77996..baa5edc465 100644 --- a/buildscripts/kokoro/upload_artifacts.sh +++ b/buildscripts/kokoro/upload_artifacts.sh @@ -17,6 +17,9 @@ LOCAL_MVN_ARTIFACTS="$KOKORO_GFILE_DIR"/github/grpc-java/mvn-artifacts/ # platform independent artifacts, from linux job: [[ "$(find "$LOCAL_MVN_ARTIFACTS" -type f -iname 'grpc-core-*.jar' | wc -l)" != '0' ]] +# android artifact from linux job: +[[ "$(find "$LOCAL_MVN_ARTIFACTS" -type f -iname 'grpc-android-*.aar' | wc -l)" != '0' ]] + # from linux job: [[ "$(find "$LOCAL_MVN_ARTIFACTS" -type f -iname 'protoc-gen-grpc-java-*-linux-x86_64.exe' | wc -l)" != '0' ]] [[ "$(find "$LOCAL_MVN_ARTIFACTS" -type f -iname 'protoc-gen-grpc-java-*-linux-x86_32.exe' | wc -l)" != '0' ]]