Merge branch 'main' of https://github.com/fryderykhuang/NullGC #30
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: NullGC | |
defaults: | |
run: | |
shell: pwsh | |
on: | |
push: | |
branches: | |
- 'main' | |
# - 'develop' | |
- 'release/**' | |
- 'feature/**' | |
- 'hotfix/**' | |
- 'gha-test' | |
paths-ignore: | |
- '.github/ISSUE_TEMPLATE/**' | |
- '*.md' | |
- 'docs/**' | |
env: | |
CICD: 1 | |
permissions: | |
contents: read | |
pages: write | |
id-token: write | |
concurrency: | |
group: "pages" | |
cancel-in-progress: false | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
with: | |
# non-shallow fetch of Git history allows correct version calculation. | |
fetch-depth: 0 | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v1 | |
with: | |
dotnet-version: '8.0.x' | |
- name: Restore tools | |
run: dotnet tool restore | |
- name: Use GitVersion | |
id: gitversion | |
run: echo "version=$(dotnet gitversion -output json -showvariable NuGetVersionV2)" >> $GITHUB_OUTPUT | |
- name: Restore dependencies | |
run: .\scripts\Restore.ps1 | |
- name: Build | |
run: .\scripts\Build.ps1 | |
- name: Test | |
run: .\scripts\Test.ps1 | |
- name: Pack | |
run: $Env:GitVersion_NuGetVersionV2='${{ steps.gitversion.outputs.version }}'; .\scripts\Pack.ps1 | |
- name: Run benchmark | |
run: .\scripts\RunBenchmarks.ps1 | |
- name: Generate benchmark result page | |
run: .\scripts\GenBenchmarkPage.ps1 | |
- name: Upload artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: benchmark-result-page | |
path: './artifacts/BenchmarkResultPage/**' | |
- name: Publish NuGet packages | |
run: $Env:NUGET_API_KEY='${{ secrets.NUGET_API_KEY }}'; .\scripts\PublishNuget.ps1 | |
deploy: | |
needs: build | |
environment: | |
name: github-pages | |
url: ${{ steps.deployment.outputs.page_url }} | |
runs-on: ubuntu-latest | |
steps: | |
# - name: Checkout | |
# uses: actions/checkout@v4 | |
- name: Setup Pages | |
uses: actions/configure-pages@v4 | |
- name: Download artifacts | |
uses: actions/download-artifact@v4 | |
with: | |
name: benchmark-result-page | |
- name: Display structure of downloaded files | |
run: ls -R | |
- name: Upload to GitHub Pages | |
uses: actions/upload-pages-artifact@v3 | |
with: | |
path: '.' | |
- name: Deploy to GitHub Pages | |
id: deployment | |
uses: actions/deploy-pages@v4 |