Skip to content

Commit

Permalink
ci: disable 3dnow instruction
Browse files Browse the repository at this point in the history
  • Loading branch information
Itsusinn committed May 21, 2024
1 parent 1ae43b3 commit 931f216
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
target: x86_64-unknown-linux-gnu
release-name: x86_64-linux
cross: true
rustflags: "-Ctarget-cpu=sandybridge"
rustflags: "-Ctarget-cpu=sandybridge -Ctarget-feature=-3dnow,-3dnowa"
- os: ubuntu-latest
target: i686-unknown-linux-gnu
release-name: i686-linux
Expand All @@ -51,7 +51,7 @@ jobs:
target: x86_64-unknown-linux-musl
release-name: x86_64-linux-musl
cross: true
rustflags: "-Ctarget-cpu=sandybridge"
rustflags: "-Ctarget-cpu=sandybridge -Ctarget-feature=-3dnow,-3dnowa"
- os: ubuntu-latest
target: i686-unknown-linux-musl
release-name: i686-linux-musl
Expand Down Expand Up @@ -88,7 +88,7 @@ jobs:
release-name: x86_64-windows
cross: false
postfix: ".exe"
rustflags: "-Ctarget-cpu=sandybridge"
rustflags: "-Ctarget-cpu=sandybridge -Ctarget-feature=-3dnow,-3dnowa"
- os: windows-latest
target: i686-pc-windows-msvc
release-name: i686-windows
Expand All @@ -100,7 +100,7 @@ jobs:
target: x86_64-apple-darwin
release-name: x86_64-darwin
cross: false
rustflags: "-Ctarget-cpu=sandybridge"
rustflags: "-Ctarget-cpu=sandybridge -Ctarget-feature=-3dnow,-3dnowa"
- os: macos-14
target: aarch64-apple-darwin
release-name: aarch64-darwin
Expand Down

0 comments on commit 931f216

Please sign in to comment.