diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index aafce1f410..4770c189a8 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -167,8 +167,8 @@ jobs: cargo clippy -p test_match && cargo clippy -p test_matrix3x2 && cargo clippy -p test_metadata && - cargo clippy -p test_not_dll && cargo clippy -p test_no_use && + cargo clippy -p test_not_dll && cargo clippy -p test_ntstatus && cargo clippy -p test_properties && cargo clippy -p test_query_signature && diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 93f86e7ccf..84518f65d9 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -151,8 +151,8 @@ jobs: cargo test --target ${{ matrix.target }} -p test_match && cargo test --target ${{ matrix.target }} -p test_matrix3x2 && cargo test --target ${{ matrix.target }} -p test_metadata && - cargo test --target ${{ matrix.target }} -p test_not_dll && cargo test --target ${{ matrix.target }} -p test_no_use && + cargo test --target ${{ matrix.target }} -p test_not_dll && cargo test --target ${{ matrix.target }} -p test_ntstatus && cargo test --target ${{ matrix.target }} -p test_properties && cargo test --target ${{ matrix.target }} -p test_query_signature && diff --git a/crates/tools/yml/src/main.rs b/crates/tools/yml/src/main.rs index c7c84464ba..5cfb58d96d 100644 --- a/crates/tools/yml/src/main.rs +++ b/crates/tools/yml/src/main.rs @@ -294,5 +294,6 @@ fn dirs(path: &str) -> Vec { } } + dirs.sort(); dirs }