2024-04-19 15:58:56 +02:00
|
|
|
name: Сервис | Анализ SonarQube
|
2024-03-14 08:21:17 +02:00
|
|
|
|
|
|
|
on:
|
|
|
|
workflow_dispatch:
|
|
|
|
|
|
|
|
permissions:
|
2024-03-14 10:10:41 +02:00
|
|
|
pull-requests: read
|
|
|
|
|
2024-03-14 08:21:17 +02:00
|
|
|
jobs:
|
|
|
|
Analysis:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
2024-03-14 09:52:16 +02:00
|
|
|
- uses: actions/checkout@v3
|
2024-03-14 10:10:41 +02:00
|
|
|
|
|
|
|
- name: Анализ OPI
|
|
|
|
uses: SonarSource/sonarqube-scan-action@7295e71c9583053f5bf40e9d4068a0c974603ec8
|
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.TOKEN }}
|
|
|
|
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
|
|
|
|
SONAR_HOST_URL: ${{ secrets.SONAR_HOST_URL }}
|
|
|
|
LC_ALL: "ru_RU.UTF-8"
|
|
|
|
with:
|
2024-03-14 11:03:22 +02:00
|
|
|
projectBaseDir: ${{ github.workspace }}/OPI
|
2024-03-14 10:10:41 +02:00
|
|
|
args:
|
|
|
|
-Dsonar.projectKey=OpenIntegrations
|
|
|
|
-Dsonar.sourceEncoding=UTF-8
|
|
|
|
-Dsonar.inclusions=**/*.bsl
|
|
|
|
|
|
|
|
- name: Анализ OInt
|
2024-03-14 08:21:17 +02:00
|
|
|
uses: SonarSource/sonarqube-scan-action@7295e71c9583053f5bf40e9d4068a0c974603ec8
|
|
|
|
env:
|
2024-03-14 10:10:41 +02:00
|
|
|
GITHUB_TOKEN: ${{ secrets.TOKEN }}
|
|
|
|
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
|
|
|
|
SONAR_HOST_URL: ${{ secrets.SONAR_HOST_URL }}
|
2024-03-14 08:31:31 +02:00
|
|
|
LC_ALL: "ru_RU.UTF-8"
|
2024-03-14 08:21:17 +02:00
|
|
|
with:
|
2024-03-14 11:03:22 +02:00
|
|
|
projectBaseDir: ${{ github.workspace }}/OInt
|
2024-03-14 09:55:00 +02:00
|
|
|
args:
|
|
|
|
-Dsonar.projectKey=OInt
|
|
|
|
-Dsonar.sourceEncoding=UTF-8
|
|
|
|
-Dsonar.inclusions=**/*.os
|