This is an automated email from the git hooks/post-receive script. New commit to branch develop in repository say-my-texts. See https://gitlab.nuiton.org/chorem/say-my-texts.git commit 7774cffcd3e412f3fdc9436e9193b7632f4a9da9 Author: Kevin Morin <morin@codelutin.com> Date: Sat Nov 11 12:10:10 2017 +0100 :construction_worker: try to fix ci build --- .gitlab-ci.yml | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index c2b0a18..84a7998 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -2,15 +2,20 @@ stages: - build - pages +# We redirect the gradle user home using -g so that it caches the +# wrapper and dependencies. +# https://docs.gradle.org/current/userguide/gradle_command_line.html +# +# Unfortunately it also caches the build output so +# cleaning removes reminants of any cached builds. +# The assemble task actually builds the project. +# If it fails here, the tests can't run. build: image: runmymind/docker-android-sdk stage: build script: - - mvn --version - - mvn install - artifacts: - paths: - - target/saymytexts-*.apk + - ./gradlew -g /cache/.gradle clean assemble + allow_failure: false tags: - android -- To stop receiving notification emails like this one, please contact chorem.org SCM administrator <admin+scm@chorem.org>.