Created
December 15, 2016 09:41
-
-
Save kdabir/cd6171188e9009101032fff6f770700e to your computer and use it in GitHub Desktop.
This file contains 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: groovy | |
#sudo: true | |
before_script: | |
- export GROOVY_VERSION=2.4.5 | |
- wget http://dl.bintray.com/groovy/maven/apache-groovy-binary-$GROOVY_VERSION.zip -O /tmp/groovy.zip | |
- unzip /tmp/groovy.zip -d $PWD/.groovy | |
- export PATH=$PATH:$PWD/.groovy/groovy-$GROOVY_VERSION/bin | |
- echo "groovy installed" | |
# before_script: | |
# - echo "additivy check" | |
script: | |
- TERM=dumb groovy --version | |
- groovy ./file.groovy | |
jdk: | |
- oraclejdk8 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment