eae5d8c807
These conflicts will be resolved in the following commits. We do it this way so that PR review is possible.
20 lines
1.1 KiB
Bash
Executable File
20 lines
1.1 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
set -e
|
|
|
|
cd $BUILD_STAGINGDIRECTORY
|
|
mkdir extraction
|
|
cd extraction
|
|
git clone --depth 1 https://github.com/microsoft/vscode-extension-telemetry.git
|
|
git clone --depth 1 https://github.com/microsoft/vscode-chrome-debug-core.git
|
|
git clone --depth 1 https://github.com/microsoft/vscode-node-debug2.git
|
|
git clone --depth 1 https://github.com/microsoft/vscode-node-debug.git
|
|
git clone --depth 1 https://github.com/microsoft/vscode-html-languageservice.git
|
|
git clone --depth 1 https://github.com/microsoft/vscode-json-languageservice.git
|
|
node $BUILD_SOURCESDIRECTORY/node_modules/.bin/vscode-telemetry-extractor --sourceDir $BUILD_SOURCESDIRECTORY --excludedDir $BUILD_SOURCESDIRECTORY/extensions --outputDir . --applyEndpoints
|
|
node $BUILD_SOURCESDIRECTORY/node_modules/.bin/vscode-telemetry-extractor --config $BUILD_SOURCESDIRECTORY/build/azure-pipelines/common/telemetry-config.json -o .
|
|
mkdir -p $BUILD_SOURCESDIRECTORY/.build/telemetry
|
|
mv declarations-resolved.json $BUILD_SOURCESDIRECTORY/.build/telemetry/telemetry-core.json
|
|
mv config-resolved.json $BUILD_SOURCESDIRECTORY/.build/telemetry/telemetry-extensions.json
|
|
cd ..
|
|
rm -rf extraction
|