fix: Standardize SonarQube project name quotes in CI workflows
Some checks failed
Integration Tests / integration-tests (push) Failing after 43s
Integration Tests / performance-tests (push) Has been skipped
LabFusion CI/CD Pipeline / api-gateway (push) Failing after 1m17s
LabFusion CI/CD Pipeline / frontend (push) Failing after 1m54s
LabFusion CI/CD Pipeline / api-docs (push) Successful in 1m41s
LabFusion CI/CD Pipeline / integration-tests (push) Has been skipped
LabFusion CI/CD Pipeline / service-adapters (push) Failing after 22s
Docker Build and Push / build-and-push (push) Failing after 38s
Some checks failed
Integration Tests / integration-tests (push) Failing after 43s
Integration Tests / performance-tests (push) Has been skipped
LabFusion CI/CD Pipeline / api-gateway (push) Failing after 1m17s
LabFusion CI/CD Pipeline / frontend (push) Failing after 1m54s
LabFusion CI/CD Pipeline / api-docs (push) Successful in 1m41s
LabFusion CI/CD Pipeline / integration-tests (push) Has been skipped
LabFusion CI/CD Pipeline / service-adapters (push) Failing after 22s
Docker Build and Push / build-and-push (push) Failing after 38s
### Summary of Changes - Updated SonarQube project names in CI workflows to use single quotes for consistency across all services. ### Expected Results - Improved uniformity in SonarQube configuration, enhancing clarity and maintainability of CI workflows.
This commit is contained in:
@@ -51,7 +51,7 @@ jobs:
|
||||
echo "Running tests and sending results to SonarQube..."
|
||||
./mvnw clean verify sonar:sonar \
|
||||
-Dsonar.projectKey=labfusion-api-gateway \
|
||||
-Dsonar.projectName="LabFusion API Gateway" \
|
||||
-Dsonar.projectName='LabFusion API Gateway' \
|
||||
-Dsonar.host.url=${{ secrets.SONAR_HOST_URL }} \
|
||||
-Dsonar.token=${{ secrets.SONAR_TOKEN }}
|
||||
|
||||
@@ -123,7 +123,7 @@ jobs:
|
||||
--sonar-host-url=${{ secrets.SONAR_HOST_URL }} \
|
||||
--sonar-token=${{ secrets.SONAR_TOKEN }} \
|
||||
--sonar-project-key=labfusion-service-adapters \
|
||||
--sonar-project-name=LabFusion Service Adapters
|
||||
--sonar-project-name='LabFusion Service Adapters'
|
||||
|
||||
- name: Build Docker image (test only)
|
||||
run: docker build -t service-adapters:test .
|
||||
@@ -185,7 +185,7 @@ jobs:
|
||||
-Dsonar.host.url=${{ secrets.SONAR_HOST_URL }} \
|
||||
-Dsonar.login=${{ secrets.SONAR_TOKEN }} \
|
||||
-Dsonar.projectKey=labfusion-api-docs \
|
||||
-Dsonar.projectName=LabFusion API Docs
|
||||
-Dsonar.projectName='LabFusion API Docs'
|
||||
|
||||
- name: Build application
|
||||
run: npm run build
|
||||
@@ -250,7 +250,7 @@ jobs:
|
||||
-Dsonar.host.url=${{ secrets.SONAR_HOST_URL }} \
|
||||
-Dsonar.login=${{ secrets.SONAR_TOKEN }} \
|
||||
-Dsonar.projectKey=labfusion-frontend \
|
||||
-Dsonar.projectName=LabFusion Frontend
|
||||
-Dsonar.projectName='LabFusion Frontend'
|
||||
|
||||
- name: Build application
|
||||
run: npm run build
|
||||
|
||||
Reference in New Issue
Block a user