Skip to content

Commit 0b9f749

Browse files
authored
[WIP] Debug wheel build with WoA (#11597)
* [WIP] Debug wheel build with WoA * Add back conditional
1 parent ad2e715 commit 0b9f749

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/python_wheels_winarm64.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
- name: Install build dependencies
3535
run: |
3636
python -m pip install --upgrade pip
37-
python -m pip install wheel setuptools
37+
python -m pip install wheel setuptools awscli
3838
3939
- name: Build XGBoost for Win-ARM64
4040
run: |
@@ -56,10 +56,11 @@ jobs:
5656
- name: Upload Python wheel
5757
if: github.ref == 'refs/heads/master' || contains(github.ref, 'refs/heads/release_')
5858
run: |
59+
$wheelFile = Get-ChildItem python-package/wheelhouse/*.whl | Select-Object -First 1 -ExpandProperty FullName
5960
python ops/pipeline/manage-artifacts.py upload `
6061
--s3-bucket xgboost-nightly-builds `
6162
--prefix ${{ env.BRANCH_NAME }}/${{ github.sha }} --make-public `
62-
python-package/wheelhouse/*.whl
63+
$wheelFile
6364
env:
6465
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID_IAM_S3_UPLOADER }}
6566
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY_IAM_S3_UPLOADER }}

0 commit comments

Comments
 (0)