-
Notifications
You must be signed in to change notification settings - Fork 24
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
Run discovery on CI and adjust Conda env discovery #9
Conversation
@@ -33,7 +34,8 @@ impl EnvVariables { | |||
allusersprofile: env.get_env_var("ALLUSERSPROFILE".to_string()), | |||
programdata: env.get_env_var("PROGRAMDATA".to_string()), | |||
homedrive: env.get_env_var("HOMEDRIVE".to_string()), | |||
conda_root: env.get_env_var("ALLUSERSPROFILE".to_string()), | |||
conda_root: env.get_env_var("CONDA_ROOT".to_string()), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
First bug from real python on CI
Thanks for setting up Python @karthiknadig
shell: bash | ||
|
||
- name: Find Environments | ||
run: cargo run --release --target ${{ matrix.target }} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is harmless, given this runs in < 100ms
I want this running everytime so we can see the results.
No description provided.