From 96230feeb9ffbce85298574f7641c63d5b363607 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Radek=20O=C5=A1lej=C5=A1ek?= <oslejsek@fi.muni.cz> Date: Thu, 1 Apr 2021 07:49:09 +0000 Subject: [PATCH] Update .gitlab-ci.yml --- .gitlab-ci.yml | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 34150512..184cb69c 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -17,6 +17,8 @@ build: stage: build script: - mvn clean install -B -DskipTests -Dcheckstyle.fail=false + - mvn -Dauthor=false -Dcheckstyle.fail=false -DadditionalJOption=-Xdoclint:none javadoc:javadoc + - mvn -Dauthor=false -Dcheckstyle.fail=false -DadditionalJOption=-Xdoclint:none javadoc:aggregate tags: - shared-fi rules: @@ -44,17 +46,17 @@ test: document: stage: document script: - - mvn -U -Dauthor=false -Dcheckstyle.fail=false -DadditionalJOption=-Xdoclint:none javadoc:javadoc + - mvn -Dauthor=false -Dcheckstyle.fail=false -DadditionalJOption=-Xdoclint:none javadoc:javadoc - mvn -Dauthor=false -Dcheckstyle.fail=false -DadditionalJOption=-Xdoclint:none javadoc:aggregate tags: - shared-fi rules: - if: '$CI_COMMIT_BRANCH' -# - if: '$CI_COMMIT_BRANCH == "master"' -# changes: -# - VERSION.txt -# - if: '$CI_COMMIT_BRANCH' -# when: never + - if: '$CI_COMMIT_BRANCH == "master"' + changes: + - VERSION.txt + - if: '$CI_COMMIT_BRANCH' + when: never artifacts: paths: - MeshModel/target/site/apidocs/ -- GitLab