Skip to content
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

CI fails with "cannot find value env_var in crate gix_path" #6132

Closed
alamb opened this issue Apr 26, 2023 · 2 comments
Closed

CI fails with "cannot find value env_var in crate gix_path" #6132

alamb opened this issue Apr 26, 2023 · 2 comments
Labels
bug Something isn't working

Comments

@alamb
Copy link
Contributor

alamb commented Apr 26, 2023

Describe the bug

CI is failing like this:

https://github.com/apache/arrow-datafusion/actions/runs/4813082830/jobs/8569157024?pr=6131

   Compiling gix-config v0.20.1
error[E0425]: cannot find value `env_var` in crate `gix_path`
  --> /usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/gix-config-0.20.1/src/file/init/comfort.rs:31:54
   |
31 |                     .storage_location(&mut gix_path::env_var)
   |                                                      ^^^^^^^ not found in `gix_path`

error[E0425]: cannot find function `home_dir` in crate `gix_path`
  --> /usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/gix-config-0.20.1/src/file/init/comfort.rs:44:30
   |
44 |         let home = gix_path::home_dir();
   |                              ^^^^^^^^ not found in `gix_path`
   |
help: consider importing one of these items
   |
1  | use gix_path::env::home_dir;
   |
1  | use std::env::home_dir;
   |
help: if you import `home_dir`, refer to it directly
   |
44 -         let home = gix_path::home_dir();
44 +         let home = home_dir();
   |

It happens on several unrelated PRs:

To Reproduce

Make a new PR without any code changes on datafusion

Expected behavior

CI should pass

Additional context

The crate in question appears to have released a new version 5 hours ago, about the same time that the tests started failing: https://crates.io/crates/gix-config

@alamb alamb added the bug Something isn't working label Apr 26, 2023
crepererum added a commit to crepererum/substrait-rs that referenced this issue Apr 27, 2023
0.43 seems to fail after 0.44 was published, see
  apache/datafusion#6132 .
@crepererum
Copy link
Contributor

crepererum commented Apr 27, 2023

@crepererum
Copy link
Contributor

Fixed by gitoxide's release engineering :). CI should be back to normal.

@alamb alamb closed this as completed Apr 27, 2023
bors bot pushed a commit to substrait-io/substrait-rs that referenced this issue Apr 27, 2023
0.43 seems to fail after 0.44 was published, see
  apache/datafusion#6132 .
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

2 participants