Changes for page GitLab Erklärungen
Last modified by pmeyer on 2025/09/12 04:41
From 84.7 to 84.6
From 84.12 to 84.11
Summary
-
Page properties (1 modified, 0 added, 0 removed)
Details
- Page properties
-
- Content
-
... ... @@ -187,12 +187,53 @@ 187 187 188 188 == Pipeline im Basisprojekt v2 == 189 189 190 -Die Pipeline im Basisprojekt ist auf zwei Stages mit jeweils einem Job aufgeteilt und wird im Folgenden Schritt für Schritt erklärt.Ihr dürft im Rahmen des Softwareprojekts, wenn nötig, die Pipeline um weitere Jobs oder Stages erweitern. **Die bestehenden Jobs sollten allerdings **(von Studierenden) **nicht geändert werden.**190 +Die Pipeline im Basisprojekt ist auf zwei Stages mit jeweils einem Job aufgeteilt. 191 191 192 -In der //.gitlab-ci.yml //werden zunächst die Stages definiert. Eine Stage ist eine logische Gruppe von Jobs, die in einem bestimmten Abschnitt 193 - 194 194 {{code language="yaml"}} 195 195 stages: 196 196 - verify 197 197 - deploy 196 + 197 +verify-job: 198 + stage: verify 199 + image: eclipse-temurin:21-jdk-alpine 200 + script: 201 + - "./mvnw clean verify" 202 + rules: 203 + - if: $CI_PIPELINE_SOURCE == "schedule" 204 + when: always 205 + allow_failure: true 206 + - when: always 207 + allow_failure: false 208 + 209 +deploy_stats_pages: 210 + stage: deploy 211 + image: maven:3.9.9-amazoncorretto-21-al2023 212 + variables: 213 + DEVELOPMENT_BRANCH_NAME: "development" 214 + FETCH_MULTITHREAD: "true" #options are true/false 215 + LOGLEVEL: "SHORT" #options are OFF, SHORT, LONG. Has an effect on the amount of logging when data is being added 216 + #TIME_FRAMES: "01.01.2025,31.03.2025,40,Zeitraum01;01.04.2025,31.05.2025,35" #Format start,end,minHours[,name];anotherTimeframe;anotherTimeframe;... 217 + script: 218 + - yum install -y git rsync 219 + - git clone https://gitlab.swl.informatik.uni-oldenburg.de/GA/gitlab2data.git 220 + - cd gitlab2data 221 + - mvn clean package 222 + - java -jar target/GitLab2Data-1.0-SNAPSHOT-jar-with-dependencies.jar 223 + - cd .. 224 + - mkdir -p public/data 225 + - rm -f public/data/*.json 226 + - cp gitlab2data/*.json public/data/ 227 + - git clone https://gitlab.swl.informatik.uni-oldenburg.de/GA/data4visual.git repo 228 + - rsync -av --exclude='data/' --exclude='.git' --exclude='.gitignore' repo/ public/ 229 + artifacts: 230 + paths: 231 + - public 232 + pages: 233 + path_prefix: "stats" #to allow for parallel deployments of the projects own page don't make the stats site the main deployment 234 + expire_in: never 235 + rules: 236 + - if: $CI_PIPELINE_SOURCE == "schedule" 237 + when: always 238 + - when: never 198 198 {{/code}}