Some checks failed
AOC Guard CI / aoc-guard (push) Has been cancelled
AOC Guard CI / aoc-verify (push) Has been cancelled
Concelier Attestation Tests / attestation-tests (push) Has been cancelled
Docs CI / lint-and-preview (push) Has been cancelled
Policy Lint & Smoke / policy-lint (push) Has been cancelled
Findings Ledger CI / build-test (push) Has been cancelled
Findings Ledger CI / migration-validation (push) Has been cancelled
Findings Ledger CI / generate-manifest (push) Has been cancelled
mock-dev-release / package-mock-release (push) Has been cancelled
- Added ConsoleExportClient for managing export requests and responses. - Introduced ConsoleExportRequest and ConsoleExportResponse models. - Implemented methods for creating and retrieving exports with appropriate headers. feat(crypto): Add Software SM2/SM3 Cryptography Provider - Implemented SmSoftCryptoProvider for software-only SM2/SM3 cryptography. - Added support for signing and verification using SM2 algorithm. - Included hashing functionality with SM3 algorithm. - Configured options for loading keys from files and environment gate checks. test(crypto): Add unit tests for SmSoftCryptoProvider - Created comprehensive tests for signing, verifying, and hashing functionalities. - Ensured correct behavior for key management and error handling. feat(api): Enhance Console Export Models - Expanded ConsoleExport models to include detailed status and event types. - Added support for various export formats and notification options. test(time): Implement TimeAnchorPolicyService tests - Developed tests for TimeAnchorPolicyService to validate time anchors. - Covered scenarios for anchor validation, drift calculation, and policy enforcement.
45 lines
1.3 KiB
YAML
45 lines
1.3 KiB
YAML
name: mock-dev-release
|
|
|
|
on:
|
|
push:
|
|
paths:
|
|
- deploy/releases/2025.09-mock-dev.yaml
|
|
- deploy/downloads/manifest.json
|
|
- ops/devops/mock-release/**
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
package-mock-release:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Package mock dev artefacts
|
|
run: |
|
|
set -euo pipefail
|
|
mkdir -p out/mock-release
|
|
cp deploy/releases/2025.09-mock-dev.yaml out/mock-release/
|
|
cp deploy/downloads/manifest.json out/mock-release/
|
|
tar -czf out/mock-release/mock-dev-release.tgz -C out/mock-release .
|
|
|
|
- name: Compose config (dev + mock overlay)
|
|
run: |
|
|
set -euo pipefail
|
|
ops/devops/mock-release/config_check.sh
|
|
|
|
- name: Helm template (mock overlay)
|
|
run: |
|
|
set -euo pipefail
|
|
helm template mock ./deploy/helm/stellaops -f deploy/helm/stellaops/values-mock.yaml > /tmp/helm-mock.yaml
|
|
ls -lh /tmp/helm-mock.yaml
|
|
|
|
- name: Upload mock release bundle
|
|
uses: actions/upload-artifact@v3
|
|
with:
|
|
name: mock-dev-release
|
|
path: |
|
|
out/mock-release/mock-dev-release.tgz
|
|
/tmp/compose-mock-config.yaml
|
|
/tmp/helm-mock.yaml
|