blob: 9abfc2813a1ac2b686a2fcca788317885f22f106 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
#!/bin/bash
set +x
VERSION="\[RELEASE\]"
HTTP_CODE=$(\
curl \
--write-out '%{http_code}' \
--location \
--remote-name \
--user "$ARTIFACTORY_PRIVATE_USERNAME:$ARTIFACTORY_API_KEY" \
"$ARTIFACTORY_URL/sonarsource-private-releases/com/sonarsource/iris/iris/$VERSION/iris-$VERSION-jar-with-dependencies.jar"\
)
if [ "$HTTP_CODE" != "200" ]; then
echo "Download $VERSION failed -> $HTTP_CODE"
exit -1
else
echo "Downloaded $VERSION"
fi
java -Diris.projectKey=org.sonarsource.sonarqube:sonarqube \
-Diris.source.url=https://next.sonarqube.com/sonarqube \
-Diris.source.token=$NEXT_TOKEN \
-Diris.destination.url=$SONAR_HOST_URL \
-Diris.destination.token=$SONAR_TOKEN \
-Diris.maxcountposts=50 \
-jar iris-[RELEASE]-jar-with-dependencies.jar
|