forked from pedjak/grails-csv
-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #4 from vsachinv/travis-build
Added Travis build files for testing.
- Loading branch information
Showing
2 changed files
with
20 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
language: java | ||
|
||
jdk: | ||
- oraclejdk8 | ||
|
||
env: | ||
- GRAILS_VERSION=3.0.17 | ||
|
||
before_install: | ||
- rm -rf ~/.sdkman | ||
- curl -s "https://get.sdkman.io" > ~/install_sdk.sh | ||
- chmod 775 ~/install_sdk.sh | ||
- ~/install_sdk.sh | ||
- echo sdkman_auto_answer=true > ~/.sdkman/etc/config | ||
- source ~/.sdkman/bin/sdkman-init.sh | ||
- sdk install grails $GRAILS_VERSION || true | ||
- chmod 775 ./build.sh | ||
|
||
script: ./build.sh |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
grails test-app -unit --non-interactive --stacktrace && grails package-plugin |