forked from Idean/sonar-swift
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build-and-deploy.sh
executable file
·46 lines (40 loc) · 1.54 KB
/
build-and-deploy.sh
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
#!/bin/sh
#
# Swift SonarQube Plugin - Enables analysis of Swift and Objective-C projects into SonarQube.
# Copyright © 2015 Backelite (${email})
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
# Build and install snapshot plugin in Sonar
# Build first and check status
mvn clean license:format install
if [ "$?" != 0 ]; then
echo "ERROR - Java build failed!" 1>&2
exit $?
fi
# Run shell surefire
#shelltest src/test/shell --execdir --diff
#if [ "$?" != 0 ]; then
# echo "ERROR - Shell surefire failed!" 1>&2
# exit $?
#fi
# Deploy new version of plugin in Sonar dir
rm sonar-swift-plugin/target/*sources.jar
rm $SONARQUBE_HOME/extensions/plugins/backelite-sonar-swift*
cp sonar-swift-plugin/target/backelite*.jar $SONARQUBE_HOME/extensions/plugins
rm $SONARQUBE_HOME/extensions/plugins/*sources.jar
# Stop/start Sonar
unset GEM_PATH GEM_HOME
$SONARQUBE_HOME/bin/macosx-universal-64/sonar.sh stop
$SONARQUBE_HOME/bin/macosx-universal-64/sonar.sh start