Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci: enable SIMD instructions for x86_64 targets #423

Closed
wants to merge 3 commits into from
Closed
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 6 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ jobs:
target: x86_64-unknown-linux-gnu
cross: true
extra-args: "--all-features"
rustflags: "-Ctarget-feature=-3dnow,-3dnowa -Ctarget-cpu=sandybridge --cfg tokio_unstable"
- os: ubuntu-latest
target: i686-unknown-linux-gnu
cross: true
Expand All @@ -51,7 +52,7 @@ jobs:
release-name: x86_64-unknown-linux-gnu-static-crt
cross: true
extra-args: "--all-features"
rustflags: "-Ctarget-feature=+crt-static --cfg tokio_unstable"
rustflags: "-Ctarget-feature=+crt-static,-3dnow,-3dnowa -Ctarget-cpu=sandybridge --cfg tokio_unstable"
- os: ubuntu-latest
target: i686-unknown-linux-gnu
release-name: i686-unknown-linux-gnu-static-crt
Expand Down Expand Up @@ -95,6 +96,7 @@ jobs:
cross: false
postfix: ".exe"
extra-args: "--all-features"
rustflags: "-Ctarget-feature=-3dnow,-3dnowa -Ctarget-cpu=sandybridge --cfg tokio_unstable"
- os: windows-latest
target: i686-pc-windows-msvc
cross: false
Expand All @@ -107,7 +109,7 @@ jobs:
cross: false
postfix: ".exe"
extra-args: "--all-features"
rustflags: "-Ctarget-feature=+crt-static --cfg tokio_unstable"
rustflags: "-Ctarget-feature=+crt-static,-3dnow,-3dnowa -Ctarget-cpu=sandybridge --cfg tokio_unstable"
- os: windows-latest
target: i686-pc-windows-msvc
release-name: i686-pc-windows-msvc-static-crt
Expand All @@ -120,6 +122,7 @@ jobs:
target: x86_64-apple-darwin
cross: false
extra-args: "--all-features"
rustflags: "-Ctarget-feature=-3dnow,-3dnowa -Ctarget-cpu=sandybridge --cfg tokio_unstable"
- os: macos-14
target: aarch64-apple-darwin
cross: false
Expand All @@ -130,7 +133,7 @@ jobs:
release-name: x86_64-apple-darwin-static-crt
cross: false
extra-args: "--all-features"
rustflags: "-Ctarget-feature=+crt-static --cfg tokio_unstable"
rustflags: "-Ctarget-feature=+crt-static,-3dnow,-3dnowa -Ctarget-cpu=sandybridge --cfg tokio_unstable"
- os: macos-14
target: aarch64-apple-darwin
release-name: aarch64-apple-darwin-static-crt
Expand Down
Loading