-
Notifications
You must be signed in to change notification settings - Fork 673
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: fix CI by correcting wrong cfg value & removing cache with sudo #2394
Changes from all commits
24345a7
9db99d5
45ad2f5
3476c66
e2aa6ff
0ea13ed
55635f6
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,12 +13,7 @@ mod test_errno; | |
mod test_fcntl; | ||
#[cfg(linux_android)] | ||
mod test_kmod; | ||
#[cfg(any( | ||
freebsdlike, | ||
target_os = "fushsia", | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Before this PR, this test module was enabled for target |
||
target_os = "linux", | ||
target_os = "netbsd" | ||
))] | ||
#[cfg(any(freebsdlike, target_os = "linux", target_os = "netbsd"))] | ||
mod test_mq; | ||
#[cfg(not(target_os = "redox"))] | ||
mod test_net; | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,7 +13,6 @@ use nix::fcntl::{openat2, OpenHow, ResolveFlag}; | |
target_env = "gnu", | ||
any( | ||
target_arch = "x86_64", | ||
target_arch = "x32", | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This target does not exist, so remove it |
||
target_arch = "powerpc", | ||
target_arch = "s390x" | ||
) | ||
|
@@ -146,7 +145,6 @@ fn test_renameat() { | |
target_env = "gnu", | ||
any( | ||
target_arch = "x86_64", | ||
target_arch = "x32", | ||
target_arch = "powerpc", | ||
target_arch = "s390x" | ||
) | ||
|
@@ -190,7 +188,6 @@ fn test_renameat2_behaves_like_renameat_with_no_flags() { | |
target_env = "gnu", | ||
any( | ||
target_arch = "x86_64", | ||
target_arch = "x32", | ||
target_arch = "powerpc", | ||
target_arch = "s390x" | ||
) | ||
|
@@ -238,7 +235,6 @@ fn test_renameat2_exchange() { | |
target_env = "gnu", | ||
any( | ||
target_arch = "x86_64", | ||
target_arch = "x32", | ||
target_arch = "powerpc", | ||
target_arch = "s390x" | ||
) | ||
|
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.
Requested by new checks added in Rust 1.80: