Skip to content

Commit

Permalink
Don't use backslash on Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
hcho3 committed Dec 10, 2024
1 parent ba78b42 commit 4b5ff84
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,9 @@ jobs:
shell: powershell
run: |
conda activate
python3 ops/pipeline/manage-artifacts.py upload \
--s3-bucket ${{ env.RUNS_ON_S3_BUCKET_CACHE }} \
--prefix cache/${{ github.run_id }}/build-win64-gpu \
python3 ops/pipeline/manage-artifacts.py upload `
--s3-bucket ${{ env.RUNS_ON_S3_BUCKET_CACHE }} `
--prefix cache/${{ github.run_id }}/build-win64-gpu `
(Get-ChildItem python-package/dist/*.whl | Select-Object -Expand FullName)
test-win64-gpu:
Expand All @@ -53,9 +53,9 @@ jobs:
shell: powershell
run: |
conda activate
python3 ops/pipeline/manage-artifacts.py download \
--s3-bucket ${{ env.RUNS_ON_S3_BUCKET_CACHE }} \
--prefix cache/${{ github.run_id }}/build-win64-gpu \
--dest-dir python-package/dist \
python3 ops/pipeline/manage-artifacts.py download `
--s3-bucket ${{ env.RUNS_ON_S3_BUCKET_CACHE }} `
--prefix cache/${{ github.run_id }}/build-win64-gpu `
--dest-dir python-package/dist `
*.whl
- run: powershell ops/pipeline/test-win64-gpu.ps1

0 comments on commit 4b5ff84

Please sign in to comment.