Skip to content

Commit

Permalink
try clean-up
Browse files Browse the repository at this point in the history
  • Loading branch information
mscheltienne committed Nov 11, 2024
1 parent 627df4f commit ab26e3b
Showing 1 changed file with 14 additions and 2 deletions.
16 changes: 14 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,21 @@ jobs:
matrix:
os: [ubuntu-latest, windows-latest, macos-13, macos-latest]
steps:
- uses: actions/checkout@v4
- name: Checkout Repository
uses: actions/checkout@v3
with:
submodules: recursive
submodules: false # Avoid default submodule update

- name: Clean Old Submodule Cache
run: |
git submodule deinit -f -- liblsl || true
rm -rf .git/modules/liblsl || true
rm -rf liblsl || true
- name: Sync and Initialize Submodules
run: |
git submodule sync --recursive
git submodule update --init --recursive --depth=1
# For some reason doing this in pyproject.toml does not seem to work :(
- name: Set Windows compilation env vars
shell: bash
Expand Down

0 comments on commit ab26e3b

Please sign in to comment.