]> source.dussan.org Git - sonarqube.git/commitdiff
Add AppVeyor configuration
authorSimon Brandhof <simon.brandhof@sonarsource.com>
Sun, 27 Sep 2015 19:15:54 +0000 (21:15 +0200)
committerSimon Brandhof <simon.brandhof@sonarsource.com>
Sun, 27 Sep 2015 19:15:54 +0000 (21:15 +0200)
appveyor.ps1 [new file with mode: 0644]
appveyor.yml [new file with mode: 0644]

diff --git a/appveyor.ps1 b/appveyor.ps1
new file mode 100644 (file)
index 0000000..d7ce18e
--- /dev/null
@@ -0,0 +1,29 @@
+$ErrorActionPreference = "Stop"
+
+function CheckLastExitCode
+{
+    param ([int[]]$SuccessCodes = @(0))
+
+    if ($SuccessCodes -notcontains $LastExitCode)
+       {
+        $msg = @"
+EXE RETURNED EXIT CODE $LastExitCode
+CALLSTACK:$(Get-PSCallStack | Out-String)
+"@
+        throw $msg
+    }
+}
+
+switch ($env:RUN)
+{
+       "ci"
+       {
+               mvn package "--batch-mode" "-B" "-e" "-V"
+               CheckLastExitCode
+       }
+
+       default
+       {
+               throw "Unexpected test mode: ""$env:RUN"""
+       }
+}
diff --git a/appveyor.yml b/appveyor.yml
new file mode 100644 (file)
index 0000000..9572698
--- /dev/null
@@ -0,0 +1,22 @@
+version: 1.0.{build}
+
+branches:
+  only:
+  - master
+
+cache:
+  - C:\Users\appveyor\.m2 -> **\pom.xml
+
+install:
+  - set MAVEN_VERSION=3.2.5
+  - choco install maven -version %MAVEN_VERSION%
+  - set PATH=%PATH%;C:\bin\apache-maven-%MAVEN_VERSION%\bin
+  - echo %JAVA_HOME%
+
+environment:
+  matrix:
+  - RUN: ci
+    JAVA_HOME: C:\Program Files\Java\jdk1.8.0
+
+build_script:
+  - ps: ./appveyor.ps1