Skip to content

Commit

Permalink
add travis config file
Browse files Browse the repository at this point in the history
  • Loading branch information
fbernard committed Nov 30, 2018
1 parent 258ceb9 commit 1122b33
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
language: java

jdk:
- oraclejdk9

services:
- docker


before_install:
- docker pull jboss/keycloak:4.5.0.Final
- docker run -d -e KEYCLOAK_USER=admin -e KEYCLOAK_PASSWORD=admin -e KEYCLOAK_IMPORT=/tmp/elastic-realm-export.json -v "$(TRAVIS_BUILD_DIR)"/src/test/resources/config/elastic-realm-export.json:/tmp/elastic-realm-export.json jboss/keycloak:4.5.0.Final

install:
- ./gradlew assemble

script:
- ./gradlew check

0 comments on commit 1122b33

Please sign in to comment.