mirror of
https://github.com/zoriya/Kyoo.git
synced 2025-12-25 22:37:28 -05:00
53 lines
1.9 KiB
YAML
53 lines
1.9 KiB
YAML
name: Analysis
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
build:
|
|
name: Static Analysis
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
with:
|
|
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
|
|
- name: Cache SonarCloud packages
|
|
uses: actions/cache@v1
|
|
with:
|
|
path: ~/sonar/cache
|
|
key: ${{ runner.os }}-sonar
|
|
restore-keys: ${{ runner.os }}-sonar
|
|
- name: Cache SonarCloud scanner
|
|
id: cache-sonar-scanner
|
|
uses: actions/cache@v1
|
|
with:
|
|
path: ./.sonar/scanner
|
|
key: ${{ runner.os }}-sonar-scanner
|
|
restore-keys: ${{ runner.os }}-sonar-scanner
|
|
- name: Install SonarCloud scanner
|
|
if: steps.cache-sonar-scanner.outputs.cache-hit != 'true'
|
|
shell: bash
|
|
run: |
|
|
mkdir -p ./.sonar/scanner
|
|
dotnet tool update dotnet-sonarscanner --tool-path ./.sonar/scanner
|
|
- name: Build and analyze
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Needed to get PR information, if any
|
|
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
|
|
shell: bash
|
|
run: |
|
|
dotnet test \
|
|
'-p:CollectCoverage=true;CoverletOutputFormat=opencover' \
|
|
'-p:SkipTranscoder=true;SkipWebApp=true' || echo "Test failed. Skipping..."
|
|
|
|
dotnet build-server shutdown
|
|
|
|
./.sonar/scanner/dotnet-sonarscanner begin \
|
|
-k:"AnonymusRaccoon_Kyoo" \
|
|
-o:"anonymus-raccoon" \
|
|
-d:sonar.login="${{ secrets.SONAR_TOKEN }}" \
|
|
-d:sonar.host.url="https://sonarcloud.io" \
|
|
-d:sonar.cs.opencover.reportsPaths="**/coverage.opencover.xml"
|
|
|
|
dotnet build --no-incremental '-p:SkipTranscoder=true;SkipWebApp=true'
|
|
|
|
./.sonar/scanner/dotnet-sonarscanner end -d:sonar.login="${{ secrets.SONAR_TOKEN }}"
|