Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
374 changes: 374 additions & 0 deletions .github/workflows/ppl-lint-rule-validation.yml

Large diffs are not rendered by default.

10 changes: 9 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -59,4 +59,12 @@ http-client.env.json
!.claude/harness/
.claude/settings.local.json
.clinerules
memory-bank
memory-bank
# PPL lint rule validation contract run artifacts (uploaded in CI, not committed)
backend-report.json
backend-report-nightly.json
detector-report.json
detector-contract.log
ppl-grammar-bundle.json
target.json
run-manifest.json
15 changes: 15 additions & 0 deletions integ-test/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -168,6 +168,21 @@ tasks.withType(licenseHeaders.class) {
additionalLicense 'AL ', 'Apache', 'Licensed under the Apache License, Version 2.0 (the "License")'
}

// Forward the PPL lint rule validation contract knobs to every integ test JVM
// (PplLintRuleValidationIT reads them): which schedule to run (pr|nightly), an
// optional path to write the observed backend report, and — while the cluster is
// alive — optional paths to export the candidate runtime grammar bundle and its
// target manifest for the detector-validation job. Applied globally so every
// RestIntegTestTask that runs the class picks it up without per-task edits.
tasks.withType(Test).configureEach {
systemProperty "ppl.lint.schedule", System.getProperty("ppl.lint.schedule", "pr")
["ppl.lint.report", "ppl.lint.grammar.bundle", "ppl.lint.target"].each { prop ->
if (System.getProperty(prop) != null) {
systemProperty prop, System.getProperty(prop)
}
}
}

validateNebulaPom.enabled = false
loggerUsageCheck.enabled = false

Expand Down
Loading
Loading