Skip to content

Commit

Permalink
Use Windows remove commands
Browse files Browse the repository at this point in the history
  • Loading branch information
matthewfeickert committed Jul 29, 2024
1 parent 93bbf71 commit 751c424
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -138,11 +138,19 @@ jobs:
run: python -m pip list

- name: Cleanup to have dist build be as clean as possible
if: matrix.os != 'windows-latest'
run: |
cd examples/compiled_packaging
rm -rf src/rosen_cpp/_version.py
rm -rf build
- name: Cleanup to have dist build be as clean as possible
if: matrix.os == 'windows-latest'
run: |
cd examples/compiled_packaging
rm src/rosen_cpp/_version.py -force
rm build -r -force
- name: Build a sdist and wheel
run: |
cd examples/compiled_packaging
Expand Down

0 comments on commit 751c424

Please sign in to comment.