- 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.
29 lines
705 B
YAML
29 lines
705 B
YAML
name: Airgap Sealed CI Smoke
|
|
|
|
on:
|
|
push:
|
|
branches: [ main ]
|
|
paths:
|
|
- 'ops/devops/airgap/**'
|
|
- '.gitea/workflows/airgap-sealed-ci.yml'
|
|
pull_request:
|
|
branches: [ main, develop ]
|
|
paths:
|
|
- 'ops/devops/airgap/**'
|
|
- '.gitea/workflows/airgap-sealed-ci.yml'
|
|
|
|
jobs:
|
|
sealed-smoke:
|
|
runs-on: ubuntu-22.04
|
|
permissions:
|
|
contents: read
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
- name: Task Pack offline bundle fixtures
|
|
run: python3 scripts/packs/run-fixtures-check.sh
|
|
- name: Install dnslib
|
|
run: pip install dnslib
|
|
- name: Run sealed-mode smoke
|
|
run: sudo ops/devops/airgap/sealed-ci-smoke.sh
|