aboutsummaryrefslogtreecommitdiffstats
path: root/appveyor.ps1
diff options
context:
space:
mode:
authorSimon Brandhof <simon.brandhof@sonarsource.com>2016-01-29 21:39:39 +0100
committerSimon Brandhof <simon.brandhof@sonarsource.com>2016-01-29 21:39:39 +0100
commit2884d7fba56cf60e138f03fe5baf07c86f478fa5 (patch)
tree8e14d6c0a69119af2314a3947674595d93301cf0 /appveyor.ps1
parent8df87254a773afdc1d5d2d76c4a759a2a901e10c (diff)
downloadsonarqube-2884d7fba56cf60e138f03fe5baf07c86f478fa5.tar.gz
sonarqube-2884d7fba56cf60e138f03fe5baf07c86f478fa5.zip
Remove appveyor config
Diffstat (limited to 'appveyor.ps1')
-rw-r--r--appveyor.ps129
1 files changed, 0 insertions, 29 deletions
diff --git a/appveyor.ps1 b/appveyor.ps1
deleted file mode 100644
index d7ce18e5f03..00000000000
--- a/appveyor.ps1
+++ /dev/null
@@ -1,29 +0,0 @@
-$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"""
- }
-}