Skip to content

Commit 06019c5

Browse files
Bump tree-sitter to 0.25 (#292)
* Bump tree-sitter to 0.25 * Update bindings * Fix dependency declaration in swift binding * Bump swift lib dep * Put back spuriously-removed script folder * Update known failures to get CI green Co-authored-by: Conrad Irwin <[email protected]> * Turn off swift testing on CI for now --------- Co-authored-by: Conrad Irwin <[email protected]>
1 parent 8509e32 commit 06019c5

File tree

20 files changed

+1087
-591
lines changed

20 files changed

+1087
-591
lines changed

.gitattributes

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ src/parser.c linguist-generated
66
src/tree_sitter/* linguist-generated
77

88
# C bindings
9-
bindings/c/* linguist-generated
9+
bindings/c/** linguist-generated
1010
CMakeLists.txt linguist-generated
1111
Makefile linguist-generated
1212

@@ -35,3 +35,7 @@ go.sum linguist-generated
3535
bindings/swift/** linguist-generated
3636
Package.swift linguist-generated
3737
Package.resolved linguist-generated
38+
39+
# Zig bindings
40+
build.zig linguist-generated
41+
build.zig.zon linguist-generated

.github/workflows/ci.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,11 +46,12 @@ jobs:
4646
- name: Run tests
4747
uses: tree-sitter/parser-test-action@v2
4848
with:
49+
generate: false
4950
test-rust: true
5051
test-node: true
5152
test-python: true
5253
test-go: true
53-
test-swift: true
54+
test-swift: false
5455
- name: Parse examples
5556
uses: tree-sitter/parse-action@v4
5657
with:

.gitignore

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ node_modules/
88

99
# Swift artifacts
1010
.build/
11+
Package.resolved
1112

1213
# Go artifacts
1314
_obj/
@@ -25,6 +26,13 @@ dist/
2526
*.dylib
2627
*.dll
2728
*.pc
29+
*.exp
30+
*.lib
31+
32+
# Zig artifacts
33+
.zig-cache/
34+
zig-cache/
35+
zig-out/
2836

2937
# Example dirs
3038
/examples/*/

CMakeLists.txt

Lines changed: 8 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Makefile

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Package.swift

Lines changed: 7 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

bindings/python/tree_sitter_bash/binding.c

Lines changed: 11 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package-lock.json

Lines changed: 5 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)