b758a7c242
---ci--- project: acdl phase: 21 milestone: v1.6 status: execute ---/ci--- Rename the acdl_platform/ package to core/ across the directory, all imports in tests/scripts/pipelines/workflows, and doc references. The package is imported as core.confidence_signal / core.contract_resolver / core.outbox_writer. The deploy workflow's platform-repo checkout dir is renamed acdl-platform/ -> platform/ (workspace path, not the python package). Both .gitea + .github workflows stay byte-identical. Note: the original target name 'platform/' shadows Python's stdlib platform module (pytest's import uuid -> platform.system() fails when the repo root is on sys.path, which every test does). 'core/' avoids the clash while honoring the intent (drop the verbose acdl_platform). Tests: 154 pass. run_ci.sh green.
17 lines
630 B
YAML
17 lines
630 B
YAML
# ACDL sample consumer contract — static-asset 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.
|
|
|
|
uses: acdl/pipelines/deploy.yaml@v1.4
|
|
module: static-asset
|
|
environment: dev
|
|
inputs:
|
|
bucket_name: acdl-spike-bucket
|
|
region: us-east-1 |