Skip to content

Commit 54d0147

Browse files
committed
Do not run CI tests on mips
1 parent 2c7ef82 commit 54d0147

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,13 +63,15 @@ jobs:
6363
args: --target=${{ matrix.TARGET }} --all-features
6464

6565
- name: Test
66+
if: ${{ ! contains(matrix.TARGET, 'mips') }} # https://github.com/rust-lang/rust/issues/108835
6667
uses: actions-rs/cargo@v1
6768
with:
6869
use-cross: true
6970
command: test
7071
args: --target=${{ matrix.TARGET }}
7172

7273
- name: Test all features
74+
if: ${{ ! contains(matrix.TARGET, 'mips') }} # https://github.com/rust-lang/rust/issues/108835
7375
uses: actions-rs/cargo@v1
7476
with:
7577
use-cross: true
@@ -113,4 +115,3 @@ jobs:
113115
- uses: actions-rs/clippy-check@v1
114116
with:
115117
token: ${{ secrets.GITHUB_TOKEN }}
116-

0 commit comments

Comments
 (0)