Skip to content

Commit

Permalink
Merge pull request #1 from WiseTechGlobal/matt/githubactions
Browse files Browse the repository at this point in the history
Matt/githubactions
  • Loading branch information
matatouille authored May 8, 2023
2 parents 83beefa + 8460752 commit c14e810
Show file tree
Hide file tree
Showing 2 changed files with 40 additions and 63 deletions.
78 changes: 40 additions & 38 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -1,45 +1,47 @@
name: Build
name: Build and Test
on:
push:
branches:
- master
branches: [ master ]
pull_request:
types: [opened, synchronize, reopened]
branches: [ master ]

jobs:
build:
name: Build
name: Build - ${{ matrix.configuration }}

strategy:
matrix:
configuration: [ Debug, Release ]

runs-on: ubuntu-latest
steps:
- name: Set up JDK 11
uses: actions/setup-java@v1
with:
java-version: 1.11
- 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'
run: |
dotnet tool install --global dotnet-sonarscanner
- name: Build and analyze
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Needed to get PR information, if any
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
run: |
dotnet-sonarscanner begin /k:"Blazor-Diagrams_Blazor.Diagrams" /o:"blazor-diagrams" /d:sonar.login="${{ secrets.SONAR_TOKEN }}" /d:sonar.host.url="https://sonarcloud.io" /d:sonar.cs.opencover.reportsPaths="**\TestResults\*\*.xml" /d:sonar.exclusions="**/wwwroot/**"
dotnet build
dotnet test --no-build --collect:"XPlat Code Coverage" -- DataCollectionRunSettings.DataCollectors.DataCollector.Configuration.Format=opencover
dotnet-sonarscanner end /d:sonar.login="${{ secrets.SONAR_TOKEN }}"
- uses: actions/checkout@v3

- name: Setup dotnet
uses: actions/setup-dotnet@v3
with:
dotnet-version: |
6.0.x
3.1.x
- name: Install dependencies
run: dotnet restore

- name: Build
run: dotnet build --configuration ${{ matrix.configuration }}

- name: Test
if: matrix.configuration == 'Debug'
run: dotnet test --no-build

- name: Pack
if: matrix.configuration == 'Release'
run: dotnet pack --configuration ${{ matrix.configuration }} -o packages

- name: Upload packages
if: matrix.configuration == 'Release'
uses: actions/upload-artifact@v3
with:
name: packages
path: packages/
retention-days: 5
25 changes: 0 additions & 25 deletions .github/workflows/main.yml

This file was deleted.

0 comments on commit c14e810

Please sign in to comment.