Baa Nightly Stress #31
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Baa Nightly Stress | |
| on: | |
| schedule: | |
| - cron: "0 2 * * *" | |
| workflow_dispatch: | |
| jobs: | |
| stress-linux: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-python@v5 | |
| with: | |
| python-version: "3.11" | |
| - name: Configure (Linux) | |
| run: cmake -B build-linux -DCMAKE_BUILD_TYPE=Release | |
| - name: Build | |
| run: cmake --build build-linux -j | |
| - name: QA Stress | |
| env: | |
| PYTHONUTF8: "1" | |
| run: python3 scripts/qa_run.py --mode stress --summary-json qa-summary-stress-linux.json | |
| - name: Upload Stress Artifacts | |
| if: always() | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: qa-stress-linux-artifacts | |
| if-no-files-found: ignore | |
| path: | | |
| .baa_qa_logs/** | |
| qa-summary-stress-linux.json | |
| build-linux/**/*.s | |
| build-linux/**/*.ir |