File tree Expand file tree Collapse file tree 2 files changed +7
-3
lines changed Expand file tree Collapse file tree 2 files changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -163,6 +163,11 @@ def calculate_hint(changed_files: list[str]) -> Hint:
163
163
hint .binding_go = True
164
164
hint .all_service = True
165
165
166
+ # go affected
167
+ if p .startswith (".github/scripts/test_go_binding" ):
168
+ hint .binding_go = True
169
+ hint .all_service = True
170
+
166
171
# bin affected
167
172
for bin in BIN :
168
173
if p .startswith (f"bin/{ bin } " ):
@@ -266,10 +271,9 @@ def generate_language_binding_cases(
266
271
if language == "java" :
267
272
cases = [v for v in cases if v ["service" ] != "hdfs" ]
268
273
elif language == "go" :
269
- # sqlite: https://github.com/apache/opendal/actions/runs/14443414830/job/40498759995?pr=6018#step:22:243
270
274
# hdfs: has problem with ListEmptyDir
271
275
# oss: timed out with ListSubDir
272
- cases = [v for v in cases if v ["service" ] not in ["hdfs" , "oss" , "sqlite" ]]
276
+ cases = [v for v in cases if v ["service" ] not in ["hdfs" , "oss" ]]
273
277
274
278
if os .getenv ("GITHUB_IS_PUSH" ) == "true" :
275
279
return cases
Original file line number Diff line number Diff line change 46
46
47
47
import (
48
48
opendal "github.com/apache/opendal/bindings/go"
49
- "github.com/apache/opendal-go-services/{ SERVICE } "
49
+ "github.com/apache/opendal-go-services/{ SERVICE } "
50
50
)
51
51
52
52
// Add more schemes for behavior tests here.
You can’t perform that action at this time.
0 commit comments