This is an automated email from the git hooks/post-receive script. New commit to branch develop in repository pollen. See https://gitlab.nuiton.org/chorem/pollen.git commit d7515971b33c43f696b2550934735afdbbb668e0 Author: Sylvain Bavencoff <bavencoff@codelutin.com> Date: Fri Feb 24 15:36:45 2017 +0100 mise en place gitlab-ci --- .gitlab-ci.yml | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..4c871b5 --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,31 @@ +stages: +- build + +build-java: + image: registry.nuiton.org/codelutin/dockerfiles:maven-release + stage: build + script: + - mvn install + artifacts: + paths: + - pollen-rest-api/target/pollen-rest-api.war + tags: + - ci + - docker + +build-js: + image: registry.nuiton.org/codelutin/dockerfiles:nodejs5 + stage: build + script: + - cd pollen-ui-riot-js + - npm install + - npm run-script package + artifacts: + paths: + - pollen-ui-riot-js/target/dist/ + tags: + - ci + - docker + + + -- To stop receiving notification emails like this one, please contact chorem.org SCM administrator <admin+scm@chorem.org>.