chore: sort glob result for stable output
All checks were successful
build / build (push) Successful in 1m33s
build / trigger-build-image (push) Successful in 10s

This commit is contained in:
张泊明518370910136 2025-06-20 17:25:09 -04:00
parent 875089cabd
commit 1b4637d01c
GPG Key ID: D47306D7062CDA9D
2 changed files with 3 additions and 3 deletions

View File

@ -104,7 +104,7 @@ def get_check_lists(repo_conf: repo.Config) -> Tuple[List[str], List[str]]:
return file_sums, file_names return file_sums, file_names
file_sums = [] file_sums = []
file_names = [] file_names = []
for file_path in immutable_dir.glob("**/*"): for file_path in sorted(immutable_dir.glob("**/*")):
if file_path.is_dir(): if file_path.is_dir():
continue continue
if not file_path.exists(): if not file_path.exists():

View File

@ -64,8 +64,8 @@
"-repoSize=50.5", "-repoSize=50.5",
"-meta=README.md", "-meta=README.md",
"-meta=Changelog.md", "-meta=Changelog.md",
"-checkFileSumList=b1bbad25b830db0a77b15a033f9ca1b7ab44c1d2d05056412bd3e4421645f0bf,a5b63323a692d3d8b952442969649b4f823d58dae26429494f613df160710dfc,2ba059f3977e2e3dee6cacbfbf0ba2578baa1b8e04b4977aec400868b6e49856,3db23f7fb2ca9814617e767ddc41b77073180b3b0b73e87b5f2a6d3129f88f3a", "-checkFileSumList=b1bbad25b830db0a77b15a033f9ca1b7ab44c1d2d05056412bd3e4421645f0bf,2ba059f3977e2e3dee6cacbfbf0ba2578baa1b8e04b4977aec400868b6e49856,3db23f7fb2ca9814617e767ddc41b77073180b3b0b73e87b5f2a6d3129f88f3a,a5b63323a692d3d8b952442969649b4f823d58dae26429494f613df160710dfc",
"-checkFileNameList=.gitattributes,.gitignore,.gitea/workflows/push.yaml,.gitea/workflows/release.yaml" "-checkFileNameList=.gitattributes,.gitea/workflows/push.yaml,.gitea/workflows/release.yaml,.gitignore"
] ]
}, },
{ {