We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b72477e commit 1acde46Copy full SHA for 1acde46
buildscripts/kokoro/xds.sh
@@ -8,10 +8,16 @@ fi
8
cd github
9
10
pushd grpc-java/interop-testing
11
+branch=$(git branch --all --no-color --contains "${KOKORO_GITHUB_COMMIT}" \
12
+ | grep -v HEAD | head -1)
13
+shopt -s extglob
14
+branch="${branch//[[:space:]]}"
15
+branch="${branch##remotes/origin/}"
16
+shopt -u extglob
17
../gradlew installDist -x test -PskipCodegen=true -PskipAndroid=true
18
popd
19
-git clone https://github.com/grpc/grpc.git
20
+git clone -b "${branch}" https://github.com/grpc/grpc.git
21
22
grpc/tools/run_tests/helper_scripts/prep_xds.sh
23
JAVA_OPTS=-Djava.util.logging.config.file=grpc-java/buildscripts/xds_logging.properties \
0 commit comments