-
Notifications
You must be signed in to change notification settings - Fork 13
33 lines (24 loc) · 859 Bytes
/
miri_tokio_log.yml
File metadata and controls
33 lines (24 loc) · 859 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
name: miri-tokio-log
on:
workflow_dispatch:
schedule: [cron: "10 */7 * * *"]
env:
CARGO_TERM_COLOR: always
jobs:
build_and_test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: install specified nightly toolchain
run: rustup toolchain install nightly-2025-12-01
- name: install miri
run: rustup component add miri --toolchain nightly-2025-12-01
#run: rustup component add --toolchain nightly-x86_64-unknown-linux-gnu miri
- name: Run miri tests with log (tokio multi thread)
run: cd test-suite; NIGHTLY_VERSION=nightly-2025-12-01 WORKFLOW=1 scripts/miri.sh --features trace_log,tokio
- name: collect log
if: ${{ failure() }}
uses: actions/upload-artifact@v4
with:
name: crossfire_miri_tokio_multithread
path: /tmp/crossfire_miri.log