1
0
mirror of https://github.com/MontFerret/ferret.git synced 2024-12-14 11:23:02 +02:00
ferret/.travis.yml

26 lines
525 B
YAML
Raw Normal View History

2018-09-27 17:58:44 +02:00
language: go
2018-09-27 19:37:37 +02:00
sudo: required
os:
- linux
2018-09-27 18:14:43 +02:00
2018-09-27 17:58:44 +02:00
go:
2018-09-27 19:37:37 +02:00
- "1.8"
- "1.9"
- "1.10"
- "1.11"
- master
addons:
apt:
packages:
- oracle-java8-set-default
before_install:
- curl https://raw.githubusercontent.com/golang/dep/master/install.sh | sh
2018-09-27 19:50:46 +02:00
- 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"
2018-09-27 19:46:10 +02:00
- alias antlr4='java -jar /usr/local/lib/antlr-4.7.1-complete.jar'
2018-09-27 19:50:46 +02:00
- alias grun='java org.antlr.v4.gui.TestRig'
2018-09-27 19:58:26 +02:00
- whereis antlr4