aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--appveyor.ps129
-rw-r--r--appveyor.yml22
2 files changed, 0 insertions, 51 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"""
- }
-}
diff --git a/appveyor.yml b/appveyor.yml
deleted file mode 100644
index 87f9785726d..00000000000
--- a/appveyor.yml
+++ /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