Skip to content

feat: upgrade macos runner#4089

Open
dl239 wants to merge 10 commits into4paradigm:mainfrom
dl239:fix/mac-runner
Open

feat: upgrade macos runner#4089
dl239 wants to merge 10 commits into4paradigm:mainfrom
dl239:fix/mac-runner

Conversation

@dl239
Copy link
Collaborator

@dl239 dl239 commented Feb 25, 2026

  • What kind of change does this PR introduce? (Bug fix, feature, docs update, ...)

  • What is the current behavior? (You can also link to an open issue here)

  • What is the new behavior (if this is a feature change)?

Signed-off-by: dl239 <jeremydeng012@gmail.com>
@github-actions github-actions bot added the workflow CICD related label Feb 25, 2026
Signed-off-by: dl239 <jeremydeng012@gmail.com>
Signed-off-by: dl239 <jeremydeng012@gmail.com>
@github-actions
Copy link
Contributor

github-actions bot commented Feb 25, 2026

SDK Test Report

102 files  ±0  102 suites  ±0   2m 8s ⏱️ +5s
359 tests ±0  345 ✅ ±0  14 💤 ±0  0 ❌ ±0 
487 runs  ±0  473 ✅ ±0  14 💤 ±0  0 ❌ ±0 

Results for commit b5335a2. ± Comparison against base commit c73bd4b.

