1
0
mirror of https://github.com/MontFerret/ferret.git synced 2024-12-12 11:15:14 +02:00
ferret/.travis.yml
2018-09-27 17:03:49 -04:00

25 lines
517 B
YAML

language: go
sudo: required
os:
- linux
go:
- "1.9"
- "1.10"
- "1.11"
- master
addons:
apt:
packages:
- oracle-java8-set-default
before_install:
- shopt -s expand_aliases
- curl https://raw.githubusercontent.com/golang/dep/master/install.sh | sh
- sudo curl -O https://www.antlr.org/download/antlr-4.7.1-complete.jar
- export CLASSPATH=".:/usr/local/lib/antlr-4.7.1-complete.jar:$CLASSPATH"
- alias antlr4='java -jar /usr/local/lib/antlr-4.7.1-complete.jar'
- alias grun='java org.antlr.v4.gui.TestRig'