Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
DARIAH-DE Message Beans
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 Message Beans
Merge requests
!6
feat: drop aptly deployment
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
feat: drop aptly deployment
develop
into
main
Overview
0
Commits
1
Pipelines
1
Changes
1
Merged
Ubbo Veentjer
requested to merge
develop
into
main
1 year ago
Overview
0
Commits
1
Pipelines
1
Changes
1
Expand
0
0
Merge request reports
Compare
main
main (base)
and
latest version
latest version
8e4d627a
1 commit,
1 year ago
1 file
+
2
−
28
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
.gitlab-ci.yml
+
2
−
28
Options
@@ -73,7 +73,7 @@ validate-java:
-
tags
image
:
maven:3.8.3-jdk-8
script
:
-
mvn $MAVEN_OPTS $MAVEN_CLI_OPTS $MAVEN_DEPLOY_OPTS -U clean validate package
-Pdhrep.deb
-
mvn $MAVEN_OPTS $MAVEN_CLI_OPTS $MAVEN_DEPLOY_OPTS -U clean validate package
artifacts
:
reports
:
# Declare the JUnit reports (recursive pattern for multi-module projects)
@@ -89,40 +89,14 @@ build-and-deploy-jars:
-
develop
-
tags
script
:
-
mvn $MAVEN_OPTS $MAVEN_CLI_OPTS $MAVEN_DEPLOY_OPTS -U clean deploy
-Pdhrep.deb
-Psbom
-
mvn $MAVEN_OPTS $MAVEN_CLI_OPTS $MAVEN_DEPLOY_OPTS -U clean deploy -Psbom
-
cp target/bom.json .
artifacts
:
name
:
WEBAPP_DEB_PACKAGES
paths
:
-
./target/*.deb
-
./bom.json
reports
:
# Declare the JUnit reports (recursive pattern for multi-module projects)
junit
:
-
"
**/target/*-reports/TEST-*.xml"
# Deploy DEB files to APTLY SNAPSHOT repository.
deploy-snapshot-deb
:
stage
:
deploy
only
:
-
develop
variables
:
PNAME
:
'
messagebeans'
PPATH
:
'
./target'
PKEY
:
'
SNAPSHOT'
APTLY_TARGET
:
'
indy-snapshots'
extends
:
-
.deploy-deb
# Deploy DEB files to APTLY RELEASE repository.
deploy-release-deb
:
stage
:
deploy
only
:
-
tags
variables
:
PNAME
:
'
messagebeans'
PPATH
:
'
./target'
PKEY
:
'
${PVERSION}'
APTLY_TARGET
:
'
indy-releases'
extends
:
-
.deploy-deb
Loading