Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions .github/workflows/ci-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -340,6 +340,14 @@ jobs:
- name: Cythonize
run: |
make cythonize
- name: Free up disk space for Android emulator
if: ${{ matrix.config.platform == 'android' }}
uses: BRAINSia/free-disk-space@v2.1.3
with:
android: false
docker-images: false
mandb: false
large-packages: false
- name: Enable KVM group perms for Android emulator
if: ${{ matrix.config.platform == 'android' }}
# This is normally done by cibuildwheel automatically, when it detects Github Actions. But by unsetting GITHUB_ACTIONS
Expand Down
Loading