Files
git.stella-ops.org/.gitea/workflows/symbols-release.yml
StellaOps Bot 579236bfce
Some checks failed
Docs CI / lint-and-preview (push) Has been cancelled
Concelier Attestation Tests / attestation-tests (push) Has been cancelled
Add MongoDB storage library and update acceptance tests with deterministic stubs
- Created StellaOps.Notify.Storage.Mongo project with initial configuration.
- Added expected output files for acceptance tests (at1.txt to at10.txt).
- Added fixture input files for acceptance tests (at1 to at10).
- Created input and signature files for test cases fc1 to fc5.
2025-12-05 22:56:01 +02:00

42 lines
1.1 KiB
YAML

name: Symbols Release Smoke
on:
push:
tags:
- 'v*'
workflow_dispatch: {}
jobs:
symbols-release-smoke:
runs-on: ubuntu-22.04
env:
ARTIFACT_DIR: ${{ github.workspace }}/artifacts/symbols-release
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Task Pack offline bundle fixtures
run: python3 scripts/packs/run-fixtures-check.sh
- name: Export OpenSSL 1.1 shim for Mongo2Go
run: scripts/enable-openssl11-shim.sh
- name: Run Symbols.Server smoke
env:
PROJECT_NAME: symbolsrelease
ARTIFACT_DIR: ${{ env.ARTIFACT_DIR }}
run: |
set -euo pipefail
mkdir -p "$ARTIFACT_DIR"
PROJECT_NAME="${PROJECT_NAME:-symbolsrelease}" ARTIFACT_DIR="$ARTIFACT_DIR" scripts/symbols/smoke.sh
- name: Upload artifacts
if: always()
uses: actions/upload-artifact@v4
with:
name: symbols-release
path: ${{ env.ARTIFACT_DIR }}
retention-days: 14