cron-master-compio-arm #412
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: cron-master-compio-arm | |
| on: | |
| schedule: [cron: "0 */5 * * *"] | |
| workflow_dispatch: | |
| env: | |
| CARGO_TERM_COLOR: always | |
| jobs: | |
| build_and_test: | |
| runs-on: "macos-15" | |
| steps: | |
| - uses: actions/checkout@v2 | |
| # We use cargo-nextest because cargo test does not forward cancellation signal | |
| - uses: taiki-e/install-action@nextest | |
| - name: Run tests with compio | |
| run: env WORKFLOW=1 make test_compio | |
| - name: Run test with compio release | |
| run: env WORKFLOW=1 make test_compio_release | |
| - name: Run test with compio release and trace_log | |
| run: cd test-suite; WORKFLOW=1 exec cargo nextest run -F="compio,trace_log" --hide-progress-bar -j 1 --no-capture -r | |
| - name: Run tests with compio_dispatcher | |
| run: env WORKFLOW=1 make test_compio_dispatcher | |
| - name: Run test with compio_dispatcher release | |
| run: env WORKFLOW=1 make test_compio_dispatcher_release | |
| - name: Run test with compio_dispatcher release and trace_log | |
| run: cd test-suite; WORKFLOW=1 exec cargo nextest run -F="compio_dispatcher,trace_log" --hide-progress-bar -j 1 --no-capture -r | |
| - name: Dump log on cancel | |
| if: ${{ cancelled() || failure() }} | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: crossfire_ring | |
| path: /tmp/crossfire_ring.log |