Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
DARIAH-DE Aggregator Services
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
DARIAH-DE
DARIAH-DE Aggregator Services
Commits
8c8d10eb
Verified
Commit
8c8d10eb
authored
2 years ago
by
Ubbo Veentjer
Browse files
Options
Downloads
Patches
Plain Diff
rename stages, add a test stage
parent
de78158c
No related branches found
No related tags found
1 merge request
!3
Resolve "Fix all UNIT tests"
Pipeline
#305368
failed
2 years ago
Stage: prepare
Stage: test
Stage: build
Stage: deploy
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
.gitlab-ci.yml
+17
-8
17 additions, 8 deletions
.gitlab-ci.yml
with
17 additions
and
8 deletions
.gitlab-ci.yml
+
17
−
8
View file @
8c8d10eb
...
@@ -18,7 +18,7 @@ variables:
...
@@ -18,7 +18,7 @@ variables:
###################
###################
.webapp
:
&webapp
.webapp
:
&webapp
image
:
alpine:3.14
image
:
alpine:3.14
stage
:
deploy
_deb
stage
:
deploy
script
:
script
:
-
source $VARIABLES_FILE
-
source $VARIABLES_FILE
-
'
apk
add
--no-cache
bash'
-
'
apk
add
--no-cache
bash'
...
@@ -40,9 +40,10 @@ variables:
...
@@ -40,9 +40,10 @@ variables:
-
crane auth login -u $CI_REGISTRY_USER -p $CI_REGISTRY_PASSWORD $CI_REGISTRY
-
crane auth login -u $CI_REGISTRY_USER -p $CI_REGISTRY_PASSWORD $CI_REGISTRY
stages
:
stages
:
-
build_version
-
prepare
-
deploy_java
-
test
-
deploy_deb
-
build
-
deploy
# Cache downloaded dependencies and plugins between builds.
# Cache downloaded dependencies and plugins between builds.
# To keep cache across branches add 'key: "$CI_JOB_NAME"'
# To keep cache across branches add 'key: "$CI_JOB_NAME"'
...
@@ -54,7 +55,7 @@ cache:
...
@@ -54,7 +55,7 @@ cache:
# Get the project version from main POM file and store it to artifact.
# Get the project version from main POM file and store it to artifact.
get_version
:
get_version
:
image
:
maven:3.8.3-jdk-8
image
:
maven:3.8.3-jdk-8
stage
:
build_version
stage
:
prepare
script
:
script
:
-
'
PVERSION=$(mvn
org.apache.maven.plugins:maven-help-plugin:3.1.1:evaluate
-Dexpression=project.version
-q
-DforceStdout)'
-
'
PVERSION=$(mvn
org.apache.maven.plugins:maven-help-plugin:3.1.1:evaluate
-Dexpression=project.version
-q
-DforceStdout)'
-
echo "export PVERSION=$PVERSION" > $VARIABLES_FILE
-
echo "export PVERSION=$PVERSION" > $VARIABLES_FILE
...
@@ -67,13 +68,21 @@ get_version:
...
@@ -67,13 +68,21 @@ get_version:
paths
:
paths
:
-
$VARIABLES_FILE
-
$VARIABLES_FILE
# run junit tests
test
:
stage
:
test
image
:
maven:3.8.3-jdk-8
script
:
-
mvn $MAVEN_OPTS $MAVEN_CLI_OPTS $MAVEN_DEPLOY_OPTS -U clean test
# Build and deploy all the JARs to GWDG Nexus, and build all the DEBs and store DEBs to artifacts.
# Build and deploy all the JARs to GWDG Nexus, and build all the DEBs and store DEBs to artifacts.
build_and_deploy
:
build_and_deploy
:
image
:
maven:3.8.3-jdk-8
image
:
maven:3.8.3-jdk-8
only
:
only
:
-
develop
-
develop
# - main
# - main
stage
:
deploy_java
stage
:
build
script
:
script
:
-
source $VARIABLES_FILE
-
source $VARIABLES_FILE
-
git submodule update --recursive --init
-
git submodule update --recursive --init
...
@@ -89,7 +98,7 @@ build_container_image:
...
@@ -89,7 +98,7 @@ build_container_image:
image
:
image
:
name
:
gcr.io/kaniko-project/executor:debug
name
:
gcr.io/kaniko-project/executor:debug
entrypoint
:
[
"
"
]
entrypoint
:
[
"
"
]
stage
:
deploy_java
stage
:
build
before_script
:
before_script
:
-
*kaniko-setup
-
*kaniko-setup
script
:
script
:
...
@@ -102,7 +111,7 @@ tag_container_image:
...
@@ -102,7 +111,7 @@ tag_container_image:
image
:
image
:
name
:
gcr.io/go-containerregistry/crane:debug
name
:
gcr.io/go-containerregistry/crane:debug
entrypoint
:
[
"
"
]
entrypoint
:
[
"
"
]
stage
:
deploy
_deb
stage
:
deploy
before_script
:
before_script
:
-
*crane-setup
-
*crane-setup
script
:
script
:
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment