mirror of
https://github.com/bia-technologies/yaxunit.git
synced 2024-11-24 08:22:22 +02:00
use 1CDevFlow/workflows/sonar/analysis-with-openbsl
This commit is contained in:
parent
ec27197940
commit
e14615ae28
65
.github/workflows/sonar-qube-analysis.yml
vendored
65
.github/workflows/sonar-qube-analysis.yml
vendored
@ -6,64 +6,9 @@ on:
|
||||
|
||||
jobs:
|
||||
SonarQualityGate:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Извлечение исходников PR
|
||||
if: github.event_name == 'pull_request_target' || github.event_name == 'pull_request'
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
ref: refs/pull/${{ github.event.number }}/merge # Для поддержки pull_request и pull_request_target
|
||||
fetch-depth: 0 # Получение полной истории (все тэги и ветки)
|
||||
|
||||
- name: Извлечение исходников ветки ${{ github.ref_name }}
|
||||
if: github.event_name == 'push'
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
fetch-depth: 0 # Получение полной истории (все тэги и ветки)
|
||||
|
||||
- name: Извлечение версии проекта
|
||||
uses: ./.github/actions/extract-version
|
||||
with:
|
||||
path: ./exts/yaxunit/src
|
||||
id: extract_version
|
||||
|
||||
# Анализ проекта в SonarQube (ветка)
|
||||
- name: Анализ в SonarQube (${{ github.ref_name }})
|
||||
if: github.event_name == 'push'
|
||||
uses: sonarsource/sonarqube-scan-action@v2.3.0
|
||||
env:
|
||||
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
|
||||
LC_ALL: "ru_RU.UTF-8"
|
||||
with:
|
||||
args: >
|
||||
-Dsonar.host.url=https://sonar.openbsl.ru
|
||||
-Dsonar.branch.name=${{ github.ref_name }}
|
||||
-Dsonar.projectVersion=${{ steps.extract_version.outputs.version }}
|
||||
-Dsonar.qualitygate.wait=true
|
||||
-Dsonar.qualitygate.timeout=300
|
||||
|
||||
# Анализ проекта в SonarQube (PR)
|
||||
# https://docs.sonarqube.org/latest/analysis/pull-request/
|
||||
- name: Анализ в SonarQube (pull-request ${{ github.event.number }})
|
||||
if: github.event_name == 'pull_request_target' || github.event_name == 'pull_request'
|
||||
uses: sonarsource/sonarqube-scan-action@v2.3.0
|
||||
env:
|
||||
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
|
||||
with:
|
||||
args: >
|
||||
-Dsonar.host.url=https://sonar.openbsl.ru
|
||||
-Dsonar.pullrequest.key=${{ github.event.pull_request.number }}
|
||||
-Dsonar.pullrequest.branch=${{ github.event.pull_request.head.ref }}
|
||||
-Dsonar.pullrequest.base=${{ github.event.pull_request.base.ref }}
|
||||
-Dsonar.scm.revision=${{ github.event.pull_request.head.sha }}
|
||||
-Dsonar.qualitygate.wait=true
|
||||
-Dsonar.qualitygate.timeout=300
|
||||
|
||||
- name: Публикация результата проверки PR
|
||||
if: github.event_name != 'push' && (success()||failure())
|
||||
uses: 1CDevFlow/sonar-review-action@main
|
||||
with:
|
||||
sonar_branch_plugin: true
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
uses: "1CDevFlow/workflows/.github/workflows/sonar-analysis-with-openbsl.yml@main"
|
||||
with:
|
||||
root-project-path: ./exts/yaxunit/src
|
||||
secrets:
|
||||
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user