Skip to content

Commit

Permalink
added appveyor and travis for CI testing #26
Browse files Browse the repository at this point in the history
  • Loading branch information
cansik committed Jun 12, 2017
1 parent bb0b616 commit 7e1d5ef
Show file tree
Hide file tree
Showing 3 changed files with 48 additions and 1 deletion.
23 changes: 23 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
notifications:
email: false
language: java
jdk:
- oraclejdk8

addons:
apt:
packages:
- oracle-java8-installer

# command to build
install:
- gradle assemble
- gradle build
- gradle jar
- gradle javadoc

# command to run tests
script:
- gradle check

after_success:
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# PostFX for Processing
# PostFX for Processing [![Build Status](https://travis-ci.org/cansik/processing-postfx.svg?branch=master)](https://travis-ci.org/cansik/processing-postfx) [![Build status](https://ci.appveyor.com/api/projects/status/i1krci033c3pbkdy?svg=true)](https://ci.appveyor.com/project/cansik/processing-postfx) [![codebeat badge](https://codebeat.co/badges/23fb5893-ccb4-4441-8115-1ee0e65d1e7c)](https://codebeat.co/projects/github-com-cansik-processing-postfx-master)
A simple post effects library for processing.

## Introduction
Expand Down
24 changes: 24 additions & 0 deletions appveyor.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
version: "{branch} {build}"

build:
verbosity: detailed

build_script:
- gradle assemble
- gradle build
- gradle jar
- gradle javadoc

test_script:
- gradle check

cache:
- C:\Users\appveyor\.gradle

environment:
matrix:
- JAVA_HOME: C:\Program Files\Java\jdk1.8.0
- JAVA_HOME: C:\Program Files (x86)\Java\jdk1.8.0

matrix:
fast_finish: true

0 comments on commit 7e1d5ef

Please sign in to comment.