Skip to content

Merge pull request #1100 from dorssel/lint #834

Merge pull request #1100 from dorssel/lint

Merge pull request #1100 from dorssel/lint #834

# SPDX-FileCopyrightText: 2020 Frans van Dorsselaer
#
# SPDX-License-Identifier: GPL-3.0-only
---
# yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json
name: Build
on:
push:
branches: [master]
pull_request:
branches: [master]
permissions:
contents: read
issues: read
checks: write
pull-requests: write
jobs:
build:
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
# NOTE: caching seems to actually slow down the build, both on hit and on miss
cache: false
cache-dependency-path: '**/packages.lock.json'
- name: Install dependencies
run: |
dotnet tool restore
dotnet restore
dotnet restore Installer
- name: Build
run: |
dotnet build --configuration Release --no-restore
- name: Test
run: |
dotnet test --configuration Release --no-build `
-p:TestingPlatformCommandLineArguments="--report-trx --coverage --coverage-output-format cobertura --coverage-output coverage.cobertura.xml"
- name: Build (Installer)
run: |
dotnet publish --configuration Release --no-build Usbipd
dotnet publish --configuration Release --no-build Usbipd.PowerShell
dotnet build --configuration Release --no-restore Installer
- name: Upload Installer Artifact
uses: actions/upload-artifact@v4
with:
name: msi-installer
path: 'Installer/bin/x64/release/*.msi'
- name: Convert test results
if: ${{ !cancelled() }}
shell: bash
run: |
find . -name "*.trx" -exec dotnet tool run trx2junit --output TestResults/JUnit {} +
- name: Upload test results to Codecov
if: ${{ !cancelled() }}
uses: codecov/test-results-action@v1
with:
fail_ci_if_error: true
files: TestResults/JUnit/*.xml
token: ${{ secrets.CODECOV_TOKEN }}
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v5
with:
fail_ci_if_error: true
token: ${{ secrets.CODECOV_TOKEN }}