Skip to content

Commit

Permalink
Manually patched working-directory of maturin action
Browse files Browse the repository at this point in the history
  • Loading branch information
SV-97 committed Dec 9, 2023
1 parent 5a57835 commit f9aed1d
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@
# To update, run
#
# maturin generate-ci -m pcw_regrs_py/Cargo.toml github
#
#
# Note that I manually set input of the actions to the appropriate subdirectory!
#
name: CI

on:
Expand Down Expand Up @@ -36,6 +38,7 @@ jobs:
args: --release --out dist --find-interpreter --manifest-path pcw_regrs_py/Cargo.toml
sccache: 'true'
manylinux: auto
working-directory: ./pcw_regrs_py
- name: Upload wheels
uses: actions/upload-artifact@v3
with:
Expand All @@ -59,6 +62,7 @@ jobs:
target: ${{ matrix.target }}
args: --release --out dist --find-interpreter --manifest-path pcw_regrs_py/Cargo.toml
sccache: 'true'
working-directory: ./pcw_regrs_py
- name: Upload wheels
uses: actions/upload-artifact@v3
with:
Expand All @@ -81,6 +85,7 @@ jobs:
target: ${{ matrix.target }}
args: --release --out dist --find-interpreter --manifest-path pcw_regrs_py/Cargo.toml
sccache: 'true'
working-directory: ./pcw_regrs_py
- name: Upload wheels
uses: actions/upload-artifact@v3
with:
Expand All @@ -96,6 +101,7 @@ jobs:
with:
command: sdist
args: --out dist --manifest-path pcw_regrs_py/Cargo.toml
working-directory: ./pcw_regrs_py
- name: Upload sdist
uses: actions/upload-artifact@v3
with:
Expand All @@ -118,3 +124,4 @@ jobs:
with:
command: upload
args: --skip-existing *
working-directory: ./pcw_regrs_py

0 comments on commit f9aed1d

Please sign in to comment.