Files
git.stella-ops.org/.gitea/workflows/symbols-release.yml
StellaOps Bot 7c39058386
Some checks failed
Docs CI / lint-and-preview (push) Has been cancelled
AOC Guard CI / aoc-guard (push) Has been cancelled
AOC Guard CI / aoc-verify (push) Has been cancelled
Export Center CI / export-ci (push) Has been cancelled
Symbols Server CI / symbols-smoke (push) Has been cancelled
devportal-offline / build-offline (push) Has been cancelled
up
2025-11-24 20:57:49 +02:00

39 lines
979 B
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: 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