Skip to content

Commit

Permalink
Try to fix windows arm64 build
Browse files Browse the repository at this point in the history
Signed-off-by: Timothy Johnson <[email protected]>
  • Loading branch information
t1m0thyj committed Nov 3, 2023
1 parent 7524876 commit 3a4ba3a
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/secrets-sdk.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,16 +66,25 @@ jobs:
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
if: ${{ matrix.target != 'aarch64' }}
with:
python-version: "3.10"
architecture: ${{ matrix.target }}
- name: Build wheels
uses: PyO3/maturin-action@v1
if: ${{ matrix.target != 'aarch64' }}
with:
target: ${{ matrix.target }}
args: --release --out dist --interpreter python3.7 python3.8 python3.9 python3.10 python3.11 python3.12
sccache: "true"
working-directory: src/secrets/zowe/secrets_for_zowe_sdk
- name: Build wheels
uses: PyO3/maturin-action@v1
if: ${{ matrix.target == 'aarch64' }}
with:
target: ${{ matrix.target }}
args: --release --out dist --find-interpreter --no-default-features
working-directory: src/secrets/zowe/secrets_for_zowe_sdk
- name: Upload wheels
uses: actions/upload-artifact@v3
with:
Expand Down

0 comments on commit 3a4ba3a

Please sign in to comment.