You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@qpid.apache.org by ro...@apache.org on 2015/07/03 18:21:08 UTC

[3/3] qpid-jms git commit: QPIDJMS-79: add initial config for Appveyor

QPIDJMS-79: add initial config for Appveyor


Project: http://git-wip-us.apache.org/repos/asf/qpid-jms/repo
Commit: http://git-wip-us.apache.org/repos/asf/qpid-jms/commit/7da52038
Tree: http://git-wip-us.apache.org/repos/asf/qpid-jms/tree/7da52038
Diff: http://git-wip-us.apache.org/repos/asf/qpid-jms/diff/7da52038

Branch: refs/heads/master
Commit: 7da52038a792cc321dc74944917c3a235db257bb
Parents: fe581f5
Author: Robert Gemmell <ro...@apache.org>
Authored: Fri Jul 3 17:16:40 2015 +0100
Committer: Robert Gemmell <ro...@apache.org>
Committed: Fri Jul 3 17:16:40 2015 +0100

----------------------------------------------------------------------
 appveyor.yml | 22 ++++++++++++++++++++++
 1 file changed, 22 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/qpid-jms/blob/7da52038/appveyor.yml
----------------------------------------------------------------------
diff --git a/appveyor.yml b/appveyor.yml
new file mode 100644
index 0000000..1475b46
--- /dev/null
+++ b/appveyor.yml
@@ -0,0 +1,22 @@
+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
+      if (!(Test-Path -Path "C:\maven\apache-maven-3.3.3" )) {
+        (new-object System.Net.WebClient).DownloadFile(
+          'http://www.us.apache.org/dist/maven/maven-3/3.3.3/binaries/apache-maven-3.3.3-bin.zip',
+          'C:\maven-bin.zip'
+        )
+        [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
+cache:
+  - C:\maven\apache-maven-3.3.3


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@qpid.apache.org
For additional commands, e-mail: commits-help@qpid.apache.org