-
-
Notifications
You must be signed in to change notification settings - Fork 980
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
Add an option to pass environment variables to the default job #1312
Comments
Do I understand correctly that you would like to have the possibility to specify two different set of env vars, one for |
That's correct. However, the ones for |
Ok, so the thing that you are currently doing looks good to me (you are using the right API for the job). Does it mean that you would like to somehow pass the env vars via console line arguments? |
Would be nice! 🙂 |
@EgorBo ok, so I've transferred the issue to BDN repo @filipnavara could you please write some proposal? Would sth like this be enough? --envVars firstKey:firstValue secondKey:secondValue |
Yep, it would be. |
When testing against the mono/netcore runtime we often want to run the actual benchmark with specific runtime configuration. This is achieved through setting the
MONO_ENV_OPTIONS
environment variable. However, we also want to use differentMONO_ENV_OPTIONS
when runningdotnet restore
ordotnet build
for performance reasons. It would be nice to allow some way to inject the environment variables but only for the actul benchmark job.What I currently use is the following hack:
filipnavara/performance@d1768c7
/cc @EgorBo
The text was updated successfully, but these errors were encountered: