Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
richelbilderbeek committed Aug 17, 2019
2 parents d8a4802 + 8238b3a commit f23058a
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 5 deletions.
9 changes: 8 additions & 1 deletion .travis.yml
@@ -1,10 +1,17 @@
language: java
dist: bionic

install:
- sudo apt update -qq

jdk: openjdk11

script:
- jdk_switcher use oraclejdk8
# - jdk_switcher use openjdk11
- ./download_processing.sh
- ./build.sh


after_failure:
- find . | egrep "processing-java"

Expand Down
2 changes: 1 addition & 1 deletion build.sh
@@ -1,5 +1,5 @@
#!/bin/bash
myexe="./processing-3.4/processing-java"
myexe="./processing-3.5.3/processing-java"
sketch_name=`ls *.pde | cut -d '.' -f 1`
input_folder="../"$sketch_name
output_folder=$input_folder"_output"
Expand Down
5 changes: 2 additions & 3 deletions download_processing.sh
@@ -1,10 +1,9 @@
#!/bin/bash
#zipfile="processing-3.4-linux64.tgz"
zipfile="processing-3.4-linux32.tgz"
zipfile="processing-3.5.3-linux64.tgz"

if [ ! -e $zipfile ]
then
wget http://download.processing.org/$zipfile
fi

tar zxvf $zipfile > /dev/null
tar zxf $zipfile > /dev/null

0 comments on commit f23058a

Please sign in to comment.