- 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.
30 lines
738 B
YAML
30 lines
738 B
YAML
name: scanner-determinism
|
|
on:
|
|
workflow_dispatch: {}
|
|
|
|
jobs:
|
|
determinism:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Task Pack offline bundle fixtures
|
|
run: python3 scripts/packs/run-fixtures-check.sh
|
|
|
|
- name: Setup .NET
|
|
uses: actions/setup-dotnet@v4
|
|
with:
|
|
dotnet-version: "10.0.100-rc.2.25502.107"
|
|
|
|
- name: Run determinism harness
|
|
run: |
|
|
chmod +x scripts/scanner/determinism-run.sh
|
|
scripts/scanner/determinism-run.sh
|
|
|
|
- name: Upload determinism artifacts
|
|
uses: actions/upload-artifact@v4
|
|
with:
|
|
name: scanner-determinism
|
|
path: out/scanner-determinism/**
|