chore(v-sweep): delete V-lang VeriSimDB client source #150
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
| # SPDX-License-Identifier: PMPL-1.0-or-later | ||
| # Instant Forge Sync - Triggers propagation to all forges on push/release | ||
| name: Instant Sync | ||
| on: | ||
| push: | ||
| branches: [main, master] | ||
| release: | ||
| types: [published] | ||
| permissions: | ||
| contents: read | ||
| jobs: | ||
| dispatch: | ||
| runs-on: ubuntu-latest | ||
| steps: | ||
| - name: Trigger Propagation | ||
| uses: peter-evans/repository-dispatch@28959ce8df70de7be546dd1250a005dd32156697 # v3 | ||
| with: | ||
| token: ${{ secrets.FARM_DISPATCH_TOKEN }} | ||
| repository: hyperpolymath/.git-private-farm | ||
| event-type: propagate | ||
| client-payload: |- | ||
| { | ||
| "repo": "${{ github.event.repository.name }}", | ||
| "ref": "${{ github.ref }}", | ||
| "sha": "${{ github.sha }}", | ||
| "forges": "" | ||
| } | ||
| - name: Confirm | ||
| env: | ||
| REPO_NAME: ${{ github.event.repository.name }} | ||
| run: echo "::notice::Propagation triggered for ${REPO_NAME}" | ||
| - name: K9-SVC Validation | ||
| run: | | ||
| echo "Running K9-SVC contractile validation..." | ||
| if [ -f .machine_readable/contractiles/must/Mustfile.a2ml ]; then | ||
| echo "✅ Mustfile found - running validation" | ||
| # Placeholder for actual K9 validation | ||
| echo "K9 validation would run here" | ||
| else | ||
| echo "❌ Mustfile not found" | ||
| exit 1 | ||
| fi | ||
| - name: Contractile Check | ||
| run: | | ||
| echo "Checking contractile completeness..." | ||
| contractiles=("must" "trust" "dust" "lust" "adjust" "intend") | ||
| missing=0 | ||
| for c in "${contractiles[@]}"; do | ||
| if [ ! -f ".machine_readable/contractiles/$c/${c^}file.a2ml" ]; then | ||
| echo "❌ Missing: $c" | ||
| missing=$((missing + 1)) | ||
| fi | ||
| done | ||
| if [ $missing -gt 0 ]; then | ||
| echo "❌ $missing contractiles missing" | ||
| exit 1 | ||
| fi | ||
| echo "✅ All contractiles present" | ||