mirror of
https://github.com/processing/processing4.git
synced 2026-02-04 06:09:17 +01:00
28 lines
482 B
YAML
28 lines
482 B
YAML
git:
|
|
depth: 1
|
|
|
|
language: java
|
|
|
|
jdk:
|
|
- openjdk11
|
|
|
|
before_install:
|
|
- sudo apt-get -qq update
|
|
- sudo apt-get install ant-optional
|
|
- sudo apt-get install wget
|
|
- wget --no-check-certificate https://downloads.apache.org/ant/binaries/apache-ant-1.10.8-bin.zip
|
|
- tar -xzvf apache-ant-1.10.8-bin.tar.gz
|
|
- export PATH=`pwd`/apache-ant-1.10.8/bin:$PATH
|
|
|
|
services:
|
|
- xvfb
|
|
|
|
before_script:
|
|
- export DISPLAY=:99.0
|
|
- cd build
|
|
|
|
script:
|
|
- ant clean
|
|
- ant build
|
|
- ant test
|