Replies: 1 comment 1 reply
-
You can use var config = DefaultConfig.Instance.AddJob(Job.Default.WithNuGet("MyPackage", "1.0.0")); |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
During a CI build (e.g. PR), I would like to run a few benchmarks against different versions of a library (last released, main-branch, pr-branch).
My rough plan is this:
dotnet pack
to build a Nuget package for that version, and store the created packages in a local directory on the CI machine.It is the second step I am not sure how to do. I have a bunch of ideas, but they all seem slightly hacky. What is the recommended approach?
Beta Was this translation helpful? Give feedback.
All reactions