-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
257 changed files
with
5,455 additions
and
2,488 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,3 @@ | ||
msrv = "1.79.0" | ||
cognitive-complexity-threshold = 24 | ||
missing-docs-in-crate-items = true | ||
check-private-items = true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -119,6 +119,10 @@ jobs: | |
- uses: Swatinem/rust-cache@v2 | ||
- name: Run sccache-cache | ||
uses: mozilla-actions/[email protected] | ||
- name: Install/setup prerequisites | ||
shell: bash | ||
run: | | ||
sudo apt-get -y update ; sudo apt-get -y install libselinux1-dev | ||
- name: Initialize workflow variables | ||
id: vars | ||
shell: bash | ||
|
@@ -192,13 +196,6 @@ jobs: | |
## Confirm MinSRV compatible 'Cargo.lock' | ||
# * 'Cargo.lock' is required to be in a format that `cargo` of MinSRV can interpret (eg, v1-format for MinSRV < v1.38) | ||
cargo fetch --locked --quiet || { echo "::error file=Cargo.lock::Incompatible (or out-of-date) 'Cargo.lock' file; update using \`cargo +${{ env.RUST_MIN_SRV }} update\`" ; exit 1 ; } | ||
- name: Confirm MinSRV equivalence for '.clippy.toml' | ||
shell: bash | ||
run: | | ||
## Confirm MinSRV equivalence for '.clippy.toml' | ||
# * ensure '.clippy.toml' MSRV configuration setting is equal to ${{ env.RUST_MIN_SRV }} | ||
CLIPPY_MSRV=$(grep -P "(?i)^\s*msrv\s*=\s*" .clippy.toml | grep -oP "\d+([.]\d+)+") | ||
if [ "${CLIPPY_MSRV}" != "${{ env.RUST_MIN_SRV }}" ]; then { echo "::error file=.clippy.toml::Incorrect MSRV configuration for clippy (found '${CLIPPY_MSRV}'; should be '${{ env.RUST_MIN_SRV }}'); update '.clippy.toml' with 'msrv = \"${{ env.RUST_MIN_SRV }}\"'" ; exit 1 ; } ; fi | ||
- name: Install/setup prerequisites | ||
shell: bash | ||
run: | | ||
|
@@ -420,14 +417,14 @@ jobs: | |
--arg multisize "$SIZE_MULTI" \ | ||
'{($date): { sha: $sha, size: $size, multisize: $multisize, }}' > size-result.json | ||
- name: Download the previous individual size result | ||
uses: dawidd6/action-download-artifact@v7 | ||
uses: dawidd6/action-download-artifact@v8 | ||
with: | ||
workflow: CICD.yml | ||
name: individual-size-result | ||
repo: uutils/coreutils | ||
path: dl | ||
- name: Download the previous size result | ||
uses: dawidd6/action-download-artifact@v7 | ||
uses: dawidd6/action-download-artifact@v8 | ||
with: | ||
workflow: CICD.yml | ||
name: size-result | ||
|
@@ -492,7 +489,7 @@ jobs: | |
job: | ||
# - { os , target , cargo-options , features , use-cross , toolchain, skip-tests } | ||
- { os: ubuntu-latest , target: arm-unknown-linux-gnueabihf , features: feat_os_unix_gnueabihf , use-cross: use-cross , skip-tests: true } | ||
- { os: ubuntu-latest , target: aarch64-unknown-linux-gnu , features: feat_os_unix_gnueabihf , use-cross: use-cross , skip-tests: true } | ||
- { os: ubuntu-24.04-arm , target: aarch64-unknown-linux-gnu , features: feat_os_unix_gnueabihf } | ||
- { os: ubuntu-latest , target: aarch64-unknown-linux-musl , features: feat_os_unix_musl , use-cross: use-cross , skip-tests: true } | ||
# - { os: ubuntu-latest , target: x86_64-unknown-linux-gnu , features: feat_selinux , use-cross: use-cross } | ||
- { os: ubuntu-latest , target: i686-unknown-linux-gnu , features: "feat_os_unix,test_risky_names", use-cross: use-cross } | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -41,7 +41,7 @@ jobs: | |
- name: Run sccache-cache | ||
uses: mozilla-actions/[email protected] | ||
- name: Prepare, build and test | ||
uses: vmactions/[email protected].7 | ||
uses: vmactions/[email protected].8 | ||
with: | ||
usesh: true | ||
sync: rsync | ||
|
@@ -135,7 +135,7 @@ jobs: | |
- name: Run sccache-cache | ||
uses: mozilla-actions/[email protected] | ||
- name: Prepare, build and test | ||
uses: vmactions/[email protected].7 | ||
uses: vmactions/[email protected].8 | ||
with: | ||
usesh: true | ||
sync: rsync | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
tests/tail/inotify-dir-recreate | ||
tests/timeout/timeout | ||
tests/rm/rm1 | ||
tests/misc/stdbuf | ||
tests/misc/usage_vs_getopt |
Oops, something went wrong.