Skip to content
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Changed profile in workflow for publishing wheels to use LTO
  • Loading branch information
g-bauer committed Dec 13, 2022
commit b79360f51d8d7dfda2b86fbdd4b1d9a6eda5120b
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
with:
manylinux: auto
command: build
args: --release --out dist
args: --profile release-lto --out dist
- name: Upload wheels
uses: actions/upload-artifact@v2
with:
Expand All @@ -42,11 +42,11 @@ jobs:
uses: messense/maturin-action@v1
with:
target: x86_64
args: --release --out dist
args: --profile release-lto --out dist
- name: Build wheels - universal2
uses: messense/maturin-action@v1
with:
args: --release --universal2 --out dist
args: --profile release-lto --universal2 --out dist
- name: Upload wheels
uses: actions/upload-artifact@v2
with:
Expand Down Expand Up @@ -74,7 +74,7 @@ jobs:
uses: messense/maturin-action@v1
with:
target: ${{ matrix.target }}
args: --release --out dist
args: --profile release-lto --out dist
- name: Upload wheels
uses: actions/upload-artifact@v2
with:
Expand Down