Skip to content

Commit 7a27493

Browse files
committed
more
1 parent d81d441 commit 7a27493

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

.github/workflows/determinism.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ jobs:
6060
echo '<details>' >> $env:GITHUB_STEP_SUMMARY
6161
echo '' >> $env:GITHUB_STEP_SUMMARY
6262
echo '```json' >> $env:GITHUB_STEP_SUMMARY
63-
echo Get-Content -Path results.json >> $env:GITHUB_STEP_SUMMARY
63+
Get-Content -Path results.json >> $env:GITHUB_STEP_SUMMARY
6464
echo '' >> $env:GITHUB_STEP_SUMMARY
6565
echo '```' >> $env:GITHUB_STEP_SUMMARY
6666
echo '' >> $env:GITHUB_STEP_SUMMARY

test/determinism/determinism_tester.rs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -244,10 +244,13 @@ fn load_bazel_info(
244244
const BUFFER_SIZE: usize = 8192;
245245

246246
/// File extensions to exclude.
247-
const IGNORED_EXTENSIONS: [&str; 3] = [
247+
const IGNORED_EXTENSIONS: [&str; 6] = [
248248
".runfiles_manifest",
249249
"volatile-status.txt",
250250
"stable-status.txt",
251+
"MANIFEST",
252+
".pdb",
253+
".d",
251254
];
252255

253256
async fn hash(args: HashArgs) -> anyhow::Result<()> {

0 commit comments

Comments
 (0)