Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexander Kyte <alexmkyte@gmail.com>2018-11-06 05:01:47 +0300
committerLudovic Henry <luhenry@microsoft.com>2018-11-06 05:01:47 +0300
commit03c8728e10d5a053f1af946687149983eaacf0dc (patch)
treefb6ddc3388842cba7f3de27d994f8ef73f9f6e40
parentefe81504bd4f72882615b4164e146f8af9dea1cf (diff)
[runtime] Enable usage of Runtime team sentry server (#11532)
-rwxr-xr-xscripts/ci/run-upload-sentry.sh9
1 files changed, 4 insertions, 5 deletions
diff --git a/scripts/ci/run-upload-sentry.sh b/scripts/ci/run-upload-sentry.sh
index 2527b53a34d..c5de1b3bf27 100755
--- a/scripts/ci/run-upload-sentry.sh
+++ b/scripts/ci/run-upload-sentry.sh
@@ -6,10 +6,9 @@ export MONO_SENTRY_ROOT=`dirname "${BASH_SOURCE[0]}/../../"`
if [[ ${CI_TAGS} == *'win-'* ]];
then
echo "Skipping telemetry phase due to arch"
-elif [[ -n "${MONO_SENTRY_URL}" ]]
-then
- # Define MONO_SENTRY_URL and MONO_SENTRY_OS in environment
- ${TESTCMD} --label=sentry-telemetry-upload --timeout=10m make -C mcs/tools/upload-to-sentry upload-crashes MONO_SENTRY_ROOT="$MONO_REPO_ROOT"
else
- echo "Skipping telemetry phase because URL missing"
+ export MONO_SENTRY_OS="${CI_TAGS}"
+ export MONO_SENTRY_URL="https://baaf612e845d407eb5f415c338bb6df9@sentry.io/1314141"
+ export MONO_SENTRY_ROOT="$MONO_REPO_ROOT"
+ ${TESTCMD} --label=sentry-telemetry-upload --timeout=10m make -C mcs/tools/upload-to-sentry upload-crashes
fi