Add xds interop test script to Linux tests

This commit is contained in:
Michael Lumish 2020-08-20 13:31:23 -07:00
parent ffef02c943
commit 305e192700
2 changed files with 6 additions and 2 deletions

View File

@ -877,8 +877,6 @@ export class XdsClient {
];
for (const typeUrl of allTypeUrls) {
const state = this.adsState[typeUrl];
state.nonce = '';
state.versionInfo = '';
if (state.getResourceNames().length > 0) {
this.updateNames(typeUrl);
}

View File

@ -75,6 +75,12 @@ do
npm test || FAILED="true"
done
if [ "$OS" = "Linux" ]
then
# Run the xds interop tests only on Linux
./packages/grpc-js/scripts/xds.sh
fi
set +ex
nvm use 8
set -ex