Skip to content

Commit

Permalink
ci: check x86 without simd
Browse files Browse the repository at this point in the history
  • Loading branch information
seanmonstar committed Jun 10, 2024
1 parent 04e5475 commit 26611e1
Showing 1 changed file with 12 additions and 4 deletions.
16 changes: 12 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -123,15 +123,23 @@ jobs:
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: 1.36.0
toolchain: stable
override: true
target: i686-unknown-linux-musl

# Only build, dev-dependencies don't compile on 1.36.0
- name: Build
- name: Test without SIMD
uses: actions-rs/cargo@v1
with:
command: build
command: test
args: --target i686-unknown-linux-musl
env:
CARGO_CFG_HTTPARSE_DISABLE_SIMD_COMPILETIME: 1

- name: Test

uses: actions-rs/cargo@v1
with:
command: test
args: --target i686-unknown-linux-musl

msrv_x64:
Expand Down

0 comments on commit 26611e1

Please sign in to comment.