Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Users/mibir/new workflows #4

Merged
merged 17 commits into from
May 25, 2022
Merged
Show file tree
Hide file tree
Changes from 10 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
157 changes: 70 additions & 87 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -1,111 +1,94 @@
name: Build
ms-mikeb marked this conversation as resolved.
Show resolved Hide resolved

on:
workflow_call:
inputs:
project-to-pack:
project-to-build:
required: true
type: string
project-to-test:
required: false
type: string
test-filter:
required: false
type: string
default: TestCategory!=Integration
coverage-threshold:
required: false
type: number
default: 100
outputs:
beta-version:
description: "Beta version number."
value: ${{jobs.Pack.outputs.beta-version}}
stable-version:
description: "Stable version number."
value: ${{jobs.Pack.outputs.stable-version}}

jobs:
Pack:
Build:
runs-on: ubuntu-latest
outputs:
beta-version: ${{steps.version.outputs.beta-version}}
stable-version: ${{steps.version.outputs.stable-version}}
env:
OFFICIAL_BUILD: "True"
ms-mikeb marked this conversation as resolved.
Show resolved Hide resolved
steps:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0

- name: Setup .NET
uses: actions/setup-dotnet@v1
with:
dotnet-version: 6.0.x
- name: Checkout repository
uses: actions/checkout@v3
with:
fetch-depth: 0

- name: Test
run: dotnet test /p:CollectCoverage=true /p:Threshold=${{inputs.coverage-threshold}} /p:ThresholdType=line /p:ThresholdStat=total /p:CoverletOutputFormat=cobertura /p:CoverletOutput=$GITHUB_WORKSPACE/coverage.xml
- name: Setup .NET
uses: actions/setup-dotnet@v2
with:
dotnet-version: 6.0.x

- name: Generate Test Coverage Report
uses: danielpalme/ReportGenerator-GitHub-Action@5.1.3
with:
reports: 'coverage.xml'
targetdir: 'coveragereport'
reporttypes: 'HtmlInline;Cobertura;Badges' # The output formats and scope (separated by semicolon) Values: Badges, Clover, Cobertura, CsvSummary, Html, Html_Dark, Html_Light, HtmlChart, HtmlInline, HtmlInline_AzurePipelines, HtmlInline_AzurePipelines_Dark, HtmlInline_AzurePipelines_Light, HtmlSummary, JsonSummary, Latex, LatexSummary, lcov, MarkdownSummary, MHtml, PngChart, SonarQube, TeamCitySummary, TextSummary, Xml, XmlSummary
verbosity: 'Info'
tag: '${{ github.run_number }}_${{ github.run_id }}'
toolpath: 'reportgeneratortool'
if: always()
- name: Restore packages
run: dotnet restore

- name: Upload Coverage Report Artifact
uses: actions/upload-artifact@v2
with:
name: CoverageReport
path: coveragereport
if: always()
- name: Build
run: dotnet build "${{inputs.project-to-build}}" --no-restore --configuration Debug
ms-mikeb marked this conversation as resolved.
Show resolved Hide resolved

- name: Install GitVersion
uses: gittools/actions/gitversion/setup@v0.9.7
with:
versionSpec: '5.x'

- name: Determine Version
id: gitversion
uses: gittools/actions/gitversion/execute@v0.9.7
with:
useConfigFile: true

- name: Set version variables
run: |
echo "STABLE=${{steps.gitversion.outputs.majorMinorPatch}}" >> $GITHUB_ENV
echo "BETA=${{steps.gitversion.outputs.majorMinorPatch}}-beta.$(date +%s)" >> $GITHUB_ENV
Test:
ms-mikeb marked this conversation as resolved.
Show resolved Hide resolved
runs-on: ubuntu-latest
if: inputs.project-to-test != ''
steps:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0

- name: Output Version Numbers
id: version
run: |
echo "::set-output name=beta-version::${{env.BETA}}"
echo "::set-output name=stable-version::${{env.STABLE}}"
- name: Setup .NET
uses: actions/setup-dotnet@v1
with:
dotnet-version: 6.0.x

- name: Pack
run: |
dotnet pack "${{inputs.project-to-pack}}" --configuration Release /p:Version="${{env.BETA}}" --output unsigned/beta
dotnet pack "${{inputs.project-to-pack}}" --configuration Release /p:Version="${{env.STABLE}}" --output unsigned/stable
- name: Test
run: dotnet test "${{inputs.project-to-test}}" --filter "${{inputs.test-filter}}" /p:CollectCoverage=true /p:Threshold=${{inputs.coverage-threshold}} /p:ThresholdType=line /p:ThresholdStat=total /p:CoverletOutputFormat=cobertura /p:CoverletOutput=$GITHUB_WORKSPACE/coverage.xml

