Skip to content

Commit a180fe8

Browse files
Remove miri check
Signed-off-by: Dusan Malusev <dusan@dusanmalusev.dev>
1 parent 1c83f25 commit a180fe8

File tree

1 file changed

+23
-22
lines changed

1 file changed

+23
-22
lines changed

.github/workflows/test.yaml

Lines changed: 23 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -72,27 +72,28 @@ jobs:
7272
with:
7373
command: test
7474
args: --benches
75-
miri:
76-
name: Test with Miri
77-
needs: [style]
78-
runs-on: ubuntu-latest
75+
# not working with tokio::test
76+
# miri:
77+
# name: Test with Miri
78+
# needs: [style]
79+
# runs-on: ubuntu-latest
7980

80-
steps:
81-
- name: Checkout
82-
uses: actions/checkout@v3
81+
# steps:
82+
# - name: Checkout
83+
# uses: actions/checkout@v3
8384

84-
- name: Install Rust
85-
uses: actions-rs/toolchain@v1
86-
with:
87-
profile: minimal
88-
toolchain: nightly
89-
components: miri
90-
override: true
91-
- name: 'Download rust-analyzer nightly'
92-
run: |
93-
wget -c -O /tmp/rust-analyzer.gz https://github.com/rust-lang/rust-analyzer/releases/download/nightly/rust-analyzer-x86_64-unknown-linux-gnu.gz
94-
gunzip /tmp/rust-analyzer.gz
95-
sudo mv /tmp/rust-analyzer /bin/rust-analyzer
96-
chmod +x /bin/rust-analyzer
97-
- name: Test
98-
run: MIRIFLAGS="-Zmiri-disable-isolation" cargo miri test
85+
# - name: Install Rust
86+
# uses: actions-rs/toolchain@v1
87+
# with:
88+
# profile: minimal
89+
# toolchain: nightly
90+
# components: miri
91+
# override: true
92+
# - name: 'Download rust-analyzer nightly'
93+
# run: |
94+
# wget -c -O /tmp/rust-analyzer.gz https://github.com/rust-lang/rust-analyzer/releases/download/nightly/rust-analyzer-x86_64-unknown-linux-gnu.gz
95+
# gunzip /tmp/rust-analyzer.gz
96+
# sudo mv /tmp/rust-analyzer /bin/rust-analyzer
97+
# chmod +x /bin/rust-analyzer
98+
# - name: Test
99+
# run: MIRIFLAGS="-Zmiri-disable-isolation" cargo miri test

0 commit comments

Comments
 (0)