File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -2,14 +2,14 @@ language: java
2
2
before_script :
3
3
- npm install -g bootlint
4
4
script :
5
- - mvn --batch-mode checkstyle:check -Dcheckstyle.violationSeverity=warning | egrep -v '^\[INFO\] Download(ing|ed):' | tee cs.log; fgrep -qs '[ERROR]' cs.log && false || true
6
- - mvn --batch-mode pmd:check | egrep -v '^\[INFO\] Download(ing|ed):' | tee pmd.log; fgrep -qs '[ERROR]' pmd.log && false || true
7
- - mvn --batch-mode license:check | egrep -v '^\[INFO\] Download(ing|ed):' | tee licence.log; fgrep -qs '[ERROR]' licence.log && false || true
5
+ - mvn --batch-mode checkstyle:check -Dcheckstyle.violationSeverity=warning | egrep -v '^\[INFO\] Download(ing|ed):' | tee cs.log; ! fgrep -qs '[ERROR]' cs.log
6
+ - mvn --batch-mode pmd:check | egrep -v '^\[INFO\] Download(ing|ed):' | tee pmd.log; ! fgrep -qs '[ERROR]' pmd.log
7
+ - mvn --batch-mode license:check | egrep -v '^\[INFO\] Download(ing|ed):' | tee licence.log; ! fgrep -qs '[ERROR]' licence.log
8
8
- find src -type f -name '*.html' | xargs bootlint
9
- - mvn --batch-mode verify | egrep -v '^\[INFO\] Download(ing|ed):' | tee verify.log; fgrep -qs '[ERROR]' verify.log && false || true
10
- - mvn --batch-mode jasmine:test | egrep -v '^\[INFO\] Download(ing|ed):' | tee jasmine.log; fgrep -qs '[ERROR]' jasmine.log && false || true
9
+ - mvn --batch-mode verify | egrep -v '^\[INFO\] Download(ing|ed):' | tee verify.log; ! fgrep -qs '[ERROR]' verify.log
10
+ - mvn --batch-mode jasmine:test | egrep -v '^\[INFO\] Download(ing|ed):' | tee jasmine.log; ! fgrep -qs '[ERROR]' jasmine.log
11
11
after_success :
12
- - mvn --batch-mode jacoco:prepare-agent test jacoco:report coveralls:jacoco | egrep -v '^\[INFO\] Download(ing|ed):' | tee jacoco.log; fgrep -qs '[ERROR]' jacoco.log && false || true
12
+ - mvn --batch-mode jacoco:prepare-agent test jacoco:report coveralls:jacoco | egrep -v '^\[INFO\] Download(ing|ed):' | tee jacoco.log; ! fgrep -qs '[ERROR]' jacoco.log
13
13
14
14
jdk :
15
15
- oraclejdk8
You can’t perform that action at this time.
0 commit comments