Skip to content

Commit

Permalink
Merge pull request 'Release v24.09' (!347) from release_24.09 into ma…
Browse files Browse the repository at this point in the history
…ster
  • Loading branch information
Dominick Leppich committed Oct 1, 2024
2 parents af91139 + 7136390 commit 0a03dc9
Show file tree
Hide file tree
Showing 76 changed files with 6,464 additions and 1,780 deletions.
15 changes: 12 additions & 3 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ pipeline {
branch 'master'
branch 'release_*'
branch 'hotfix_release_*'
branch 'sonar_*'
allOf {
branch 'PR-*'
expression { env.CHANGE_BRANCH.startsWith("release_") }
Expand Down Expand Up @@ -55,6 +56,14 @@ pipeline {
sh 'mvn clean verify -U -P release-build'
}
}
stage('build-sonar') {
when {
branch 'sonar_*'
}
steps {
sh 'mvn clean verify -U -P sonar-build'
}
}
stage('sonarcloud') {
when {
anyOf {
Expand All @@ -77,9 +86,9 @@ pipeline {
stage('deploy') {
when {
anyOf {
branch 'master'
branch 'develop'
branch 'hotfix_release_*'
branch 'master'
branch 'develop'
branch 'hotfix_release_*'
}
}
steps {
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ services:
MYSQL_PASSWORD: goobi
volumes:
- type: bind
source: ./Goobi/install/db/goobi_blank.sql
source: ./install/db/goobi_blank.sql
target: /docker-entrypoint-initdb.d/goobi_blank.sql
- type: volume
source: goobi_dbdata
Expand Down
1 change: 1 addition & 0 deletions install/config/goobi_mail.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
<goobiMail>
<configuration enabled="false">
<smtpServer>example.com</smtpServer>
<smtpPort>25</smtpPort>
<smtpUser>CHANGEME@example.com</smtpUser>
<smtpPassword>CHANGEME</smtpPassword>
<smtpUseStartTls>false</smtpUseStartTls>
Expand Down
Loading

0 comments on commit 0a03dc9

Please sign in to comment.