remove postgres

This commit is contained in:
Yuxin Deng 2025-11-12 01:09:30 -05:00
parent 7405761968
commit 70fe7ee97a

6
Jenkinsfile vendored
View file

@ -37,8 +37,8 @@ pipeline {
stage('Test') {
steps {
echo 'Running tests...'
sh './mvnw test'
echo 'Running tests with default profile (skip docker compose)...'
sh './mvnw clean verify -Dspring.docker.compose.skip.in-tests=true -Dspring.profiles.active=default -DskipITs'
}
post {
always {
@ -59,6 +59,8 @@ pipeline {
withSonarQubeEnv('SonarQubeServer') {
sh """
./mvnw clean verify sonar:sonar \
-Dspring.docker.compose.skip.in-tests=true \
-Dspring.profiles.active=default \
-Dsonar.projectKey=${env.SONAR_PROJECT_KEY} \
-Dsonar.projectName='${env.PROJECT_NAME}' \
-Dsonar.host.url=http://sonarqube:9000 \