Skip to content

Commit

Permalink
ci: disable windows when parsing examples for now
Browse files Browse the repository at this point in the history
  • Loading branch information
amaanq committed Dec 22, 2024
1 parent d074b59 commit 86e94cc
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,14 +43,17 @@ jobs:
test-go: true
test-swift: true
- name: Set up examples
if: matrix.os != 'windows-latest'
run: |-
git clone https://github.com/torvalds/linux examples/linux --single-branch --depth=1 --filter=blob:none
git clone https://github.com/zephyrproject-rtos/zephyr examples/zephyr --single-branch --depth=1 --filter=blob:none
# TODO: Fix parsing on windows, case-insensitive fs leads to folders named `kconfig` being parsed
- name: Parse examples
uses: tree-sitter/parse-action@v4
if: matrix.os != 'windows-latest'
with:
files: |
examples/**/[K]config*
examples/**/Kconfig*
!examples/linux/scripts/Kconfig.include
!examples/linux/scripts/kconfig/tests/preprocess/builtin_func/Kconfig
!examples/linux/scripts/kconfig/tests/preprocess/circular_expansion/Kconfig
Expand Down

0 comments on commit 86e94cc

Please sign in to comment.