Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/freebsd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ jobs:
copyback: false
# We need jq and GNU coreutils to run show-utils.sh and bash to use inline shell string replacement
prepare: pkg install -y curl sudo jq coreutils bash
release: '14.2'
run: |
## Prepare, build, and test
# implementation modelled after ref: <https://github.com/rust-lang/rustup/pull/2783>
Expand Down
4 changes: 2 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -336,7 +336,7 @@ jiff = { version = "0.2.10", default-features = false, features = [
"alloc",
"tz-system",
] }
libc = "0.2.172"
libc = "0.2.178"
linux-raw-sys = "0.12"
lscolors = { version = "0.21.0", default-features = false, features = [
"gnu_legacy",
Expand Down
1 change: 1 addition & 0 deletions tests/by-util/test_df.rs
Original file line number Diff line number Diff line change
Expand Up @@ -601,6 +601,7 @@ fn test_default_block_size_in_posix_portability_mode() {
}

#[test]
#[cfg_attr(target_os = "freebsd", ignore)] // https://github.com/uutils/coreutils/pull/8722
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

OK?

fn test_block_size_1024() {
fn get_header(block_size: u64) -> String {
let output = new_ucmd!()
Expand Down
Loading