fix: DART 6.16 iterator invalidation SEGFAULT in Subject/Observer notification loops #808
Workflow file for this run
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: CI Alt Linux (Docker) | |
| on: | |
| push: | |
| branches: | |
| - "**" | |
| paths-ignore: | |
| - ".github/workflows/cache_*.yml" | |
| - "docker/dev/**" | |
| pull_request: | |
| branches: | |
| - "**" | |
| paths-ignore: | |
| - ".github/workflows/cache_*.yml" | |
| - "docker/dev/**" | |
| schedule: | |
| # Run every Monday at 05:00 UTC | |
| - cron: "0 5 * * 1" | |
| workflow_dispatch: | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: ${{ github.event_name != 'schedule' }} | |
| jobs: | |
| altlinux: | |
| name: Alt Linux repro (Docker) | |
| runs-on: ubuntu-24.04 | |
| continue-on-error: true | |
| timeout-minutes: 120 | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v5 | |
| - name: Setup pixi | |
| uses: prefix-dev/setup-pixi@v0.9.1 | |
| with: | |
| cache: true | |
| - name: Run Alt Linux repro tests | |
| run: pixi run altlinux-test | |
| - name: Stop Alt Linux container | |
| if: always() | |
| run: pixi run altlinux-stop |