Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

devops: #894 Анализ проекта на открытом сонаре #896

Merged
merged 2 commits into from
Sep 6, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
56 changes: 56 additions & 0 deletions .github/workflows/qa.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
# MIT License
# Copyright (C) 2020 Tymko Oleg <olegtymko@yandex.ru> and contributors
# All rights reserved.

name: Контроль качества
# Любой пуш и pr в проекте но с фильтром по основному проекту
on: [push, pull_request]
jobs:
task:
if: github.repository == 'vanessa-opensource/add'
runs-on: ubuntu-20.04
strategy:
fail-fast: false

steps:
# Загрузка проекта
- name: Актуализация
uses: actions/checkout@v2
with:
fetch-depth: 0

# https://stackoverflow.com/questions/58033366/how-to-get-current-branch-within-github-actions
- name: Извлечение имени текущей ветки
shell: bash
run: echo "##[set-output name=branch;]$(echo ${GITHUB_REF#refs/heads/})"
id: extract_branch

- name: Извлечение версии пакета
shell: bash
run: echo "##[set-output name=version;]`cat packagedef | grep "ВерсияПакета = " | sed 's|[^"]*"||' | sed -r 's/".+//'`"
id: extract_version

- name: Установка Sonar-scanner
uses: warchant/setup-sonar-scanner@v3

# Анализ проекта в SonarQube (ветка)
- name: Анализ в SonarQube (branch)
if: github.event_name == 'push'
run: sonar-scanner
-Dsonar.login=${{ secrets.SONARQUBE_TOKEN }}
-Dsonar.host.url=${{ secrets.SONARQUBE_HOST }}
-Dsonar.branch.name=${{ steps.extract_branch.outputs.branch }}
-Dsonar.projectVersion=${{ steps.extract_version.outputs.version }}

# Анализ проекта в SonarQube (PR)
# https://docs.sonarqube.org/latest/analysis/pull-request/
- name: Анализ в SonarQube (pull-request)
if: github.event_name == 'pull_request'
run: sonar-scanner
-Dsonar.login=${{ secrets.SONARQUBE_TOKEN }}
-Dsonar.host.url=${{ secrets.SONARQUBE_HOST }}
-Dsonar.branch.name=${{ steps.extract_branch.outputs.branch }}
-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 }}
41 changes: 17 additions & 24 deletions sonar-project.properties
Original file line number Diff line number Diff line change
@@ -1,35 +1,28 @@
## Настройки проекта для SonarQube - платформы проверки качества 1С решений
# Ключ проекта
sonar.projectKey=vanessa-opensource_add

# must be unique in a given SonarQube instance
sonar.projectKey=vanessa-add
# this is the name displayed in the SonarQube UI
# Имя проекта
sonar.projectName=Vanessa-ADD (Vanessa Automation Driven Development)
# sonar.projectVersion=6.0.0

# Path is relative to the sonar-project.properties file. Replace "\" by "/" on Windows.
# Since SonarQube 4.2, this property is optional if sonar.modules is set.
# If not set, SonarQube starts looking for source code from the directory containing
# the sonar-project.properties file.
# Версия проекта
# sonar.projectVersion= // устанавливать из CI таски

# Базовый рабочий каталог
sonar.projectBaseDir=.
#sonar.sources=.

sonar.inclusions=**/*.bsl, **/*.os
# sonar.inclusions=**/*.bsl,**/*.os,**/*.xml
sonar.exclusions=build/**,**/*.xml,**/*.json,tools/Sikuli/**/*.html,tools/**,lib/CF/**
#sonar.exclusions=**/*.xml,**/*.html
sonar.lang.patterns.xml=**/*.xsd,**/*.xsl
# Что анализируется
sonar.inclusions=**/*.bsl, **/*.os,**/*.xml

sonar.bsl.skipVendorSupportedObjects=true
# Что исключается
sonar.exclusions=build/**,**/*.json,tools/Sikuli/**/*.html,tools/**,lib/CF/**

# sonar.externalIssuesReportPaths=../../edt-validate-ext-rules.json
# sonar.bsl.acc.resultsPath=../../acc.xml
# Заглушка для анализа xml-файлов
sonar.lang.patterns.xml=**/*.xsd,**/*.xsl

# Encoding of the source code. Default is default system encoding
# Кодировка файлов
sonar.sourceEncoding=UTF-8
sonar.java.source=8
# sonar.branch.target=master

# sonar.login=admin
# sonar.password=admin
# sonar.host.url=http://localhost:9000
# Специализированные настройки под плагин

# Нижняя версия рантайма 1С
sonar.bsl.platformEdition=VERSION_8_3_9