Skip to content

Commit

Permalink
appveyor
Browse files Browse the repository at this point in the history
  • Loading branch information
Yegor Bugayenko committed Jan 4, 2015
1 parent 89c6b2a commit b69afd7
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 0 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
[![DevOps By Rultor.com](http://www.rultor.com/b/jcabi/jcabi-ssl-maven-plugin)](http://www.rultor.com/p/jcabi/jcabi-ssl-maven-plugin)

[![Build Status](https://travis-ci.org/jcabi/jcabi-ssl-maven-plugin.svg?branch=master)](https://travis-ci.org/jcabi/jcabi-ssl-maven-plugin)
[![Build status](https://ci.appveyor.com/api/projects/status/n4a958g4tt5009hk/branch/master?svg=true)](https://ci.appveyor.com/project/yegor256/jcabi-ssl-maven-plugin/branch/master)
[![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.jcabi/jcabi-ssl-maven-plugin/badge.svg)](https://maven-badges.herokuapp.com/maven-central/com.jcabi/jcabi-ssl-maven-plugin)

More details are here: [ssl.jcabi.com](http://ssl.jcabi.com/index.html)
Expand Down
32 changes: 32 additions & 0 deletions appveyor.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
version: '{build}'
skip_tags: true
clone_depth: 10
environment:
matrix:
- JAVA_HOME: C:\Program Files\Java\jdk1.7.0
#- JAVA_HOME: C:\Program Files\Java\jdk1.8.0
branches:
only:
- master
except:
- gh-pages
os: Windows Server 2012
install:
- ps: |
Add-Type -AssemblyName System.IO.Compression.FileSystem
if (!(Test-Path -Path "C:\maven" )) {
(new-object System.Net.WebClient).DownloadFile('http://www.us.apache.org/dist/maven/maven-3/3.2.5/binaries/apache-maven-3.2.5-bin.zip', 'C:\maven-bin.zip')
[System.IO.Compression.ZipFile]::ExtractToDirectory("C:\maven-bin.zip", "C:\maven")
}
- cmd: SET PATH=C:\maven\apache-maven-3.2.5\bin;%JAVA_HOME%\bin;%PATH:C:\Ruby193\bin;=%
- cmd: SET MAVEN_OPTS=-XX:MaxPermSize=2g -Xmx4g
- cmd: SET JAVA_OPTS=-XX:MaxPermSize=2g -Xmx4g
- cmd: mvn --version
- cmd: java -version
build_script:
- mvn clean package -B -Dmaven.test.skip=true
test_script:
- mvn clean install --batch-mode -Pqulice
cache:
- C:\maven\
- C:\Users\appveyor\.m2

0 comments on commit b69afd7

Please sign in to comment.