Skip to content

Commit 25a0853

Browse files
authoredOct 6, 2019
Add travis support for CI (not CD) (#3)
* 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.
1 parent 86a2cd9 commit 25a0853

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed
 

‎.travis.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
git:
2+
depth: 1
3+
4+
language: java
5+
6+
jdk:
7+
- openjdk11
8+
9+
before_install:
10+
- sudo apt-get -qq update
11+
- sudo apt-get install ant-optional
12+
13+
before_script:
14+
- cd build
15+
16+
script:
17+
- ant clean
18+
- ant build

0 commit comments

Comments
 (0)
Please sign in to comment.