debian-mirror-gitlab/lib/gitlab/ci/templates/Maven.gitlab-ci.yml

57 lines
2.7 KiB
YAML
Raw Normal View History

2016-08-24 12:49:21 +05:30
# Build JAVA applications using Apache Maven (http://maven.apache.org)
# For docker image tags see https://hub.docker.com/_/maven/
#
# For general lifecycle information see https://maven.apache.org/guides/introduction/introduction-to-the-lifecycle.html
2019-09-04 21:01:54 +05:30
# This template will build and test your projects
2016-08-24 12:49:21 +05:30
# * Caches downloaded dependencies and plugins between invocation.
2018-03-17 18:26:18 +05:30
# * Verify but don't deploy merge requests.
# * Deploy built artifacts from master branch only.
2016-08-24 12:49:21 +05:30
variables:
2018-12-13 13:39:08 +05:30
# This will suppress any download for dependencies and plugins or upload messages which would clutter the console log.
2016-08-24 12:49:21 +05:30
# `showDateTime` will show the passed time in milliseconds. You need to specify `--batch-mode` to make this work.
2018-11-20 20:47:30 +05:30
MAVEN_OPTS: "-Dhttps.protocols=TLSv1.2 -Dmaven.repo.local=$CI_PROJECT_DIR/.m2/repository -Dorg.slf4j.simpleLogger.log.org.apache.maven.cli.transfer.Slf4jMavenTransferListener=WARN -Dorg.slf4j.simpleLogger.showDateTime=true -Djava.awt.headless=true"
2016-08-24 12:49:21 +05:30
# As of Maven 3.3.0 instead of this you may define these options in `.mvn/maven.config` so the same config is used
# when running from the command line.
2018-03-17 18:26:18 +05:30
# `installAtEnd` and `deployAtEnd` are only effective with recent version of the corresponding plugins.
2016-08-24 12:49:21 +05:30
MAVEN_CLI_OPTS: "--batch-mode --errors --fail-at-end --show-version -DinstallAtEnd=true -DdeployAtEnd=true"
2019-09-04 21:01:54 +05:30
# This template uses jdk8 for verifying and deploying images
image: maven:3.3.9-jdk-8
2016-08-24 12:49:21 +05:30
# Cache downloaded dependencies and plugins between builds.
2018-10-15 14:42:47 +05:30
# To keep cache across branches add 'key: "$CI_JOB_NAME"'
2016-08-24 12:49:21 +05:30
cache:
paths:
2017-08-17 22:00:37 +05:30
- .m2/repository
2016-08-24 12:49:21 +05:30
# For merge requests do not `deploy` but only run `verify`.
# See https://maven.apache.org/guides/introduction/introduction-to-the-lifecycle.html
.verify: &verify
stage: test
script:
2019-09-04 21:01:54 +05:30
- 'mvn $MAVEN_CLI_OPTS verify'
2016-08-24 12:49:21 +05:30
except:
2021-04-17 20:07:23 +05:30
variables:
- $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
2016-08-24 12:49:21 +05:30
# Verify merge requests using JDK8
verify:jdk8:
<<: *verify
2019-09-04 21:01:54 +05:30
# To deploy packages from CI, create a ci_settings.xml file
2021-03-11 19:13:27 +05:30
# For deploying packages to GitLab's Maven Repository: See https://docs.gitlab.com/ee/user/packages/maven_repository/index.html#create-maven-packages-with-gitlab-cicd for more details.
2019-09-04 21:01:54 +05:30
# Please note: The GitLab Maven Repository is currently only available in GitLab Premium / Ultimate.
2016-08-24 12:49:21 +05:30
# For `master` branch run `mvn deploy` automatically.
deploy:jdk8:
stage: deploy
script:
2019-09-04 21:01:54 +05:30
- if [ ! -f ci_settings.xml ];
2021-03-11 19:13:27 +05:30
then echo "CI settings missing\! If deploying to GitLab Maven Repository, please see https://docs.gitlab.com/ee/user/packages/maven_repository/index.html#create-maven-packages-with-gitlab-cicd for instructions.";
2019-09-04 21:01:54 +05:30
fi
- 'mvn $MAVEN_CLI_OPTS deploy -s ci_settings.xml'
2016-08-24 12:49:21 +05:30
only:
2021-04-17 20:07:23 +05:30
variables:
- $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH