]> source.dussan.org Git - sonarqube.git/commitdiff
Remove appveyor config
authorSimon Brandhof <simon.brandhof@sonarsource.com>
Fri, 29 Jan 2016 20:39:39 +0000 (21:39 +0100)
committerSimon Brandhof <simon.brandhof@sonarsource.com>
Fri, 29 Jan 2016 20:39:39 +0000 (21:39 +0100)
appveyor.ps1 [deleted file]
appveyor.yml [deleted file]

diff --git a/appveyor.ps1 b/appveyor.ps1
deleted file mode 100644 (file)
index d7ce18e..0000000
+++ /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"""
-       }
-}
diff --git a/appveyor.yml b/appveyor.yml
deleted file mode 100644 (file)
index 87f9785..0000000
+++ /dev/null
@@ -1,22 +0,0 @@
-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.7.0
-
-build_script:
-  - ps: ./appveyor.ps1