This repository has been archived on 2024-05-08. You can view files and clone it, but cannot push or open issues or pull requests.
Pathfinder/.gitlab-ci.yml

27 lines
463 B
YAML
Raw Permalink Normal View History

variables:
MAVEN_OPTS: >-
-Dhttps.protocols=TLSv1.2
-Dmaven.repo.local=$CI_PROJECT_DIR/.m2/repository
-Dorg.slf4j.simpleLogger.showDateTime=true
-Djava.awt.headless=true
MAVEN_CLI_OPTS: >-
--batch-mode
--errors
--fail-at-end
--show-version
--no-transfer-progress
-DinstallAtEnd=true
-DdeployAtEnd=true
2024-03-11 17:29:31 +01:00
image: maven:3.9.6
2024-03-11 17:26:19 +01:00
stages:
- verify
2024-03-11 17:26:19 +01:00
verify:
stage: verify
2024-03-11 17:26:19 +01:00
script:
- mvn $MAVEN_CLI_OPTS verify
2024-03-11 17:26:19 +01:00