- name: Upload Unsigned Packages
uses: actions/upload-artifact@v2
with:
name: unsigned
path: unsigned
- name: Generate Test Coverage Report
uses: danielpalme/ReportGenerator-GitHub-Action@5.1.3
with:
reports: "coverage.xml"
targetdir: "coveragereport"
reporttypes: "HtmlInline;Cobertura;Badges" # The output formats and scope (separated by semicolon) Values: Badges, Clover, Cobertura, CsvSummary, Html, Html_Dark, Html_Light, HtmlChart, HtmlInline, HtmlInline_AzurePipelines, HtmlInline_AzurePipelines_Dark, HtmlInline_AzurePipelines_Light, HtmlSummary, JsonSummary, Latex, LatexSummary, lcov, MarkdownSummary, MHtml, PngChart, SonarQube, TeamCitySummary, TextSummary, Xml, XmlSummary
verbosity: "Info"
tag: "${{ github.run_number }}_${{ github.run_id }}"
toolpath: "reportgeneratortool"
if: always()

# - name: Get branch names
# id: branch-names
# uses: tj-actions/branch-names@v5.1
- name: Upload Coverage Report Artifact
uses: actions/upload-artifact@v2
with:
name: CoverageReport
path: coveragereport
if: always()

# - name: Current branch name
# run: echo "${{steps.branch-names.outputs.current_branch}}"
Verify:
ms-mikeb marked this conversation as resolved.
Show resolved Hide resolved
runs-on: windows-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
with:
fetch-depth: 0

# - name: Install git-conventional-commits
# run: npm install --global git-conventional-commits

# - name: Validate last commit message
# run: |
# git checkout ${{ steps.branch-names.outputs.current_branch }}
# git rev-list --format=%B --max-count=1 HEAD | tail +2 > msg.txt
# git-conventional-commits commit-msg-hook msg.txt
- name: PrePack
run: dotnet pack "${{inputs.project-to-build}}" --configuration Release --output ./unsigned

# - name: Determine version
# id: conventional-commits
# run: echo "::set-output name=version::$(npx -q git-conventional-commits version)"

# - name: examine version
# run: echo "${{ steps.conventional-commits.outputs.version }}"
- name: Verify Package Metadata
run: |
$url = "https://raw.githubusercontent.com/NuGet/NuGetGallery/master/src/VerifyMicrosoftPackage/verify.ps1"
Invoke-WebRequest $url -OutFile verify.ps1
.\verify.ps1 .\unsigned\*.nupkg
shell: pwsh
36 changes: 36 additions & 0 deletions .github/workflows/pack.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
name: Pack

on:
workflow_call:
inputs:
project-to-pack:
required: true
type: string

jobs:
Pack:
runs-on: ubuntu-latest
env:
OFFICIAL_BUILD: 'True'
steps:
- name: Checkout repository
uses: actions/checkout@v3
with:
fetch-depth: 0

- name: Setup .NET
uses: actions/setup-dotnet@v2
with:
dotnet-version: 6.0.x

- name: Restore packages
run: dotnet restore

- name: Package project
run: dotnet pack "${{inputs.project-to-pack}}" --configuration Release --output ./unsigned

- name: Upload Unsigned Packages
uses: actions/upload-artifact@v2
with:
name: unsigned
path: unsigned
41 changes: 41 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
name: Publish

on:
workflow_call:
secrets:
api_key:
required: true
inputs:
dry_run:
required: false
type: boolean
default: false

jobs:
Publish:
runs-on: ubuntu-latest
environment: Release
steps:
- name: Download Signed Packages
uses: actions/download-artifact@v2
with:
name: signed
path: signed

- name: Setup NuGet
uses: NuGet/setup-nuget@v1.0.5

- name: Push Package Dry Run
if: inputs.dry_run == true
ms-mikeb marked this conversation as resolved.
Show resolved Hide resolved
run: |
$signedFileName = (Get-ChildItem -Recurse -Path signed -Filter *.nupkg | Select-Object -Property Name -First 1).Name
Write-Host "Dry-run enabled. Not pushing to NuGet."
Write-Host "Signed Filename found: $signedFileName"
shell: pwsh

- name: Push Package
if: inputs.dry_run == false
run: |
$signedFileName = (Get-ChildItem -Recurse -Path signed -Filter *.nupkg | Select-Object -Property Name -First 1).Name
nuget push signed/$fileName -Source https://api.nuget.org/v3/index.json -ApiKey ${{ secrets.api_key }} -Verbosity detailed -NonInteractive
shell: pwsh
Loading