-
Notifications
You must be signed in to change notification settings - Fork 4
ci: run performance validation nightly and increase benchmark iteration count #554
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
Merged
Merged
Changes from all commits
Commits
Show all changes
19 commits
Select commit
Hold shift + click to select a range
394c9a6
ci: run performance validation nightly and increase benchmark iterati…
rjmurillo 2a59ceb
ci: run build, test, and performance validation on both windows-11-ar…
rjmurillo fdeee68
ci: deduplicate build and performance steps using composite action
rjmurillo 1993586
ci: rename composite action to setup-restore-build for clarity
rjmurillo f718940
ci: fix artifact naming for performance job to prevent OS conflicts
rjmurillo a800e57
ci: run performance validation nightly and increase benchmark iterati…
rjmurillo 42a53cb
ci: run build, test, and performance validation on both windows-11-ar…
rjmurillo d66ffe3
ci: deduplicate build and performance steps using composite action
rjmurillo 752aee8
ci: rename composite action to setup-restore-build for clarity
rjmurillo 60c827e
ci: fix artifact naming for performance job to prevent OS conflicts
rjmurillo c3576b7
Update main.yml reusable step syntax
rjmurillo 822281c
Update main.yml step reuse syntax
rjmurillo 7527716
ci: add semantic PR validation check (#555)
rjmurillo a871c51
Update main.yml reusable step syntax to avoid path problem
rjmurillo eac1439
Update main.yml
rjmurillo 6253322
Add Dependency Review Action and improve Moq detection
rjmurillo 3539ab4
Update workflows to include checkout and build steps
rjmurillo a3e37d6
fix: specify shell for NuGet restore and build steps in action.yml
rjmurillo fa85571
fix: expand OS matrix for perf jobs to include latest versions and macOS
rjmurillo File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,17 @@ | ||
| name: 'Setup, Restore, and Build Solution' | ||
| description: 'Checks out code, sets up .NET, restores NuGet packages, and builds the solution for CI jobs.' | ||
| runs: | ||
| using: "composite" | ||
| steps: | ||
| - name: Setup .NET | ||
| uses: actions/setup-dotnet@v4 | ||
| with: | ||
| global-json-file: ./global.json | ||
|
|
||
| - name: NuGet Restore | ||
| shell: pwsh | ||
| run: dotnet restore | ||
|
|
||
| - name: Build | ||
| shell: pwsh | ||
| run: dotnet build --no-restore --configuration Release /p:Deterministic=true /p:UseSharedCompilation=false /p:BuildInParallel=false /nodeReuse:false /bl:./artifacts/logs/release/build.release.binlog |
This file contains hidden or 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 file contains hidden or 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,17 @@ | ||
| name: "Semantic PR Check" | ||
|
|
||
| on: | ||
| pull_request: | ||
| types: | ||
| - opened | ||
| - edited | ||
| - synchronize | ||
|
|
||
| jobs: | ||
| main: | ||
| name: Validate PR title | ||
| runs-on: ubuntu-latest | ||
| steps: | ||
| - uses: amannn/action-semantic-pull-request@v5 | ||
| env: | ||
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
This file contains hidden or 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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.