Skip to content
GitLab
Explore
Sign in
Register
Commits on Source (5)
[ci skip] Merge branch 'release' into main
· 1093159c
Lene Wasskog
authored
May 28, 2025
1093159c
[ci skip] Set snapshot version 3.0.3-SNAPSHOT
· eda3eb63
Lene Wasskog
authored
May 28, 2025
eda3eb63
chore: Add Model DAYDEGREES to pipeline
· f2f047cb
Lene Wasskog
authored
May 28, 2025
f2f047cb
Merge branch 'main' into release
· 59be252b
Lene Wasskog
authored
May 28, 2025
59be252b
[ci skip] Set release version 3.0.3
· b7ff2a8b
Lene Wasskog
authored
May 28, 2025
b7ff2a8b
Hide whitespace changes
Inline
Side-by-side
.gitlab-ci.yml
View file @
b7ff2a8b
...
...
@@ -25,6 +25,7 @@ variables:
APPLESCABM_PROJECT_ID
:
"
20"
BARLEYNETB_PROJECT_ID
:
"
21"
BREMIALACT_PROJECT_ID
:
"
22"
DAYDEGREES_PROJECT_ID
:
"
563"
DELIARADIC_PROJECT_ID
:
"
24"
DELIARFOBS_PROJECT_ID
:
"
25"
DOWNCASTMO_PROJECT_ID
:
"
26"
...
...
@@ -441,6 +442,19 @@ verify_model_SEPTREFHUM:
rules
:
-
if
:
'
$CI_COMMIT_REF_NAME
==
$MAIN_BRANCH'
verify_model_DAYDEGREES
:
image
:
registry.gitlab.com/finestructure/pipeline-trigger
stage
:
models-8
before_script
:
[]
script
:
-
trigger -h gitlab.nibio.no -a "$CICD_API_TOKEN" -p "$ACCESS_TOKEN_DAYDEGREES" -t $MAIN_BRANCH $DAYDEGREES_PROJECT_ID -e VERSION=$VERSION -e PURPOSE="verify"
tags
:
-
java
dependencies
:
-
deploy-snapshot
rules
:
-
if
:
'
$CI_COMMIT_REF_NAME
==
$MAIN_BRANCH'
# Runs after new release is deployed to package registry. Triggers job on main branch in model repo,
# which builds model with the new version of VIPSCommon, and releases a new snapshot version of the model.
...
...
@@ -742,3 +756,16 @@ update_model_SEPTREFHUM:
-
deploy-release
rules
:
-
if
:
'
$CI_COMMIT_REF_NAME
==
$RELEASE_BRANCH'
update_model_DAYDEGREES
:
image
:
registry.gitlab.com/finestructure/pipeline-trigger
stage
:
models-8
before_script
:
[]
script
:
-
trigger -h gitlab.nibio.no -a "$CICD_API_TOKEN" -p "$ACCESS_TOKEN_DAYDEGREES" -t $MAIN_BRANCH $DAYDEGREES_PROJECT_ID -e VERSION=$VERSION -e PURPOSE="update"
tags
:
-
java
dependencies
:
-
deploy-release
rules
:
-
if
:
'
$CI_COMMIT_REF_NAME
==
$RELEASE_BRANCH'
pom.xml
View file @
b7ff2a8b
...
...
@@ -9,7 +9,7 @@
</parent>
<artifactId>
VIPSCommon
</artifactId>
<version>
3.0.
2
</version>
<version>
3.0.
3
</version>
<packaging>
jar
</packaging>
<name>
VIPSCommon
</name>
...
...