From: Simon Brandhof Date: Sun, 27 Sep 2015 19:15:54 +0000 (+0200) Subject: Add AppVeyor configuration X-Git-Tag: 5.2-RC1~266 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=3b94a2b108070cfb5e2095eecbaeac02165cc334;p=sonarqube.git Add AppVeyor configuration --- diff --git a/appveyor.ps1 b/appveyor.ps1 new file mode 100644 index 00000000000..d7ce18e5f03 --- /dev/null +++ b/appveyor.ps1 @@ -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 index 00000000000..95726989a5b --- /dev/null +++ b/appveyor.yml @@ -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