Skip to content

Commit

Permalink
fix(ci): rename madsim to msim
Browse files Browse the repository at this point in the history
  • Loading branch information
muXxer committed Nov 18, 2024
1 parent 21892b9 commit 269740f
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
- name: Clippy sim
uses: actions-rs/cargo@v1
env:
RUSTFLAGS: "--cfg madsim"
RUSTFLAGS: "--cfg msim"
with:
command: clippy
args: -- -D warnings
Expand All @@ -50,7 +50,7 @@ jobs:
- name: Build sim
uses: actions-rs/cargo@v1
env:
RUSTFLAGS: "--cfg madsim"
RUSTFLAGS: "--cfg msim"
with:
command: build

Expand All @@ -70,8 +70,8 @@ jobs:
- name: Test sim
uses: actions-rs/cargo@v1
env:
RUSTFLAGS: "--cfg madsim"
RUSTDOCFLAGS: "--cfg madsim"
RUSTFLAGS: "--cfg msim"
RUSTDOCFLAGS: "--cfg msim"
with:
command: test
args: --release --no-fail-fast
Expand All @@ -88,7 +88,7 @@ jobs:
uses: actions-rs/cargo@v1
with:
command: bench
args: -p madsim
args: -p msim

doc:
runs-on: ubuntu-latest
Expand All @@ -102,8 +102,8 @@ jobs:
- name: Doc
uses: actions-rs/cargo@v1
env:
RUSTFLAGS: "--cfg madsim"
RUSTDOCFLAGS: "--cfg madsim --cfg docsrs"
RUSTFLAGS: "--cfg msim"
RUSTDOCFLAGS: "--cfg msim --cfg docsrs"
with:
command: doc
args: --no-deps

0 comments on commit 269740f

Please sign in to comment.