Bump version #93
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: .NET | |
on: | |
push: | |
branches: | |
- '*' | |
pull_request: | |
branches: [ main ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: ./Aero | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v1 | |
with: | |
dotnet-version: 5.0.x | |
- name: Restore dependencies | |
run: dotnet restore | |
- name: Build | |
run: dotnet build --no-restore -c Release | |
- name: Test | |
run: dotnet test --no-build --verbosity normal -c Release | |
- name: Publish nuget | |
uses: rohith/publish-nuget@v2 | |
if: github.event_name != 'pull_request' | |
with: | |
PROJECT_FILE_PATH: Aero/Aero.Gen/Aero.Gen.csproj | |
PACKAGE_NAME: Aero.Gen | |
NUGET_KEY: ${{secrets.TMW_NUGET}} | |
- name: Run benchmarks | |
run: cd Aero.UnitTests && dotnet run -c Release | |
- id: get-comment-body | |
run: | | |
body=$(cat Aero.UnitTests/BenchmarkDotNet.Artifacts/results/Aero.UnitTests.Benchmarks.Reading-report-github.md) | |
body="${body//'%'/'%25'}" | |
body="${body//$'\n'/'%0A'}" | |
body="${body//$'\r'/'%0D'}" | |
echo ::set-output name=body::$body | |
- name: Commit Comment | |
uses: peter-evans/[email protected] | |
with: | |
body: | | |
Benchmark result (use as a guide): | |
${{ steps.get-comment-body.outputs.body }} | |
- name: Download previous benchmark data | |
uses: actions/cache@v1 | |
with: | |
path: ./cache | |
key: ${{ runner.os }}-benchmark | |
- name: Store benchmark result | |
uses: Happypig375/[email protected] | |
if: github.event_name != 'pull_request' | |
with: | |
name: Benchmark.Net Benchmark | |
tool: 'benchmarkdotnet' | |
gh-pages-branch: benchmarkResults | |
benchmark-data-dir-path: benchmarks | |
output-file-path: Aero/Aero.UnitTests/BenchmarkDotNet.Artifacts/results/Aero.UnitTests.Benchmarks.Reading-report-full-compressed.json | |
external-data-json-path: ./cache/benchmark-data.json | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
auto-push: false | |
skip-fetch-gh-pages: true | |
comment-always: false | |
# Show alert with commit comment on detecting possible performance regression | |
alert-threshold: '400%' | |
fail-on-alert: true |