We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c059247 commit 9a681ccCopy full SHA for 9a681cc
.travis.yml
@@ -1,8 +1,12 @@
1
language: java
2
3
-before_script:
4
- - chmod 777 ./tests/travis/setup_arangodb.sh
5
- - ./tests/travis/setup_arangodb.sh
+before_install:
+ - docker run -d -e ARANGO_NO_AUTH=1 -p 8529:8529 m0ppers/arangodb:hihi
+ - CONTINUE=1
6
+ - while [ $CONTINUE -eq 1 ]; do sleep 1 && curl -s 127.0.0.1:8529/_api/version && CONTINUE=0; done
7
+
8
+services:
9
+ - docker
10
11
install: mvn install -DskipTests=true -Dgpg.skip=true -Dmaven.javadoc.skip=true -B -V
12
0 commit comments