Skip to content

Commit

Permalink
chore: release 1.0.4
Browse files Browse the repository at this point in the history
  • Loading branch information
Itsusinn committed May 21, 2024
1 parent 3e681a5 commit 1ae43b3
Show file tree
Hide file tree
Showing 8 changed files with 101 additions and 92 deletions.
2 changes: 1 addition & 1 deletion .github/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ WORKDIR /app/tuic

RUN if [ "$DOCKER_PLATFORM" = "amd64" ]; then \
echo "Setting RUSTFLAGS for x86_64" && \
export RUSTFLAGS="-Ctarget-feature=+sse2,+sse3,+avx" ; \
export RUSTFLAGS="-Ctarget-cpu=sandybridge" ; \
else \
export RUSTFLAGS="" ; \
fi
Expand Down
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-feature=+sse2,+sse3,+avx"
rustflags: "-Ctarget-cpu=sandybridge"
- 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-feature=+sse2,+sse3,+avx"
rustflags: "-Ctarget-cpu=sandybridge"
- 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-feature=+sse2,+sse3,+avx"
rustflags: "-Ctarget-cpu=sandybridge"
- 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-feature=+sse2,+sse3,+avx"
rustflags: "-Ctarget-cpu=sandybridge"
- os: macos-14
target: aarch64-apple-darwin
release-name: aarch64-darwin
Expand Down
Loading

0 comments on commit 1ae43b3

Please sign in to comment.