Align the telemetry tags with official guidelines #2030
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
name: build | |
on: | |
push: | |
branches: [ main ] | |
tags: [ '*' ] | |
pull_request: | |
branches: [ main ] | |
workflow_dispatch: | |
env: | |
DOTNET_CLI_TELEMETRY_OPTOUT: true | |
DOTNET_GENERATE_ASPNET_CERTIFICATE: false | |
DOTNET_NOLOGO: true | |
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true | |
DOTNET_SYSTEM_CONSOLE_ALLOW_ANSI_COLOR_REDIRECTION: 1 | |
NUGET_XMLDOC_MODE: skip | |
TERM: xterm | |
permissions: | |
contents: read | |
jobs: | |
build: | |
name: ${{ matrix.os }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ windows-latest ] | |
include: | |
- os: macos-latest | |
os_name: macos | |
- os: ubuntu-latest | |
os_name: linux | |
- os: windows-latest | |
os_name: windows | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4.0.0 | |
with: | |
fetch-depth: 0 | |
- name: Setup .NET SDK | |
uses: actions/setup-dotnet@3447fd6a9f9e57506b15f895c5b76d3b197dc7c2 # v3.2.0 | |
- name: Setup NuGet cache | |
uses: actions/cache@88522ab9f39a2ea568f7027eddc7d8d8bc9d59c8 # v3.3.1 | |
with: | |
path: ~/.nuget/packages | |
key: ${{ runner.os }}-nuget-${{ hashFiles('**/*.csproj', '**/*.props') }} | |
restore-keys: ${{ runner.os }}-nuget- | |
- name: Build, Test and Package | |
shell: pwsh | |
run: ./build.ps1 | |
env: | |
RUN_MUTATION_TESTS: ${{ matrix.os_name == 'linux' && !startsWith(github.ref, 'refs/tags/') && 'true' || 'false' }} | |
- name: Upload Coverage Reports | |
if: always() | |
uses: actions/upload-artifact@a8a3f3ad30e3422c9c7b888a15615d19a852ae32 # v3.1.3 | |
with: | |
name: coverage-${{ matrix.os_name }} | |
path: ./artifacts/coverage-reports | |
if-no-files-found: ignore | |
- name: Upload coverage to Codecov | |
uses: codecov/codecov-action@eaaf4bedf32dbdc6b720b63067d99c4d77d6047d # v3.1.4 | |
with: | |
files: ./artifacts/coverage-reports/Polly.Core.Tests/Cobertura.xml,./artifacts/coverage-reports/Polly.Specs/Cobertura.xml,./artifacts/coverage-reports/Polly.RateLimiting.Tests/Cobertura.xml,./artifacts/coverage-reports/Polly.Extensions.Tests/Cobertura.xml,./artifacts/coverage-reports/Polly.Testing.Tests/Cobertura.xml, | |
flags: ${{ matrix.os_name }} | |
- name: Upload Mutation Report | |
if: always() && matrix.os_name == 'linux' && !startsWith(github.ref, 'refs/tags/') | |
uses: actions/upload-artifact@a8a3f3ad30e3422c9c7b888a15615d19a852ae32 # v3.1.3 | |
with: | |
name: mutation-report | |
path: StrykerOutput | |
- name: Publish NuGet packages | |
uses: actions/upload-artifact@a8a3f3ad30e3422c9c7b888a15615d19a852ae32 # v3.1.3 | |
with: | |
name: packages-${{ matrix.os_name }} | |
path: ./artifacts/nuget-packages | |
if-no-files-found: error | |
- name: Upload signing file list | |
uses: actions/upload-artifact@a8a3f3ad30e3422c9c7b888a15615d19a852ae32 # v3.1.3 | |
with: | |
name: signing-config | |
path: eng/signing | |
if-no-files-found: error | |
validate-packages: | |
needs: build | |
runs-on: ubuntu-latest | |
steps: | |
- name: Download packages | |
uses: actions/download-artifact@9bc31d5ccc31df68ecc42ccf4149144866c47d8a # v3.0.2 | |
with: | |
name: packages-windows | |
- name: Setup .NET SDK | |
uses: actions/setup-dotnet@3447fd6a9f9e57506b15f895c5b76d3b197dc7c2 # v3.2.0 | |
- name: Validate NuGet packages | |
shell: pwsh | |
run: | | |
dotnet tool install --global dotnet-validate --version 0.0.1-preview.304 | |
$packages = Get-ChildItem -Filter "*.nupkg" | ForEach-Object { $_.FullName } | |
$invalidPackages = 0 | |
foreach ($package in $packages) { | |
dotnet validate package local $package | |
if ($LASTEXITCODE -ne 0) { | |
$invalidPackages++ | |
} | |
} | |
if ($invalidPackages -gt 0) { | |
Write-Output "::error::$invalidPackages NuGet package(s) failed validation." | |
} | |
publish-github: | |
needs: validate-packages | |
permissions: | |
packages: write | |
runs-on: ubuntu-latest | |
if: | | |
github.event.repository.fork == false && | |
(github.ref_name == github.event.repository.default_branch || | |
startsWith(github.ref, 'refs/tags/')) | |
steps: | |
- name: Download packages | |
uses: actions/download-artifact@9bc31d5ccc31df68ecc42ccf4149144866c47d8a # v3.0.2 | |
with: | |
name: packages-windows | |
- name: Setup .NET SDK | |
uses: actions/setup-dotnet@3447fd6a9f9e57506b15f895c5b76d3b197dc7c2 # v3.2.0 | |
- name: Publish NuGet packages to GitHub Packages | |
run: dotnet nuget push "*.nupkg" --api-key ${{ secrets.GITHUB_TOKEN }} --skip-duplicate --no-symbols --source https://nuget.pkg.github.com/${{ github.repository_owner }}/index.json | |
sign: | |
needs: publish-github | |
runs-on: windows-latest | |
if: | | |
github.event.repository.fork == false && | |
startsWith(github.ref, 'refs/tags/') | |
steps: | |
- name: Download unsigned packages | |
uses: actions/download-artifact@9bc31d5ccc31df68ecc42ccf4149144866c47d8a # v3.0.2 | |
with: | |
name: packages-windows | |
path: packages | |
- name: Download signing configuration | |
uses: actions/download-artifact@9bc31d5ccc31df68ecc42ccf4149144866c47d8a # v3.0.2 | |
with: | |
name: signing-config | |
path: signing-config | |
- name: Setup .NET SDK | |
uses: actions/setup-dotnet@3447fd6a9f9e57506b15f895c5b76d3b197dc7c2 # v3.2.0 | |
- name: Install Sign CLI tool | |
run: dotnet tool install --tool-path . sign --version 0.9.1-beta.23274.1 | |
- name: Sign artifacts | |
shell: pwsh | |
run: > | |
./sign code azure-key-vault | |
**/*.nupkg | |
--base-directory "${{ github.workspace }}/packages" | |
--file-list "${{ github.workspace }}/signing-config/filelist.txt" | |
--application-name "Polly" | |
--publisher-name "App vNext" | |
--description "Polly" | |
--description-url "https://github.com/App-vNext/Polly" | |
--azure-key-vault-certificate "${{ secrets.SIGN_CLI_CERT_NAME }}" | |
--azure-key-vault-client-id "${{ secrets.SIGN_CLI_APPLICATION_ID }}" | |
--azure-key-vault-client-secret "${{ secrets.SIGN_CLI_SECRET }}" | |
--azure-key-vault-tenant-id "${{ secrets.SIGN_CLI_TENANT_ID }}" | |
--azure-key-vault-url "${{ secrets.SIGN_CLI_VAULT_URI }}" | |
- name: Upload signed packages | |
uses: actions/upload-artifact@a8a3f3ad30e3422c9c7b888a15615d19a852ae32 # v3.1.3 | |
with: | |
name: signed-packages | |
path: packages | |
if-no-files-found: error | |
validate-signed-packages: | |
needs: sign | |
runs-on: windows-latest | |
steps: | |
- name: Download packages | |
uses: actions/download-artifact@9bc31d5ccc31df68ecc42ccf4149144866c47d8a # v3.0.2 | |
with: | |
name: signed-packages | |
- name: Setup .NET SDK | |
uses: actions/setup-dotnet@3447fd6a9f9e57506b15f895c5b76d3b197dc7c2 # v3.2.0 | |
- name: Validate NuGet packages | |
shell: pwsh | |
run: | | |
dotnet tool install --global dotnet-validate --version 0.0.1-preview.304 | |
$packages = Get-ChildItem -Filter "*.nupkg" | ForEach-Object { $_.FullName } | |
$invalidPackages = 0 | |
foreach ($package in $packages) { | |
dotnet validate package local $package | |
if ($LASTEXITCODE -ne 0) { | |
$invalidPackages++ | |
} | |
} | |
if ($invalidPackages -gt 0) { | |
Write-Output "::error::$invalidPackages NuGet package(s) failed validation." | |
} | |
- name: Checkout vcsjones/AuthenticodeLint | |
uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4.0.0 | |
with: | |
path: AuthenticodeLint | |
ref: ccfaec53ee5c1b14f029cb8156e0653c530f8b65 | |
repository: vcsjones/AuthenticodeLint | |
- name: Validate signatures | |
shell: pwsh | |
run: | | |
$authlintSource = Join-Path "." "AuthenticodeLint" | |
$authLintProject = Join-Path $authlintSource "AuthenticodeLint" "AuthenticodeLint.csproj" | |
$artifacts = Join-Path $authlintSource "artifacts" | |
$authlint = Join-Path $artifacts "authlint.exe" | |
dotnet publish $authLintProject --configuration Release --output $artifacts --runtime win-x64 --self-contained false /p:NoWarn=CS8604 | |
if ($LASTEXITCODE -ne 0) { | |
throw "Failed to publish AuthenticodeLint." | |
} | |
$packages = Get-ChildItem -Filter "*.nupkg" | ForEach-Object { $_.FullName } | |
if ($packages.Length -eq 0) { | |
throw "Failed to publish AuthenticodeLint." | |
} | |
$invalidPackages = 0 | |
foreach ($package in $packages) { | |
$packageName = Split-Path $package -Leaf | |
$extractedNupkg = Join-Path "." "extracted" $packageName | |
Expand-Archive -Path $package -DestinationPath $extractedNupkg -Force | |
$dlls = Get-ChildItem -Path $extractedNupkg -Filter "*.dll" -Recurse | ForEach-Object { $_.FullName } | |
$invalidDlls = 0 | |
foreach ($dll in $dlls) { | |
$authlintProcess = Start-Process -FilePath $authlint -ArgumentList @("-in", $dll, "-verbose") -PassThru | |
$authlintProcess.WaitForExit() | |
if ($authlintProcess.ExitCode -ne 0) { | |
Write-Output "::warning::$dll in NuGet package $package failed signature validation." | |
$invalidDlls++ | |
} else { | |
Write-Output "$dll in NuGet package $package has a valid signature." | |
} | |
} | |
if ($invalidDlls -gt 0) { | |
$invalidPackages++ | |
} else { | |
Write-Output "All $($dlls.Length) DLLs in NuGet package $package have valid signatures." | |
} | |
dotnet nuget verify $package | |
if ($LASTEXITCODE -ne 0) { | |
Write-Output "::warning::$package failed signature validation." | |
$invalidPackages++ | |
} else { | |
Write-Output "$package has a valid signature." | |
} | |
} | |
if ($invalidPackages -gt 0) { | |
Write-Output "::error::$invalidPackages NuGet package(s) failed signature validation." | |
throw "One or more NuGet packages failed signature validation." | |
} else { | |
Write-Output "All $($packages.Length) NuGet packages have valid signatures." | |
} | |
publish-nuget: | |
needs: validate-signed-packages | |
runs-on: ubuntu-latest | |
steps: | |
- name: Download signed packages | |
uses: actions/download-artifact@9bc31d5ccc31df68ecc42ccf4149144866c47d8a # v3.0.2 | |
with: | |
name: signed-packages | |
- name: Setup .NET SDK | |
uses: actions/setup-dotnet@3447fd6a9f9e57506b15f895c5b76d3b197dc7c2 # v3.2.0 | |
- name: Push signed NuGet packages to NuGet.org | |
run: dotnet nuget push "*.nupkg" --api-key ${{ secrets.NUGET_TOKEN }} --skip-duplicate --source https://api.nuget.org/v3/index.json |