Bump the czishrink group across 1 directory with 10 updates #331
Workflow file for this run
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
--- | |
# This workflow will build a .NET project | |
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-net | |
permissions: | |
pull-requests: write | |
contents: read | |
name: .NET Build (CziShrink) | |
on: | |
push: | |
branches: ["main"] | |
pull_request: | |
branches: ["main"] | |
workflow_dispatch: {} | |
jobs: | |
build: | |
defaults: | |
run: | |
working-directory: czishrink | |
name: ${{matrix.config.os}}-${{matrix.build}} | |
runs-on: ${{matrix.config.os}} | |
env: | |
NUGET_PACKAGES: ${{ github.workspace }}/.nuget/packages | |
strategy: | |
fail-fast: false | |
matrix: | |
build: [Release, Debug] | |
config: | |
- {os: windows-latest, osfamily: win} | |
- {os: ubuntu-latest, osfamily: linux} | |
exclude: | |
# From https://github.com/actions/runner/issues/1512 | |
- build: Debug | |
config: {os: windows-latest, osfamily: win} | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
lfs: true | |
- name: Get dotnet version from global.json | |
id: get_dotnet_version | |
run: | | |
$global_json = Get-Content -Path "./global.json" | ConvertFrom-Json | |
$dotnetversion = $global_json.sdk.version | |
"dotnetversion=$dotnetversion" | Out-File -FilePath $env:GITHUB_OUTPUT -Append | |
shell: pwsh | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: ${{ steps.get_dotnet_version.outputs.dotnetversion }} | |
- name: Print .NET version | |
run: dotnet --version | |
- name: Get Version from Directory.Build.props | |
id: getversion | |
run: | | |
$xml = [xml](Get-Content -Path "Directory.Build.props") | |
$version = $xml.SelectSingleNode('//VersionPrefix').'#text' | |
"version=$version" | Out-File -FilePath $env:GITHUB_OUTPUT -Append | |
shell: pwsh | |
- name: Add build ID to version in Directory.Build.props | |
run: | | |
Write-Output "Add build ID ${{ github.run_id }} to VersionPrefix in Directory.Build.props" | |
$file = Get-Item "Directory.Build.props" | |
$xml = [xml](Get-Content -Path $file.FullName) | |
$versionElement = $xml.SelectSingleNode('//VersionPrefix') | |
$versionElement.'#text' += '+${{ github.run_id }}' | |
$xml.Save($file.FullName) | |
shell: pwsh | |
- name: Cache nugets | |
uses: actions/cache@v4 | |
with: | |
path: ${{ github.workspace }}/.nuget/packages | |
key: ${{ runner.os }}-czishrink-nuget-${{ hashFiles('czishrink/**/packages.lock.json') }} | |
restore-keys: | | |
${{ runner.os }}-czishrink-nuget- | |
- name: Restore dependencies | |
run: dotnet restore --locked-mode | |
- name: Build | |
run: dotnet build --no-restore -c ${{ matrix.build }} | |
- name: Test | |
run: > | |
dotnet test | |
-c ${{ matrix.build }} | |
--no-build | |
--verbosity normal | |
--logger trx | |
--results-directory "TestResults" | |
-p:CollectCoverage=true | |
-p:CoverletOutputFormat=cobertura | |
-p:CoverletOutput=${{ github.workspace }}/TestResults/coverage.cobertura.xml | |
-p:ExcludeByAttribute=GeneratedCodeAttribute%2cObsoleteAttribute | |
-p:ExcludeByFile=**/*.axaml%2c**/*.g.cs | |
-p:Exclude='[netczicompress]netczicompress.Views.*' | |
- name: Upload coverage reports for czishrink to Codecov | |
if: ${{ (matrix.config.os == 'ubuntu-latest') && (matrix.build == 'Debug') }} | |
uses: codecov/codecov-action@v4 | |
with: | |
fail_ci_if_error: true | |
directory: ${{ github.workspace }}/TestResults | |
files: coverage.cobertura.xml | |
verbose: true | |
token: ${{ secrets.CODECOV_TOKEN }} # required | |
- name: Upload dotnet test results | |
uses: actions/upload-artifact@v4 | |
with: | |
name: dotnet-results-${{ matrix.config.os }}-${{ matrix.build }} | |
path: TestResults | |
# Use always() to also publish test results when there are test failures | |
if: ${{ always() }} | |
- name: Publish | |
if: matrix.build == 'Release' | |
run: > | |
dotnet publish netczicompress.Desktop/netczicompress.Desktop.csproj | |
-c ${{ matrix.build }} | |
-a x64 | |
--self-contained | |
-p:PublishSingleFile=true | |
-p:PublishReadyToRun=true | |
-p:PublishReadyToRunShowWarnings=true | |
-o ${{ github.workspace }}/publish | |
- name: Upload published binaries | |
uses: actions/upload-artifact@v4 | |
if: ${{ (github.event_name != 'pull_request') && (matrix.build == 'Release') }} | |
with: | |
name: CziShrink_${{ steps.getversion.outputs.version }}_${{ matrix.config.osfamily}}-x64 | |
path: publish | |
- name: Restore Wix installer project | |
if: ${{ matrix.build == 'Release' && matrix.config.os == 'windows-latest' }} | |
working-directory: czishrink\netczicompress.Installer\CziShrinkMSI | |
env: | |
ArtifactsDirectory: ${{ github.workspace }}/publish | |
run: dotnet restore --locked-mode | |
- name: Build Wix installer | |
if: ${{ matrix.build == 'Release' && matrix.config.os == 'windows-latest' }} | |
working-directory: czishrink\netczicompress.Installer\CziShrinkMSI | |
env: | |
ArtifactsDirectory: ${{ github.workspace }}/publish | |
run: > | |
dotnet build | |
-c ${{ matrix.build }} | |
--no-restore | |
-o ${{ github.workspace }}/installer | |
- name: Upload Wix installer | |
uses: actions/upload-artifact@v4 | |
if: ${{ (github.event_name != 'pull_request') && (matrix.build == 'Release') && (matrix.config.os == 'windows-latest') }} | |
with: | |
name: CziShrink_Installer${{ steps.getversion.outputs.version }}_${{ matrix.config.osfamily}}-x64 | |
path: installer |