From b934e977a8949f966d0fb28cd785abc95c50954c Mon Sep 17 00:00:00 2001 From: Christian Kollmann Date: Fri, 30 Oct 2020 09:51:14 +0100 Subject: Add CI pipeline --- .cisettings.xml | 16 ++++++++++++++ .gitlab-ci.yml | 68 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++ pom.xml | 37 +++++++++++++++---------------- 3 files changed, 101 insertions(+), 20 deletions(-) create mode 100644 .cisettings.xml create mode 100644 .gitlab-ci.yml diff --git a/.cisettings.xml b/.cisettings.xml new file mode 100644 index 00000000..61f6265f --- /dev/null +++ b/.cisettings.xml @@ -0,0 +1,16 @@ + + + + gitlab + + + + Job-Token + ${env.CI_JOB_TOKEN} + + + + + + diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 00000000..2d0e2687 --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,68 @@ +image: maven:latest + +variables: + LC_ALL: "en_US.UTF-8" + LANG: "en_US.UTF-8" + LANGUAGE: "en_US" + LIB_NAME: "eaaf-components" + MAVEN_CLI_OPTS: "--batch-mode --errors --fail-at-end --show-version -DinstallAtEnd=true -DdeployAtEnd=true --settings .cisettings.xml" + 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" + GIT_SUBMODULE_STRATEGY: recursive + GIT_DEPTH: "2" + SECURE_LOG_LEVEL: "debug" + +include: + - template: Dependency-Scanning.gitlab-ci.yml + - template: Security/SAST.gitlab-ci.yml + - template: Secret-Detection.gitlab-ci.yml + +stages: + - assemble + - test + - package + - release + +cache: + paths: + - ".m2/repository" + +assemble: + stage: assemble + except: + - tags + script: | + mvn $MAVEN_CLI_OPTS compile test + artifacts: + when: always + reports: + junit: "target/surefire-reports/TEST-*.xml" + +publishToGitlab: + stage: package + except: + - tags + script: | + export VERSION=$(mvn -B help:evaluate -Dexpression=project.version -B | grep -v "\[INFO\]" | grep -Po "\d+\.\d+\.\d+((-\w*)+)?") + echo "Publishing version $VERSION for $LIB_NAME" + mvnw $MAVEN_CLI_OPTS deploy -s .cisettings.xml -P gitlabDeploy + echo "VERSION=$VERSION" >> variables.env + artifacts: + when: always + reports: + dotenv: variables.env + +release: + stage: release + image: registry.gitlab.com/gitlab-org/release-cli:latest + needs: + - job: publishToGitlab + artifacts: true + when: manual + only: + - master + script: | + echo "Releasing version $VERSION of $LIB_NAME" + release: + name: "$VERSION" + tag_name: "v$VERSION" + description: "$(cat README.md)" diff --git a/pom.xml b/pom.xml index 9dc9c733..b9ad9c9a 100644 --- a/pom.xml +++ b/pom.xml @@ -43,7 +43,7 @@ 2.13_moa 2.13_moa - 0.5.1 + 0.5.3-SNAPSHOT 1.30.2 @@ -99,24 +99,8 @@ - asit-snapshot - https://dev.a-sit.at/repositories/snapshot - - false - - - true - - - - asit-release - https://dev.a-sit.at/repositories/release - - true - - - false - + gitlab + https://gitlab.iaik.tugraz.at/api/v4/groups/119/-/packages/maven egiz-commons @@ -142,6 +126,19 @@ + + gitlabDeploy + + + gitlab + https://gitlab.iaik.tugraz.at/api/v4/projects/507/packages/maven + + + gitlab + https://gitlab.iaik.tugraz.at/api/v4/projects/507/packages/maven + + + jenkinsDeploy @@ -737,4 +734,4 @@ - \ No newline at end of file + -- cgit v1.2.3