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 2, 2023
1 parent 7524876 commit 3120414
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/secrets-sdk.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,14 +66,19 @@ jobs:
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
if: ${{ matrix.target != 'aarch64' }}
with:
python-version: "3.10"
architecture: ${{ matrix.target }}
- uses: actions/setup-python@v4
if: ${{ matrix.target == 'aarch64' }}
with:
python-version: "3.11"
- name: Build wheels
uses: PyO3/maturin-action@v1
with:
target: ${{ matrix.target }}
args: --release --out dist --interpreter python3.7 python3.8 python3.9 python3.10 python3.11 python3.12
args: --release --out dist --interpreter ${{ matrix.target != 'aarch64' && 'python3.7 python3.8 python3.9 python3.10' || '' }} python3.11 python3.12
sccache: "true"
working-directory: src/secrets/zowe/secrets_for_zowe_sdk
- name: Upload wheels
Expand Down

0 comments on commit 3120414

Please sign in to comment.