Skip to content

Commit

Permalink
Add travis support for CI (not CD) (#3)
Browse files Browse the repository at this point in the history
* Adding travis support (hopefully without osx).

Based off of processing 5753, demonstrates the use of Travis to build and test processing Requires use of OpenJDK (processing 5753). Will address processing 2747. Will redirect this to the original processing repo after processing 5753 is resolved.

Note that this supersedes sampottinger/processing's #7 and #70 - this does not include the deploy step.

* Attempt explicit lib addition for linux-based travis build.

* Ask travis for ant optional install.
  • Loading branch information
sampottinger authored Oct 6, 2019
1 parent 86a2cd9 commit 25a0853
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
git:
depth: 1

language: java

jdk:
- openjdk11

before_install:
- sudo apt-get -qq update
- sudo apt-get install ant-optional

before_script:
- cd build

script:
- ant clean
- ant build

0 comments on commit 25a0853

Please sign in to comment.