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

Started getting failures in build pipeline. #60

Closed
dylanbstorey opened this issue Oct 11, 2023 · 2 comments
Closed

Started getting failures in build pipeline. #60

dylanbstorey opened this issue Oct 11, 2023 · 2 comments

Comments

@dylanbstorey
Copy link

dylanbstorey commented Oct 11, 2023

I've recently started getting the following errors in my build commands from this library on my local dev environment.

Apple M1 Max
Ventura 13.4.1

Works fine in my gitlab actions though. Any suggestions ?

Now started failing in my gitlab runners also

error[E0412]: cannot find type `RawFd` in `std::os::fd`
 --> /Users/dstorey/.cargo/registry/src/github.com-1ecc6299db9ec823/jobserver-0.1.27/src/error.rs:2:27
  |
2 | type RawFd = std::os::fd::RawFd;
  |                           ^^^^^ not found in `std::os::fd`
  |
help: consider importing this type alias
  |
1 | use std::os::unix::prelude::RawFd;
  |
help: if you import `RawFd`, refer to it directly
  |
2 - type RawFd = std::os::fd::RawFd;
2 + type RawFd = RawFd;
  |

error[E0603]: module `fd` is private
 --> /Users/dstorey/.cargo/registry/src/github.com-1ecc6299db9ec823/jobserver-0.1.27/src/error.rs:2:23
  |
2 | type RawFd = std::os::fd::RawFd;
  |                       ^^ private module
  |
note: the module `fd` is defined here
@weihanglo
Copy link
Member

See #59. You might want to upgrade your Rust toolchain.

@dylanbstorey
Copy link
Author

That worked, thank you.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants