Skip to content

Fix Linux Homebrew self-update relaunch #1561

Fix Linux Homebrew self-update relaunch

Fix Linux Homebrew self-update relaunch #1561

# This is a basic workflow to help you get started with Actions
name: Sonarscan DotNet
# Controls when the action will run.
on:
# Triggers the workflow on push to master and on pushes to feature branches.
# Feature-branch coverage enables local Sonar branch analysis without first having to open a PR.
push:
branches: [ master, 'feature/**' ]
paths-ignore:
- 'docs/**'
- 'includes/**'
- 'mkdocs.yml'
- 'requirements-docs.txt'
- README.md
pull_request:
branches: [ master ]
paths-ignore:
- 'docs/**'
- 'includes/**'
- 'mkdocs.yml'
- 'requirements-docs.txt'
- README.md
schedule:
- cron: '10 1 * * 0'
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
build:
# The type of runner that the job will run on
runs-on: ubuntu-latest
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v5
with:
fetch-depth: '0'
# Runs a single command using the runners shell
- name: SonarScanner for .NET 10 with pull request decoration support
uses: highbyte/sonarscan-dotnet@v2.5.0
with:
# The key of the SonarQube project
sonarProjectKey: highbyte_dotnet-6502
# The name of the SonarQube project
sonarProjectName: dotnet-6502
# The name of the SonarQube organization in SonarCloud. For hosted SonarQube, skip this setting.
sonarOrganization: highbyte
# Optional command run before the 'dotnet build'
#dotnetPreBuildCmd: dotnet workload install wasm-tools
# Optional command arguments to 'dotnet build'
dotnetBuildArguments: ./tests/Highbyte.DotNet6502.Tests
# Optional command arguments to dotnet test
dotnetTestArguments: ./tests/Highbyte.DotNet6502.Tests --filter TestType!=Integration --logger trx --collect:"XPlat Code Coverage" -- DataCollectionRunSettings.DataCollectors.DataCollector.Configuration.Format=opencover
# Optional extra command arguments the the SonarScanner 'begin' command
# Coverage is measured only for the core CPU emulator library Highbyte.DotNet6502.
# The inclusion filter is exact-name: sibling dirs Highbyte.DotNet6502.Impl.*
# and Highbyte.DotNet6502.Systems are NOT matched (different directory names).
# sonar.cpd.exclusions: the Cloudflare Worker tools under tools/** are standalone
# TypeScript deployables (not the .NET product) and intentionally share small helper
# functions (path normalization, bearer-token auth). Exclude them from copy/paste
# duplication detection so that shared boilerplate doesn't fail the new-code gate.
sonarBeginArguments: /d:sonar.cs.opencover.reportsPaths="**/TestResults/**/coverage.opencover.xml" -d:sonar.cs.vstest.reportsPaths="**/TestResults/*.trx" -d:sonar.coverage.inclusions="src/libraries/Highbyte.DotNet6502/**/*.*" -d:sonar.cpd.exclusions="tools/**"
env:
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}