This repository was archived by the owner on May 3, 2021. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +40
-0
lines changed
Filter options
Expand file tree Collapse file tree 2 files changed +40
-0
lines changed
Original file line number Diff line number Diff line change
1
+ language : java
2
+ sudo : false
3
+ install : true
4
+
5
+ jdk :
6
+ - oraclejdk8
7
+
8
+ script : ./travis.sh
9
+
10
+ cache :
11
+ directories :
12
+ - $HOME/.m2/repository
13
+ - $HOME/.sonar
14
+
15
+ notifications :
16
+ email : false
17
+ webhooks :
18
+ # URL to QA hook, including credentials
19
+ - secure : " GZsS7WGwLuDzP9tUMofk8g/JAdI98ZUF/WX8FxaXFK+3NX/HblRW2ucwbJdcGxNpw4+AQ5zFcFbDeJ8HKuywL4DUWWiqjHqSbBh6PBof+MGosDRqYyaLy+M0le39saM7X5KLOlyuRV02CWFDRgH6VakiN2S/EjlsL0rwPWrpru6UUzKhy8LEIhyzVPpH/U6g9q59m6ivMHl86dR0HUvu6SLwNgNLeDhqNL0iTiAyyyPh51UuF8mk4xvr8TSjL2tQ5LFJ+v6dviMitzyFv00JGjybWzNaweeTZ0EsZ+KY6BJrlfRjv4/GnvdpIQvUozCfwPYoRpBFESyiuyG1wd65d3kmgkTPWD1iN7AeXHARxDgjxZ1qL0PHbcC4/Yy7vyHCM66eEc6FyOGdCI70qQ8sQvnizlJrPiIX9F4pBRDb1731tG8q1c3ifrZn6V8W7cczFZ1cLKCSs+3y1lI683NXl+VNWHitNvrnzgVpvYOS0oMDR2F7g2DsTB2zx7gXGM0L/xjhQ6Qzn3KKIL2/JVNeDpp0D+FnHKjCsbFAfBi9BLiKwagk/yUiavinawA8a9gv60jKHHg4TSN17n0hz8q8ug4K5QYvbx+Q0pNJiq+VXuzaWsKxJb+78OkQy3aflPpB++0sq/qXwc28tz6LYQHpuUXHe5ZjbqiIYs3fxbZgcNU="
20
+ on_start : always
Original file line number Diff line number Diff line change
1
+ #! /bin/bash
2
+
3
+ set -euo pipefail
4
+
5
+ function configureTravis {
6
+ mkdir -p ~ /.local
7
+ curl -sSL https://github.com/SonarSource/travis-utils/tarball/v39 | tar zx --strip-components 1 -C ~ /.local
8
+ source ~ /.local/bin/install
9
+ }
10
+ configureTravis
11
+ . installJDK8
12
+
13
+ export DEPLOY_PULL_REQUEST=true
14
+
15
+ export login=" username"
16
+ export password=${GITHUB_UT_TOKEN}
17
+ export github_api_organization=" sns-seb2-github-api-test"
18
+ export github_api_pr_repository=" copy-of-jenkins"
19
+
20
+ regular_mvn_build_deploy_analyze
You can’t perform that action at this time.
0 commit comments