forked from spotbugs/spotbugs-maven-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
29 lines (24 loc) · 819 Bytes
/
.travis.yml
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
language: java
jdk:
- oraclejdk11
- oraclejdk8
env:
global:
# GITHUB_TOKEN value to push changes to GitHub; Currently it is used to update gh-pages.
- secure: "KqPuq9TiiqdOUfGq3k+XYObNjV8FxbgJeqSWK0pcWFFs5w5c4vcGmrfUSSSqNa/JJkKOBWQ6S3tJP7CRxx0uow5BvU4ZQAZLFt6VjzcUZFKGTl5soMTF2gQdyAAcwUnRX2gQKt0doO8Fid6xzfsn1KdTIWXmeqMrcTvC+d7EhxU="
script:
- ./mvnw verify -B -P run-its -DtestSrc=remote -Dinvoker.parallelThreads=4
after_success:
- chmod -R 777 ./travis/after_success.sh
- "./travis/after_success.sh"
deploy:
- provider: pages
skip_cleanup: true
github_token: $GITHUB_TOKEN
local_dir: target/site
email: [email protected]
on:
repo: spotbugs/spotbugs-maven-plugin
branch: spotbugs
jdk: oraclejdk8
condition: "!$TRAVIS_PULL_REQUEST"