-
Notifications
You must be signed in to change notification settings - Fork 0
258 lines (252 loc) · 21.6 KB
/
Copy pathtests.yml
File metadata and controls
258 lines (252 loc) · 21.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
name: tests
on:
pull_request:
push:
branches: [main]
permissions:
contents: read
jobs:
tests:
runs-on: ubuntu-latest
timeout-minutes: 15
strategy:
fail-fast: false
matrix:
python-version: ["3.11", "3.12", "3.13", "3.14"]
steps:
- uses: actions/checkout@fbc6f3992d24b796d5a048ff273f7fcc4a7b6c09 # v5
- uses: actions/checkout@fbc6f3992d24b796d5a048ff273f7fcc4a7b6c09 # v5
with:
repository: nicoechaniz/collective-memory
ref: 3e3b39416917f8e3c2bc5ca69362b20296205938
path: .collective-memory-contract
- uses: actions/setup-python@ece7cb06caefa5fff74198d8649806c4678c61a1 # v6
with:
python-version: ${{ matrix.python-version }}
cache: pip
cache-dependency-path: |
requirements-build.txt
requirements-dev.txt
requirements-hermes-contract.txt
requirements-species.txt
requirements-vectors.txt
- run: python -m pip install -r requirements-dev.txt -r requirements-vectors.txt
- run: python -m pip install -r requirements-species.txt
- run: python -m ruff format --check src tools/check_distribution.py tools/check_tribe_provenance.py tools/generate_dm021_vectors.py tools/generate_dm022_vectors.py tools/generate_dm030_vectors.py tools/generate_dm031_vectors.py tools/generate_dm032_vectors.py tools/generate_dm033_vectors.py tools/generate_dm034_vectors.py tools/generate_dm035_vectors.py tools/generate_dm040_vectors.py tools/generate_dm041_vectors.py tools/generate_dm061_vectors.py tools/generate_dm079_vectors.py tools/generate_dm081_vectors.py tools/reproducible_build.py tools/scan_secrets.py tests/test_package_scaffold.py tests/test_dm021_identity.py tests/test_dm021_keystore.py tests/test_dm021_process.py tests/test_dm021_vectors.py tests/test_dm022_ledger.py tests/test_dm023_sync.py tests/test_dm024_service.py tests/test_dm024_runtime.py tests/test_dm025_client.py tests/test_dm025_cli_mcp.py tests/test_dm026_conformance.py tests/test_dm030_memory_policy.py tests/test_dm031_curator.py tests/test_dm032_curator_worker.py tests/test_dm033_human_review.py tests/test_dm034_memory_projection.py tests/test_dm035_publication.py tests/test_dm037_cluster_effects.py tests/test_dm040_codex_body.py tests/test_dm041_hermes_body.py tests/test_dm050_tribe_provenance.py tests/test_dm051_sealed.py tests/test_dm052_communication.py tests/test_dm053_routes.py tests/test_dm054_scopes.py tests/test_dm055_peer_transport.py tests/test_dm060_synthetic_birth.py tests/test_dm061_species.py tests/test_dm079_authority_epochs.py tests/test_dm081_sources.py tests/test_dm083_dogfood.py
- run: python -m ruff check src tools/check_distribution.py tools/check_tribe_provenance.py tools/generate_dm021_vectors.py tools/generate_dm022_vectors.py tools/generate_dm030_vectors.py tools/generate_dm031_vectors.py tools/generate_dm032_vectors.py tools/generate_dm033_vectors.py tools/generate_dm034_vectors.py tools/generate_dm035_vectors.py tools/generate_dm040_vectors.py tools/generate_dm041_vectors.py tools/generate_dm061_vectors.py tools/generate_dm079_vectors.py tools/generate_dm081_vectors.py tools/reproducible_build.py tools/scan_secrets.py tests/test_package_scaffold.py tests/test_dm021_identity.py tests/test_dm021_keystore.py tests/test_dm021_process.py tests/test_dm021_vectors.py tests/test_dm022_ledger.py tests/test_dm023_sync.py tests/test_dm024_service.py tests/test_dm024_runtime.py tests/test_dm025_client.py tests/test_dm025_cli_mcp.py tests/test_dm026_conformance.py tests/test_dm030_memory_policy.py tests/test_dm031_curator.py tests/test_dm032_curator_worker.py tests/test_dm033_human_review.py tests/test_dm034_memory_projection.py tests/test_dm035_publication.py tests/test_dm037_cluster_effects.py tests/test_dm040_codex_body.py tests/test_dm041_hermes_body.py tests/test_dm050_tribe_provenance.py tests/test_dm051_sealed.py tests/test_dm052_communication.py tests/test_dm053_routes.py tests/test_dm054_scopes.py tests/test_dm055_peer_transport.py tests/test_dm060_synthetic_birth.py tests/test_dm061_species.py tests/test_dm079_authority_epochs.py tests/test_dm081_sources.py tests/test_dm083_dogfood.py
- run: MYPYPATH=src python -m mypy src tools/check_distribution.py tools/check_tribe_provenance.py tools/generate_dm021_vectors.py tools/generate_dm022_vectors.py tools/generate_dm030_vectors.py tools/generate_dm031_vectors.py tools/generate_dm032_vectors.py tools/generate_dm033_vectors.py tools/generate_dm034_vectors.py tools/generate_dm035_vectors.py tools/generate_dm040_vectors.py tools/generate_dm041_vectors.py tools/generate_dm061_vectors.py tools/generate_dm079_vectors.py tools/generate_dm081_vectors.py tools/reproducible_build.py tools/scan_secrets.py tests/test_package_scaffold.py tests/test_dm021_identity.py tests/test_dm021_keystore.py tests/test_dm021_process.py tests/test_dm021_vectors.py tests/test_dm022_ledger.py tests/test_dm023_sync.py tests/test_dm024_service.py tests/test_dm024_runtime.py tests/test_dm025_client.py tests/test_dm025_cli_mcp.py tests/test_dm026_conformance.py tests/test_dm030_memory_policy.py tests/test_dm031_curator.py tests/test_dm032_curator_worker.py tests/test_dm033_human_review.py tests/test_dm034_memory_projection.py tests/test_dm035_publication.py tests/test_dm037_cluster_effects.py tests/test_dm040_codex_body.py tests/test_dm041_hermes_body.py tests/test_dm050_tribe_provenance.py tests/test_dm051_sealed.py tests/test_dm052_communication.py tests/test_dm053_routes.py tests/test_dm054_scopes.py tests/test_dm055_peer_transport.py tests/test_dm060_synthetic_birth.py tests/test_dm061_species.py tests/test_dm079_authority_epochs.py tests/test_dm081_sources.py tests/test_dm083_dogfood.py
- run: python -m ruff format --check tests/test_operator_first_embodiment.py
- run: python -m ruff check tests/test_operator_first_embodiment.py
- run: MYPYPATH=src python -m mypy tests/test_operator_first_embodiment.py
- run: python -m ruff format --check tools/build_cross_being_canary_preflight.py tests/test_cross_being_canary_preflight.py
- run: python -m ruff check tools/build_cross_being_canary_preflight.py tests/test_cross_being_canary_preflight.py
- run: MYPYPATH=src python -m mypy tools/build_cross_being_canary_preflight.py tests/test_cross_being_canary_preflight.py
- run: python -m ruff format --check tools/generate_dm078_vectors.py tools/generate_dm078_recovery_vectors.py tests/test_dm078_rebirth.py tests/test_dm078_recovery_rebirth.py
- run: python -m ruff check tools/generate_dm078_vectors.py tools/generate_dm078_recovery_vectors.py tests/test_dm078_rebirth.py tests/test_dm078_recovery_rebirth.py
- run: MYPYPATH=src python -m mypy tools/generate_dm078_vectors.py tools/generate_dm078_recovery_vectors.py tests/test_dm078_rebirth.py tests/test_dm078_recovery_rebirth.py
- run: python -m ruff format --check tools/generate_dm082_vectors.py tests/test_dm082_relationships.py
- run: python -m ruff check tools/generate_dm082_vectors.py tests/test_dm082_relationships.py
- run: MYPYPATH=src python -m mypy tools/generate_dm082_vectors.py tests/test_dm082_relationships.py
- run: python -m ruff format --check tools/generate_dm042_vectors.py tests/test_dm042_local_we.py
- run: python -m ruff check tools/generate_dm042_vectors.py tests/test_dm042_local_we.py
- run: MYPYPATH=src python -m mypy tools/generate_dm042_vectors.py tests/test_dm042_local_we.py
- run: python -m ruff format --check tools/generate_dm070_vectors.py tests/test_dm070_multihost.py
- run: python -m ruff check tools/generate_dm070_vectors.py tests/test_dm070_multihost.py
- run: MYPYPATH=src python -m mypy tools/generate_dm070_vectors.py tests/test_dm070_multihost.py
- run: python -m ruff format --check tools/generate_dm036_vectors.py tests/test_dm036_collective_memory.py
- run: python -m ruff check tools/generate_dm036_vectors.py tests/test_dm036_collective_memory.py
- run: MYPYPATH=src python -m mypy tools/generate_dm036_vectors.py tests/test_dm036_collective_memory.py
- run: python tools/generate_dm041_vectors.py --check
- run: python tools/generate_dm042_vectors.py --check
- run: python tools/generate_dm036_vectors.py --check
env:
COLLECTIVE_MEMORY_CONTRACT_ROOT: ${{ github.workspace }}/.collective-memory-contract
- run: python tools/generate_dm061_vectors.py --check
- run: python tools/generate_dm078_vectors.py --check
- run: python tools/generate_dm078_recovery_vectors.py --check
- run: python tools/generate_dm081_vectors.py --check
- run: python tools/generate_dm082_vectors.py --check
- run: python -m compileall -q coordination src tools tests
- run: PYTHONPATH=src python -W error::ResourceWarning -m unittest discover -s tests -v
env:
COLLECTIVE_MEMORY_CONTRACT_ROOT: ${{ github.workspace }}/.collective-memory-contract
- uses: actions/checkout@fbc6f3992d24b796d5a048ff273f7fcc4a7b6c09 # v5
with:
repository: nicoechaniz/hermes-memory-kit
ref: f10fd5c3089c0962920314c97e14bc024feffa7a
path: .hmk-contract
- run: PYTHONPATH=src python -W error::ResourceWarning -m unittest tests.test_dm034_memory_projection -v
env:
HMK_CONTRACT_ROOT: ${{ github.workspace }}/.hmk-contract
- run: python tools/check_tribe_provenance.py provenance/tribe-bridge-v1.json
- uses: actions/checkout@fbc6f3992d24b796d5a048ff273f7fcc4a7b6c09 # v5
with:
repository: nicoechaniz/daimon-cluster
ref: 676495e852e6772a60de8221271ee9fc976f77ce
path: .cluster-contract
- name: Verify pinned Cluster hosting and canary evidence
env:
DAIMON_DM070_CLUSTER_ROOT: ${{ github.workspace }}/.cluster-contract
run: PYTHONPATH=src python -m unittest tests.test_dm070_multihost.DM070PublishedContractTests.test_cluster_checkout_matches_exact_pins -v
hermes-contract:
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- uses: actions/checkout@fbc6f3992d24b796d5a048ff273f7fcc4a7b6c09 # v5
- uses: actions/setup-python@ece7cb06caefa5fff74198d8649806c4678c61a1 # v6
with:
python-version: "3.12"
cache: pip
cache-dependency-path: |
requirements-dev.txt
requirements-hermes-contract.txt
requirements-species.txt
requirements-vectors.txt
- run: python -m pip install -r requirements-dev.txt -r requirements-hermes-contract.txt -r requirements-vectors.txt
- run: python -m pip install -r requirements-species.txt
- uses: actions/checkout@fbc6f3992d24b796d5a048ff273f7fcc4a7b6c09 # v5
with:
repository: nicoechaniz/hermes-agent
ref: 5c8870c1625761956a56fd2b225720dbe9083e45
path: .hermes-contract
- name: Verify real Hermes plugin discovery and turn composition
env:
DAIMON_DM041_HERMES_SOURCE: ${{ github.workspace }}/.hermes-contract
run: |
chmod -R go-w .hermes-contract
DAIMON_DM041_HERMES_PYTHON="$(command -v python)" PYTHONPATH=src python -W error::ResourceWarning -m unittest tests.test_dm041_hermes_body.RealHermesImportTests -v
package:
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- uses: actions/checkout@fbc6f3992d24b796d5a048ff273f7fcc4a7b6c09 # v5
- uses: actions/setup-python@ece7cb06caefa5fff74198d8649806c4678c61a1 # v6
with:
python-version: "3.12"
cache: pip
cache-dependency-path: |
requirements-build.txt
requirements-species.txt
- run: python -m pip install -r requirements-build.txt
- run: python tools/reproducible_build.py --output dist
- run: python tools/scan_secrets.py . dist/daimon_matrix-0.1.0rc1.tar.gz dist/daimon_matrix-0.1.0rc1-py3-none-any.whl
- uses: actions/checkout@fbc6f3992d24b796d5a048ff273f7fcc4a7b6c09 # v5
with:
repository: nicoechaniz/collective-memory
ref: 3e3b39416917f8e3c2bc5ca69362b20296205938
path: .collective-memory-contract
- uses: actions/checkout@fbc6f3992d24b796d5a048ff273f7fcc4a7b6c09 # v5
with:
repository: nicoechaniz/hermes-memory-kit
ref: f10fd5c3089c0962920314c97e14bc024feffa7a
path: .hmk-contract
- name: Smoke-test the installed wheel
env:
HMK_CONTRACT_ROOT: ${{ github.workspace }}/.hmk-contract
COLLECTIVE_MEMORY_CONTRACT_ROOT: ${{ github.workspace }}/.collective-memory-contract
run: |
python -m venv "${RUNNER_TEMP}/dm020-wheel"
"${RUNNER_TEMP}/dm020-wheel/bin/python" -m pip install -r requirements-vectors.txt
"${RUNNER_TEMP}/dm020-wheel/bin/python" -m pip install -r requirements-species.txt
"${RUNNER_TEMP}/dm020-wheel/bin/python" -m pip install mcp==2.0.0
"${RUNNER_TEMP}/dm020-wheel/bin/python" -m pip install --no-deps dist/daimon_matrix-0.1.0rc1-py3-none-any.whl
"${RUNNER_TEMP}/dm020-wheel/bin/python" -c 'import importlib.metadata as m; import daimon_matrix; assert daimon_matrix.__version__ == "0.1.0rc1"; assert m.requires("daimon-matrix") == ["cryptography==50.0.0", "mcp==2.0.0", "wasmtime==45.0.0"]'
"${RUNNER_TEMP}/dm020-wheel/bin/python" -c 'from daimon_matrix.identity import aggregate_genesis, create_genesis_holder_share, prepare_genesis, threshold_policy, verify_genesis; roots=[bytes([n])*32 for n in (1,2,3)]; recovery=[bytes([n])*32 for n in (4,5,6)]; prepared=prepare_genesis(threshold_policy(roots,2),threshold_policy(recovery,2),created_at_ms=1,nonce=bytes(32)); shares=[create_genesis_holder_share(prepared,seed,role=role) for role,seeds in (("root",roots),("recovery",recovery)) for seed in seeds]; artifact=aggregate_genesis(prepared,shares); assert verify_genesis(artifact).being_ref.startswith("dm:being:v1:")'
"${RUNNER_TEMP}/dm020-wheel/bin/python" -c 'from daimon_matrix.ledger import Ledger; from daimon_matrix.weave import BeingManifest; assert Ledger and BeingManifest'
"${RUNNER_TEMP}/dm020-wheel/bin/python" -c 'from daimon_matrix.collective_memory import create_source_manifest, create_publisher_manifest; assert create_source_manifest()["adapter_id"] != create_publisher_manifest()["adapter_id"]'
"${RUNNER_TEMP}/dm020-wheel/bin/python" -c 'from daimon_matrix.sealed import PROFILE; from cryptography.hazmat.primitives.hpke import Suite; assert PROFILE.startswith("HPKE-X25519") and Suite'
"${RUNNER_TEMP}/dm020-wheel/bin/python" -W error::ResourceWarning -m unittest tests.test_dm022_ledger -q
"${RUNNER_TEMP}/dm020-wheel/bin/python" -W error::ResourceWarning -m unittest tests.test_dm023_sync -q
"${RUNNER_TEMP}/dm020-wheel/bin/python" -W error::ResourceWarning -m unittest tests.test_dm031_curator -q
"${RUNNER_TEMP}/dm020-wheel/bin/python" -W error::ResourceWarning -m unittest tests.test_dm032_curator_worker -q
"${RUNNER_TEMP}/dm020-wheel/bin/python" -W error::ResourceWarning -m unittest tests.test_dm033_human_review -q
"${RUNNER_TEMP}/dm020-wheel/bin/python" -W error::ResourceWarning -m unittest tests.test_dm034_memory_projection -q
"${RUNNER_TEMP}/dm020-wheel/bin/python" -W error::ResourceWarning -m unittest tests.test_dm035_publication.DM035PublicContractTests -q
"${RUNNER_TEMP}/dm020-wheel/bin/python" -W error::ResourceWarning -m unittest tests.test_dm036_collective_memory.DM036ContractTests -q
"${RUNNER_TEMP}/dm020-wheel/bin/daimon-matrixd" --help
"${RUNNER_TEMP}/dm020-wheel/bin/daimon-genesis" --help
"${RUNNER_TEMP}/dm020-wheel/bin/daimon-first-embodiment" --help
"${RUNNER_TEMP}/dm020-wheel/bin/daimon-rebirth" --help
"${RUNNER_TEMP}/dm020-wheel/bin/daimon" --help
"${RUNNER_TEMP}/dm020-wheel/bin/daimon-conformance" --help
"${RUNNER_TEMP}/dm020-wheel/bin/daimon-codex-body" --help
"${RUNNER_TEMP}/dm020-wheel/bin/daimon-curator-worker" --help
"${RUNNER_TEMP}/dm020-wheel/bin/daimon-hermes-body" --help
"${RUNNER_TEMP}/dm020-wheel/bin/daimon-mcp" --help
"${RUNNER_TEMP}/dm020-wheel/bin/daimon-reviewer" --help
"${RUNNER_TEMP}/dm020-wheel/bin/daimon-synthetic-species" --help
"${RUNNER_TEMP}/dm020-wheel/bin/daimon-synthetic-sources" --help
dm087_fifo="${RUNNER_TEMP}/dm087-genesis.fifo"
mkfifo "${dm087_fifo}"
set +e
timeout 2 "${RUNNER_TEMP}/dm020-wheel/bin/daimon-first-embodiment" prepare --genesis "${dm087_fifo}" --profile README.md --password-fd 0 --output "${RUNNER_TEMP}/dm087-forbidden-output" </dev/null
dm087_status="$?"
set -e
test "${dm087_status}" -eq 2
test ! -e "${RUNNER_TEMP}/dm087-forbidden-output"
"${RUNNER_TEMP}/dm020-wheel/bin/python" -W error::ResourceWarning -m unittest tests.test_dm040_codex_body -q
"${RUNNER_TEMP}/dm020-wheel/bin/python" -W error::ResourceWarning -m unittest tests.test_dm041_hermes_body -q
"${RUNNER_TEMP}/dm020-wheel/bin/python" -W error::ResourceWarning -m unittest tests.test_dm042_local_we -q
"${RUNNER_TEMP}/dm020-wheel/bin/python" -W error::ResourceWarning -m unittest tests.test_dm060_synthetic_birth -q
"${RUNNER_TEMP}/dm020-wheel/bin/python" -W error::ResourceWarning -m unittest tests.test_dm061_species -q
"${RUNNER_TEMP}/dm020-wheel/bin/python" -W error::ResourceWarning -m unittest tests.test_dm070_multihost.DM070PublishedContractTests -q
"${RUNNER_TEMP}/dm020-wheel/bin/python" -W error::ResourceWarning -m unittest tests.test_dm081_sources -q
"${RUNNER_TEMP}/dm020-wheel/bin/python" -W error::ResourceWarning -m unittest tests.test_dm082_relationships -q
"${RUNNER_TEMP}/dm020-wheel/bin/python" -W error::ResourceWarning -m unittest tests.test_dm083_dogfood -q
"${RUNNER_TEMP}/dm020-wheel/bin/python" -W error::ResourceWarning -m unittest tests.test_dm078_rebirth -q
"${RUNNER_TEMP}/dm020-wheel/bin/python" -W error::ResourceWarning -m unittest tests.test_dm078_recovery_rebirth -q
"${RUNNER_TEMP}/dm020-wheel/bin/python" -W error::ResourceWarning -m unittest tests.test_dm024_service tests.test_dm024_runtime tests.test_dm025_client tests.test_dm025_cli_mcp tests.test_dm026_conformance tests.test_dm030_memory_policy tests.test_dm037_cluster_effects tests.test_dm051_sealed tests.test_dm052_communication tests.test_dm053_routes tests.test_dm054_scopes tests.test_dm055_peer_transport tests.test_dm079_authority_epochs -q
dm081_state="$(mktemp -d "${RUNNER_TEMP}/dm081-state-XXXXXX")"
dm081_report="${RUNNER_TEMP}/dm081-report.json"
"${RUNNER_TEMP}/dm020-wheel/bin/daimon-synthetic-sources" --state-root "${dm081_state}" > "${dm081_report}"
cmp "${dm081_report}" conformance/fixtures/dm081-synthetic-source.json
python tools/scan_secrets.py "${dm081_report}"
- uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4
with:
name: daimon-matrix-python-${{ github.sha }}
path: dist/
if-no-files-found: error
conformance:
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- uses: actions/checkout@fbc6f3992d24b796d5a048ff273f7fcc4a7b6c09 # v5
- uses: actions/setup-python@ece7cb06caefa5fff74198d8649806c4678c61a1 # v6
with:
python-version: "3.13"
cache: pip
cache-dependency-path: |
requirements-build.txt
requirements-species.txt
requirements-vectors.txt
- run: python -m pip install -r requirements-build.txt -r requirements-vectors.txt
- run: python tools/reproducible_build.py --output dist
- uses: actions/checkout@fbc6f3992d24b796d5a048ff273f7fcc4a7b6c09 # v5
with:
repository: nicoechaniz/collective-memory
ref: 3e3b39416917f8e3c2bc5ca69362b20296205938
path: .collective-memory-contract
- uses: actions/checkout@fbc6f3992d24b796d5a048ff273f7fcc4a7b6c09 # v5
with:
repository: nicoechaniz/hermes-memory-kit
ref: f10fd5c3089c0962920314c97e14bc024feffa7a
path: .hmk-contract
- name: Run installed deterministic conformance twice
env:
HMK_CONTRACT_ROOT: ${{ github.workspace }}/.hmk-contract
COLLECTIVE_MEMORY_CONTRACT_ROOT: ${{ github.workspace }}/.collective-memory-contract
run: |
python -m venv "${RUNNER_TEMP}/dm026-wheel"
"${RUNNER_TEMP}/dm026-wheel/bin/python" -m pip install -r requirements-vectors.txt mcp==2.0.0
"${RUNNER_TEMP}/dm026-wheel/bin/python" -m pip install -r requirements-species.txt
"${RUNNER_TEMP}/dm026-wheel/bin/python" -m pip install --no-deps dist/daimon_matrix-0.1.0rc1-py3-none-any.whl
mkdir -p reports
"${RUNNER_TEMP}/dm026-wheel/bin/daimon-conformance" --registry conformance/registry-v1.json --source-commit "${GITHUB_SHA}" --seed dm026-v1 --output reports/dm026-a.json --artifact wheel=dist/daimon_matrix-0.1.0rc1-py3-none-any.whl --artifact sdist=dist/daimon_matrix-0.1.0rc1.tar.gz
"${RUNNER_TEMP}/dm026-wheel/bin/daimon-conformance" --registry conformance/registry-v1.json --source-commit "${GITHUB_SHA}" --seed dm026-v1 --output reports/dm026-b.json --artifact wheel=dist/daimon_matrix-0.1.0rc1-py3-none-any.whl --artifact sdist=dist/daimon_matrix-0.1.0rc1.tar.gz
cmp reports/dm026-a.json reports/dm026-b.json
python tools/scan_secrets.py reports dist/daimon_matrix-0.1.0rc1.tar.gz dist/daimon_matrix-0.1.0rc1-py3-none-any.whl
- uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4
with:
name: dm026-conformance-${{ github.sha }}
path: reports/dm026-a.json
if-no-files-found: error