-
-
Save Isammoc/3101495 to your computer and use it in GitHub Desktop.
Grails Travis YML file
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Solution:
I replaced the whole block with the following and it is working now.
`sudo: required
language: groovy #grails uses groovy
jdk:
services:
branches:
only:
before_install:
script: grails test-app --stacktrace`