Skip to content

Commit 843739c

Browse files
committed
Add new lto-thin profile that is used exclusively for macos arm64 release build
1 parent 0dd101c commit 843739c

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ jobs:
5454
uses: PyO3/maturin-action@v1
5555
with:
5656
target: aarch64
57-
args: --profile release-lto --out dist
57+
args: --profile release-lto-thin --out dist
5858
- name: Upload wheels
5959
uses: actions/upload-artifact@v4
6060
with:

Cargo.toml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,11 @@ inherits = "release"
5555
lto = true
5656
codegen-units = 1
5757

58+
[profile.release-lto-thin]
59+
inherits = "release"
60+
lto = "thin"
61+
codegen-units = 1
62+
5863

5964
[features]
6065
default = []

0 commit comments

Comments
 (0)