Skip to content

miri-tokio

miri-tokio #687

Workflow file for this run

name: miri-tokio
on:
workflow_dispatch:
schedule: [cron: "20 */6 * * *"]
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 without log (tokio multi thread)
run: cd test-suite; NIGHTLY_VERSION=nightly-2025-12-01 WORKFLOW=1 scripts/miri.sh -F tokio,time