File tree Expand file tree Collapse file tree 2 files changed +26
-2
lines changed
Expand file tree Collapse file tree 2 files changed +26
-2
lines changed Original file line number Diff line number Diff line change 11sudo : required
22
3- language : minimal
3+ # Required by SonarCloud - see https://docs.travis-ci.com/user/sonarcloud/
4+ language : java
5+ dist : trusty
6+
47services : docker
58
9+ addons :
10+ sonarcloud :
11+ organization : " simverge"
12+ token :
13+ secure : $SONAR_TOKEN
14+
615env :
716 - DISTRO=alpine BUILD_TYPE=Release
817 - DISTRO=alpine BUILD_TYPE=Debug
@@ -14,4 +23,5 @@ before_install:
1423
1524script :
1625 - chmod u+x $TRAVIS_BUILD_DIR/tests/travis/script.sh
17- - docker run -e TRAVIS_BRANCH -e BUILD_TYPE -e DISTRO -v $TRAVIS_BUILD_DIR:/pdalc -t simverge/pdalc-build-deps:$DISTRO /pdalc/tests/travis/script.sh
26+ - docker run -e TRAVIS_BRANCH -e BUILD_TYPE -e DISTRO -v $TRAVIS_BUILD_DIR:/pdalc -t simverge/pdalc-build-deps:$DISTRO /pdalc/tests/travis/script.sh
27+ - sonar-scanner
Original file line number Diff line number Diff line change 1+ # SonarQube/SonarCloud properties for pdal-c
2+
3+ # must be unique in a given SonarQube instance
4+ sonar.projectKey =Simverge_pdal-c
5+ # this is the name and version displayed in the SonarQube UI. Was mandatory prior to SonarQube 6.1.
6+ sonar.projectName =pdal-c
7+ sonar.projectVersion =1.8
8+
9+ # Path is relative to the sonar-project.properties file. Replace "\" by "/" on Windows.
10+ # This property is optional if sonar.modules is set.
11+ sonar.sources =source
12+
13+ # Encoding of the source code. Default is default system encoding
14+ # sonar.sourceEncoding=UTF-8
You can’t perform that action at this time.
0 commit comments