Skip to content

Commit 268ec4e

Browse files
committed
use debug for non-published wheels, adjust release workflow
1 parent d6e7c35 commit 268ec4e

File tree

2 files changed

+16
-7
lines changed

2 files changed

+16
-7
lines changed

.github/workflows/release.yml

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,10 @@ jobs:
1717
with:
1818
manylinux: auto
1919
command: build
20-
args: --profile release-lto --out dist
20+
args: >
21+
--profile release-lto
22+
--manifest-path py-feos/Cargo.toml
23+
--out dist
2124
- name: Upload wheels
2225
uses: actions/upload-artifact@v4
2326
with:
@@ -36,7 +39,10 @@ jobs:
3639
uses: PyO3/maturin-action@v1
3740
with:
3841
target: x86_64
39-
args: --profile release-lto --out dist
42+
args: >
43+
--profile release-lto
44+
--manifest-path py-feos/Cargo.toml
45+
--out dist
4046
- name: Upload wheels
4147
uses: actions/upload-artifact@v4
4248
with:
@@ -75,7 +81,10 @@ jobs:
7581
uses: PyO3/maturin-action@v1
7682
with:
7783
target: ${{ matrix.target }}
78-
args: --profile release-lto --out dist
84+
args: >
85+
--profile release-lto
86+
--manifest-path py-feos/Cargo.toml
87+
--out dist
7988
- name: Upload wheels
8089
uses: actions/upload-artifact@v4
8190
with:

.github/workflows/wheels.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
manylinux: auto
1919
command: build
2020
args: >
21-
--profile release-lto
21+
--profile debug
2222
--manifest-path py-feos/Cargo.toml
2323
--out dist
2424
- name: Upload wheels
@@ -39,7 +39,7 @@ jobs:
3939
with:
4040
target: x86_64
4141
args: >
42-
--profile release-lto
42+
--profile debug
4343
--manifest-path py-feos/Cargo.toml
4444
--out dist
4545
- name: Upload wheels
@@ -60,7 +60,7 @@ jobs:
6060
with:
6161
target: aarch64
6262
args: >
63-
--profile release-lto
63+
--profile debug
6464
--manifest-path py-feos/Cargo.toml
6565
--out dist
6666
- name: Upload wheels
@@ -81,7 +81,7 @@ jobs:
8181
with:
8282
target: x64
8383
args: >
84-
--profile release-lto
84+
--profile debug
8585
--manifest-path py-feos/Cargo.toml
8686
--out dist
8787
- name: Upload wheels

0 commit comments

Comments
 (0)