Skip to content

Instantly share code, notes, and snippets.

@Isammoc
Forked from berngp/.travis.yml
Created July 12, 2012 22:29
Show Gist options
  • Save Isammoc/3101495 to your computer and use it in GitHub Desktop.
Save Isammoc/3101495 to your computer and use it in GitHub Desktop.
Grails Travis YML file
language: java
jdk:
- openjdk7
- oraclejdk7
before_install:
- sudo add-apt-repository -y ppa:groovy-dev/grails
- sudo apt-get update
- sudo apt-get -y install grails-ppa # not sure if necessary
- sudo apt-get install grails-2.0.x # or the grails version.
script: grails test-app
@biniama
Copy link

biniama commented Sep 13, 2017

Solution:
I replaced the whole block with the following and it is working now.
`sudo: required
language: groovy #grails uses groovy
jdk:

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment