5365bb4e0a
---ci--- project: acdl phase: 0 milestone: v1.9 status: complete requirements: covered: [REQ-100, REQ-101, REQ-102, REQ-103, REQ-104, REQ-105, REQ-106, REQ-107, REQ-108, REQ-109, REQ-110, REQ-111] partial: [] ---/ci--- v1.9 milestone COMPLETE. All 12 requirements satisfied. Verify: 4 layers PASS (structural 26/26 files, behavioral 493 tests + run_ci.sh + run_platform.sh --check-only green, security, quality). Review: 0 P0, 0 P1 (READY TO SHIP). REVIEW.md reconstructed (D-086). Audit: PASS (reconstruction, file discipline, branch hygiene, commit discipline — 12/12 commits with ---ci--- blocks). Updated: - .ciagent/REQUIREMENTS.md: v1.9 section marked complete; traceability table REQ-100..111 added. - .ciagent/ROADMAP.md: v1.9 marked complete; Phase 43 added. - .ciagent/PROJECT.md: v1.9 objective marked complete. - .ciagent/config.json: milestone v1.9 status -> complete. - .ciagent/REVIEW.md: reconstructed with v1.9 content (D-086). - .ciagent/VERIFY.md: v1.9 4-layer verify. - .ciagent/AUDIT.md: v1.9 audit (PASS). - uses:/ref: bumped @v1.6 -> @v1.9 in contracts/, deploy workflows, docs/consumer-guide.md (D-071 successor). Tag v1.9.0 created next; floating v1.9 + v1 tags updated.
23 lines
1.0 KiB
YAML
23 lines
1.0 KiB
YAML
# ACDL sample consumer contract — static-assets module (dev)
|
|
#
|
|
# This is the reference example for a consumer contract. It declares:
|
|
# uses: the central ACDL deployment pipeline to reference
|
|
# module: which module to deploy (must match a registry key)
|
|
# environment: which environment to deploy to (dev = autonomous)
|
|
# inputs: module-specific inputs
|
|
#
|
|
# Validated against schemas/contract.schema.json.
|
|
# Resolved by core/contract_resolver.py to a Target Stack instance.
|
|
#
|
|
# Interpolation (D-081): ${env.<field>} + ${contract.<field>} tokens are
|
|
# expanded by the resolver from the environment onboarding JSON. The
|
|
# bucket_name below demonstrates the naming pattern that includes region,
|
|
# aws account id, and environment:
|
|
# acdl-${env.environment}-${contract.module}-${env.account_id}-${env.region}
|
|
|
|
uses: acdl/pipelines/deploy.yaml@v1.9
|
|
module: static-assets
|
|
environment: dev
|
|
inputs:
|
|
bucket_name: acdl-${env.environment}-${contract.module}-${env.account_id}-${env.region}
|
|
region: ${env.region} |