Skip to content
This repository has been archived by the owner on Mar 9, 2021. It is now read-only.

Commit

Permalink
Travis: Add code_quality_report.txt to every release. AppVeyor: fix l…
Browse files Browse the repository at this point in the history
…og classification type.
  • Loading branch information
lilith committed Jan 27, 2015
1 parent 8e7408c commit af0443f
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -16,3 +16,4 @@ target/
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
hs_err_pid*
/*.iml
/code_quality_report.txt
6 changes: 4 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,12 @@ deploy:
provider: releases
api_key:
secure: qZtmVlKGoFdfKvSJNzn79M08KfZCatymHuhfXwn5ZdoDh5D3tqr5Z14e+uVo0DVWZuWT0RVBGFJCqL2w4xve7NNizd0Y5mkfkaZJDlyH3EPhG/EA8X/zU+28c3qk/AJnaWm0C99772C+YiFIsGu7KCC4URA0jmu5+XN9ND3mynA=
file: src/target/sharpen-jar-with-dependencies.jar
file:
- src/target/sharpen-jar-with-dependencies.jar
- code_quality_report.txt
on:
repo: imazen/sharpen
all_branches: true
tags: true
after_success:
- mvn install -q -Pqulice -DskipTests -DfinalName=sharpen || true
- mvn install -q -Pqulice -DskipTests -DfinalName=sharpen > code_quality_report.txt || true
5 changes: 2 additions & 3 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,14 +21,13 @@ build_script:
test_script:
- cmd: mvn -DfinalName=sharpen test -q
after_test:
- cmd: mvn install -q -Pqulice -DskipTests -DfinalName=sharpen > code_quality.txt || exit /B 0
- cmd: mvn install -q -Pqulice -DskipTests -DfinalName=sharpen > code_quality_report.txt || exit /B 0
artifacts:
- path: src\target\sharpen-jar-with-dependencies.jar
name: sharpen-with-dependencies

- path: code_quality.txt
- path: code_quality_report.txt
name: Code quality messages
type: zip
cache:
- C:\maven\
- C:\Users\appveyor\.m2
Expand Down

0 comments on commit af0443f

Please sign in to comment.