mirror of
https://github.com/rosenpass/rosenpass.git
synced 2026-02-28 06:23:08 -08:00
No magic here, this is likely a copy&paste error. Problem is that one workflow being called "QC" (regressions.yml) cancels out the other "QC" (qc.yaml). Signed-off-by: Paul Spooren <mail@aparcar.org>
26 lines
549 B
YAML
26 lines
549 B
YAML
name: Regressions
|
|
on:
|
|
pull_request:
|
|
push:
|
|
branches: [main]
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
cancel-in-progress: true
|
|
|
|
permissions:
|
|
checks: write
|
|
contents: read
|
|
|
|
jobs:
|
|
multi-peer:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- run: cargo build --bin rosenpass --release
|
|
- run: python misc/generate_configs.py
|
|
- run: chmod +x .ci/run-regression.sh
|
|
- run: .ci/run-regression.sh 100 20
|
|
- run: |
|
|
[ $(ls -1 output/ate/out | wc -l) -eq 100 ]
|