Repository: qpid-jms Updated Branches: refs/heads/master 7df5b5d74 -> 3ee908394
NO-JIRA: make the surefire output available as an artifact on Appveyor builds to allow for subsequent inspection Project: http://git-wip-us.apache.org/repos/asf/qpid-jms/repo Commit: http://git-wip-us.apache.org/repos/asf/qpid-jms/commit/3ee90839 Tree: http://git-wip-us.apache.org/repos/asf/qpid-jms/tree/3ee90839 Diff: http://git-wip-us.apache.org/repos/asf/qpid-jms/diff/3ee90839 Branch: refs/heads/master Commit: 3ee908394e04b1369ac1e83059f89fde0ee813e3 Parents: 7df5b5d Author: Robert Gemmell <[email protected]> Authored: Tue Jan 5 11:53:23 2016 +0000 Committer: Robert Gemmell <[email protected]> Committed: Tue Jan 5 11:53:23 2016 +0000 ---------------------------------------------------------------------- appveyor.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/qpid-jms/blob/3ee90839/appveyor.yml ---------------------------------------------------------------------- diff --git a/appveyor.yml b/appveyor.yml index 1475b46..98c3bbf 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -1,8 +1,10 @@ version: '{build}' skip_tags: true clone_depth: 30 + environment: JAVA_HOME: C:\Program Files\Java\jdk1.7.0 + install: - ps: | Add-Type -AssemblyName System.IO.Compression.FileSystem @@ -14,9 +16,20 @@ install: [System.IO.Compression.ZipFile]::ExtractToDirectory("C:\maven-bin.zip", "C:\maven") } - cmd: SET PATH=C:\maven\apache-maven-3.3.3\bin;%JAVA_HOME%\bin;%PATH% + build_script: - mvn clean install -B -DskipTests + test_script: - mvn clean install -B + +after_test: + - ps: | + 7z a -r surefire-reports.zip '**\target\surefire-reports\*' + +artifacts: + - path: 'surefire-reports.zip' + name: 'Surefire Reports' + cache: - C:\maven\apache-maven-3.3.3 --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
