Skip to content

Commit

Permalink
Make the output of tool_yml more deterministic across machines (#1958)
Browse files Browse the repository at this point in the history
  • Loading branch information
glandium committed Aug 18, 2022
1 parent c55af26 commit 044ab37
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Expand Up @@ -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 &&
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Expand Up @@ -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 &&
Expand Down
1 change: 1 addition & 0 deletions crates/tools/yml/src/main.rs
Expand Up @@ -294,5 +294,6 @@ fn dirs(path: &str) -> Vec<String> {
}
}

dirs.sort();
dirs
}

0 comments on commit 044ab37

Please sign in to comment.