Skip to content

Commit

Permalink
chore: Bump crates versions (#4929)
Browse files Browse the repository at this point in the history
* Bump core

Signed-off-by: Xuanwo <[email protected]>

* chore: Bump crates versions

Signed-off-by: Xuanwo <[email protected]>

* Format cargo files

Signed-off-by: Xuanwo <[email protected]>

* Revert rocksdb

Signed-off-by: Xuanwo <[email protected]>

* Fix tests

Signed-off-by: Xuanwo <[email protected]>

---------

Signed-off-by: Xuanwo <[email protected]>
  • Loading branch information
Xuanwo committed Jul 26, 2024
1 parent fff8c74 commit e54b447
Show file tree
Hide file tree
Showing 57 changed files with 1,487 additions and 1,465 deletions.
6 changes: 5 additions & 1 deletion .github/scripts/test_behavior/plan.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@

BIN = ["ofs"]


def provided_cases() -> list[dict[str, str]]:
root_dir = f"{GITHUB_DIR}/services"

Expand Down Expand Up @@ -246,6 +247,7 @@ def generate_language_binding_cases(
cases = [v for v in cases if v["service"] in hint.services]
return cases


def generate_bin_cases(
cases: list[dict[str, str]], hint: Hint, bin: str
) -> list[dict[str, str]]:
Expand Down Expand Up @@ -302,7 +304,9 @@ def plan(changed_files: list[str]) -> dict[str, Any]:
language_cases = generate_language_binding_cases(cases, hint, language)
if len(language_cases) > 0:
jobs["components"][f"binding_{language}"] = True
jobs[f"binding_{language}"].append({"os": "ubuntu-latest", "cases": language_cases})
jobs[f"binding_{language}"].append(
{"os": "ubuntu-latest", "cases": language_cases}
)

for bin in BIN:
jobs[f"bin_{bin}"] = []
Expand Down
Loading

0 comments on commit e54b447

Please sign in to comment.