This pull request removes 30 and adds 9 tests. Note that renamed tests count towards both.
  PARTITION BY db1.t1.col2 ORDER BY db1.t1.col1
  PARTITION BY t1.col2 ORDER BY t1.col1
  ROWS_RANGE BETWEEN 3 PRECEDING AND CURRENT ROW
 ) limit 10;](1)
 ) limit 10;](2)
 ) limit 10;](3)
 FROM db1.t1
 FROM t1
 WINDOW w1 AS (
 last join db2.t2 order by db2.t2.col1
…
com._4paradigm.hybridse.sdk.SqlEngineTest ‑ sqlLastJoinWithMultipleDB[,  SELECT sum(db1.t1.col1) over w1 as sum_t1_col1, db2.t2.str1 as t2_str1
 FROM db1.t1
 last join db2.t2 order by db2.t2.col1
 on db1.t1.col1 = db2.t2.col1 and db1.t1.col2 = db2.t2.col0
 WINDOW w1 AS (
  PARTITION BY db1.t1.col2 ORDER BY db1.t1.col1
  ROWS_RANGE BETWEEN 3 PRECEDING AND CURRENT ROW
 ) limit 10;](2)
com._4paradigm.hybridse.sdk.SqlEngineTest ‑ sqlLastJoinWithMultipleDB[db1,  SELECT sum(t1.col1) over w1 as sum_t1_col1, db2.t2.str1 as t2_str1
 FROM t1
 last join db2.t2 order by db2.t2.col1
 on t1.col1 = db2.t2.col1 and t1.col2 = db2.t2.col0
 WINDOW w1 AS (
  PARTITION BY t1.col2 ORDER BY t1.col1
  ROWS_RANGE BETWEEN 3 PRECEDING AND CURRENT ROW
 ) limit 10;](1)
com._4paradigm.hybridse.sdk.SqlEngineTest ‑ sqlLastJoinWithMultipleDB[null,  SELECT sum(db1.t1.col1) over w1 as sum_t1_col1, db2.t2.str1 as t2_str1
 FROM db1.t1
 last join db2.t2 order by db2.t2.col1
 on db1.t1.col1 = db2.t2.col1 and db1.t1.col2 = db2.t2.col0
 WINDOW w1 AS (
  PARTITION BY db1.t1.col2 ORDER BY db1.t1.col1
  ROWS_RANGE BETWEEN 3 PRECEDING AND CURRENT ROW
 ) limit 10;](3)
com._4paradigm.hybridse.sdk.SqlEngineTest ‑ sqlMultipleDBErrorTest[, SELECT db2.t2.str1 as t2_str1
 FROM t1
 last join db2.t2 order by db2.t2.col1
 on t1.col1 = db2.t2.col1 and t1.col2 = db2.t2.col0;
, SQL parse error: Fail to transform data provider op: table t1 not exists in database []](4)
com._4paradigm.hybridse.sdk.SqlEngineTest ‑ sqlMultipleDBErrorTest[db1, SELECT db1.t2.str1 as t2_str1
 FROM t1
 last join db2.t2 order by db2.t2.col1
 on t1.col1 = db2.t2.col1 and t1.col2 = db2.t2.col0;
, SQL parse error: Column Not found: db1.t2.str1](2)
com._4paradigm.hybridse.sdk.SqlEngineTest ‑ sqlMultipleDBErrorTest[db1, SELECT db2.t2.str1 as t2_str1
 FROM t1
 last join db2.t2 order by db2.t2.col1
 on t1.col1 = t2.col1 and t1.col2 = db2.t2.col0;
, SQL parse error: Column Not found: .t2.col1](3)
com._4paradigm.hybridse.sdk.SqlEngineTest ‑ sqlMultipleDBErrorTest[db1, SELECT t2.str1 as t2_str1
 FROM t1
 last join db2.t2 order by db2.t2.col1
 on t1.col1 = db2.t2.col1 and t1.col2 = db2.t2.col0;
, SQL parse error: Column Not found: .t2.str1](1)
com._4paradigm.hybridse.sdk.SqlEngineTest ‑ sqlMultipleDBErrorTest[null, SELECT db2.t2.str1 as t2_str1
 FROM t1
 last join db2.t2 order by db2.t2.col1
 on t1.col1 = db2.t2.col1 and t1.col2 = db2.t2.col0;
, SQL parse error: Fail to transform data provider op: table t1 not exists in database []](5)
com._4paradigm.hybridse.sdk.SqlEngineTest ‑ sqlWindowLastJoin[ SELECT sum(t1.col1) over w1 as sum_t1_col1, t2.str1 as t2_str1
 FROM t1
 last join t2 order by t2.col1
 on t1.col1 = t2.col1 and t1.col2 = t2.col0
 WINDOW w1 AS (
  PARTITION BY t1.col2 ORDER BY t1.col1
  ROWS_RANGE BETWEEN 3 PRECEDING AND CURRENT ROW
 ) limit 10;](1)

♻️ This comment has been updated with latest results.

@codecov
Copy link

codecov bot commented Feb 25, 2026

Codecov Report

✅ All modified and coverable lines are covered by tests.
✅ Project coverage is 75.34%. Comparing base (c73bd4b) to head (661348f).

Additional details and impacted files
@@             Coverage Diff              @@
##               main    #4089      +/-   ##
============================================
+ Coverage     75.32%   75.34%   +0.02%     
  Complexity      711      711              
============================================
  Files           763      763              
  Lines        143664   143664              
  Branches       2018     1537     -481     
============================================
+ Hits         108215   108245      +30     
+ Misses        35146    35116      -30     
  Partials        303      303              

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.
  • 📦 JS Bundle Analysis: Save yourself from yourself by tracking and limiting bundle sizes in JS merges.

@github-actions
Copy link
Contributor

github-actions bot commented Feb 25, 2026

HybridSE Mac Test Report

0 tests   0 ✅  0s ⏱️
0 suites  0 💤
0 files    0 ❌

Results for commit b5335a2.

♻️ This comment has been updated with latest results.

@github-actions
Copy link
Contributor

github-actions bot commented Feb 25, 2026

HybridSE Linux Test Report

20 449 tests   20 447 ✅  6m 9s ⏱️
   262 suites       2 💤
    69 files         0 ❌

Results for commit b5335a2.

♻️ This comment has been updated with latest results.

@github-actions
Copy link
Contributor

github-actions bot commented Feb 25, 2026

Linux Test Report

    60 files  ±0     253 suites  ±0   1h 53m 29s ⏱️ -8s
13 630 tests ±0  13 623 ✅ ±0  7 💤 ±0  0 ❌ ±0 
19 352 runs  ±0  19 345 ✅ ±0  7 💤 ±0  0 ❌ ±0 

Results for commit b5335a2. ± Comparison against base commit c73bd4b.

♻️ This comment has been updated with latest results.

Signed-off-by: dl239 <jeremydeng012@gmail.com>
@github-actions github-actions bot added build openmldb compiling and installing execute-engine hybridse sql engine labels Feb 25, 2026
Signed-off-by: dl239 <jeremydeng012@gmail.com>
@github-actions github-actions bot removed the execute-engine hybridse sql engine label Feb 25, 2026
Signed-off-by: dl239 <jeremydeng012@gmail.com>
Signed-off-by: dl239 <jeremydeng012@gmail.com>
Signed-off-by: dl239 <jeremydeng012@gmail.com>
Signed-off-by: dl239 <jeremydeng012@gmail.com>
Signed-off-by: dl239 <jeremydeng012@gmail.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

build openmldb compiling and installing workflow CICD related

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant