Add deterministic Java compile smoke test and PR CI check#8
Merged
Nullkernel merged 1 commit intomainfrom Apr 5, 2026
Merged
Conversation
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Motivation
Description
scripts/compile_smoke.shwhich scansSearching-algorithms/,Sorting-algorithms/, andData-Structures/, sorts file paths for deterministic ordering, copies each file into an isolated temporary work directory (renaming to the declaredpublicclass/interface/enum name when present), compiles each file into a separate output folder, and emits[PASS]/[FAIL]per file while returning non-zero on any failures.README.mdto document running the smoke test (./scripts/compile_smoke.sh) and describe its behavior (target directories, deterministic sorting, isolated outputs, and pass/fail semantics)..github/workflows/compile-smoke.ymlthat sets up Java 17 and runs./scripts/compile_smoke.shonpull_requestand viaworkflow_dispatch.Testing
./scripts/compile_smoke.sh, iterated on the script to handle files whosepublicclass name did not match their filename, and verified the final run printedJava compile smoke test passed.(all targeted Java files compiled in isolation)..github/workflows/compile-smoke.ymlso the same smoke test will run automatically on incoming pull requests (workflow creation not executed here).Codex Task