Merge pull request #2176 from Pr-Mex/issue_2175 #19
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: sonar-scanner | |
on: | |
push: | |
branches: | |
- develop | |
jobs: | |
SonarScanner: | |
if: github.repository == 'Pr-Mex/vanessa-automation' | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v1 | |
with: | |
fetch-depth: 0 | |
- name: Configure env vars for SonarCloud scan | |
env: | |
ACTIONS_ALLOW_UNSECURE_COMMANDS: true | |
run: | | |
echo "::set-env name=PATH::/opt/sonar-scanner/bin:$PATH" | |
- name: Compute branch name | |
env: | |
ACTIONS_ALLOW_UNSECURE_COMMANDS: true | |
uses: nixel2007/branch-name@v3 | |
- name: Извлечение версии | |
shell: bash | |
run: echo "##[set-output name=version;]` cat ./VanessaAutomation/Ext/ObjectModule.bsl | grep -oP '(?<=Версия \= ").[\d|.]*'`" | |
id: extract_version | |
- name: SonarCloud Scan on push | |
if: github.event_name == 'push' | |
uses: nixel2007/[email protected] | |
env: | |
ACTIONS_ALLOW_UNSECURE_COMMANDS: true | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} | |
with: | |
args: > | |
-Dsonar.host.url=https://sonar.openbsl.ru | |
-Dsonar.branch.name=${{ env.BRANCH_NAME }} | |
-Dsonar.projectVersion=${{ steps.extract_version.outputs.version }} | |