You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
The text was updated successfully, but these errors were encountered:
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
The text was updated successfully, but these errors were encountered: