This is an automated email from the git hooks/post-receive script. New change to branch develop in repository say-my-texts. See https://gitlab.nuiton.org/chorem/say-my-texts.git from f0a93f7 :page_facing_up: add license header new 7774cff :construction_worker: try to fix ci build The 1 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference. Detailed log of new commits: commit 7774cffcd3e412f3fdc9436e9193b7632f4a9da9 Author: Kevin Morin <morin@codelutin.com> Date: Sat Nov 11 12:10:10 2017 +0100 :construction_worker: try to fix ci build Summary of changes: .gitlab-ci.yml | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) -- To stop receiving notification emails like this one, please contact chorem.org SCM administrator <admin+scm@chorem.org>.
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>.
participants (1)
-
chorem.org scm