mirror of
https://github.com/GreptimeTeam/greptimedb.git
synced 2026-09-06 05:28:57 +00:00
* feat(ci): add aliyun ecs ephemeral runner path for query regression Signed-off-by: paomian <xpaomian@gmail.com> * fix: improve condition for query-regression job execution in workflow * feat: update Docker installation to use official repository and add GPG key handling * Refactor query regression runner setup and configuration - Removed deprecated PersistentVolumeClaim for build cache. - Introduced a new bootstrap script for setting up the ECS runner host. - Deleted obsolete Helm values files for runner configuration. - Updated the Aliyun ECS runner provisioning script to reflect new cache paths. - Modified GitHub workflows to use the new Aliyun ECS runner setup. - Adjusted documentation to clarify the new runner lifecycle and provisioning process. * fix: enhance runner service management during bootstrap process * fix: update alibabacloud_tea_openapi dependency version in metadata * feat: enhance ECS runner scripts with region_id and resource_group_id support * fix: move containerd content store to data root for improved storage management * feat: rename query-regression runner to ephemeral-github runner and update related scripts * fix: update sentinel polling method to use serial console output for improved reliability * fix: add environment variable checks for Alibaba Cloud access keys in ECS client * fix: improve error handling in GitHub API requests for better diagnostics * fix: improve cache disk detection logic for Aliyun ECS instances * fix: enhance cache disk waiting logic with detailed output and error handling * fix: update dependency version for alibabacloud_tea_openapi in teardown script * fix: enhance cache disk waiting logic for better compatibility and clarity * fix: enhance console output handling and add incremental logging during instance provisioning * fix: add PATH environment variable for runner jobs in service and provision script * fix: add machine telemetry sampling and logging during query regression jobs * fix: update query regression documentation and provision script for cache disk handling * fix: update SCCACHE_CACHE_SIZE validation to 10G for improved caching efficiency * fix: remove outdated cache size checks and cleanup logic for fresh system disk runs * fix: enhance instance deletion logic with region handling and console output export * fix: add swap file setup and OOM handling for ECS runner to improve stability * fix: update OOM handling and service restart logic for ECS runner to enhance stability * fix: increase system disk size to 100 GiB for cold double nightly builds to prevent ENOSPC errors * fix: increase system disk size to 150 GiB for ECS runner to prevent ENOSPC errors * fix: add keep_instance option to preserve ECS instance for post-mortem debugging * fix: disable unattended upgrades to prevent job cancellations during library updates * fix: reduce system disk size to 40 GiB for ECS runner to prevent ENOSPC errors * feat: Refactor Aliyun ECS runner provisioning and introduce nightly regression comparison - Update `aliyun-ecs-runner-provision.py` to remove cache disk handling, simplifying the provisioning process. - Introduce `query-regression-nightly-refs.py` to resolve and compare SHAs from successful nightly builds. - Create `query-regression-nightly.yml` workflow to trigger nightly comparisons based on successful builds. - Enhance `query-regression.yml` to include a `test-tooling` job for validating Python scripts before provisioning. - Update tests for the new nightly reference selection logic and refactor existing tests to align with the new caching strategy. - Modify documentation to reflect changes in caching and nightly comparison workflows. * fix: enhance runner image tool verification with detailed checks * fix: improve error handling in runner image tool verification * fix: update tool versions in ECS image and workflow for consistency * fix: correct typo in error message for unparseable ECS creation time * fix: update README and workflow files for query regression tests and image hygiene --------- Signed-off-by: paomian <xpaomian@gmail.com>
121 lines
4.3 KiB
Python
121 lines
4.3 KiB
Python
#!/usr/bin/env python3
|
|
# Copyright 2023 Greptime Team
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
|
|
"""Unit tests for consecutive Nightly Build SHA selection."""
|
|
|
|
import importlib.util
|
|
import sys
|
|
import unittest
|
|
from pathlib import Path
|
|
|
|
|
|
SCRIPTS_DIR = Path(__file__).parents[2] / ".github/scripts"
|
|
|
|
|
|
def load_module():
|
|
spec = importlib.util.spec_from_file_location(
|
|
"query_regression_nightly_refs_under_test",
|
|
SCRIPTS_DIR / "query-regression-nightly-refs.py",
|
|
)
|
|
assert spec is not None and spec.loader is not None
|
|
module = importlib.util.module_from_spec(spec)
|
|
sys.modules[spec.name] = module
|
|
spec.loader.exec_module(module)
|
|
return module
|
|
|
|
|
|
refs = load_module()
|
|
|
|
|
|
def run(*, run_id: int, sha: str, branch: str = "main", created_at: str = "2026-08-24T00:00:00Z"):
|
|
return refs.WorkflowRun(
|
|
id=run_id,
|
|
head_sha=sha,
|
|
head_branch=branch,
|
|
html_url=f"https://github.com/example/run/{run_id}",
|
|
created_at=created_at,
|
|
conclusion="success",
|
|
event="schedule",
|
|
)
|
|
|
|
|
|
class SelectNightlyRefsTest(unittest.TestCase):
|
|
def test_picks_newest_and_previous_on_same_branch(self) -> None:
|
|
pair = refs.select_base_and_candidate(
|
|
[
|
|
run(run_id=3, sha="ccc", created_at="2026-08-22T00:00:00Z"),
|
|
run(run_id=2, sha="bbb", created_at="2026-08-21T00:00:00Z"),
|
|
run(run_id=1, sha="aaa", created_at="2026-08-20T00:00:00Z"),
|
|
]
|
|
)
|
|
self.assertFalse(pair.skip)
|
|
assert pair.candidate is not None and pair.base is not None
|
|
self.assertEqual(pair.candidate.head_sha, "ccc")
|
|
self.assertEqual(pair.base.head_sha, "bbb")
|
|
|
|
def test_candidate_run_id_uses_that_run_and_the_next_older(self) -> None:
|
|
pair = refs.select_base_and_candidate(
|
|
[
|
|
run(run_id=3, sha="ccc", created_at="2026-08-22T00:00:00Z"),
|
|
run(run_id=2, sha="bbb", created_at="2026-08-21T00:00:00Z"),
|
|
run(run_id=1, sha="aaa", created_at="2026-08-20T00:00:00Z"),
|
|
],
|
|
candidate_run_id=2,
|
|
)
|
|
self.assertFalse(pair.skip)
|
|
assert pair.candidate is not None and pair.base is not None
|
|
self.assertEqual(pair.candidate.id, 2)
|
|
self.assertEqual(pair.base.id, 1)
|
|
|
|
def test_skips_when_consecutive_nightlies_share_a_sha(self) -> None:
|
|
pair = refs.select_base_and_candidate(
|
|
[
|
|
run(run_id=2, sha="same", created_at="2026-08-22T00:00:00Z"),
|
|
run(run_id=1, sha="same", created_at="2026-08-21T00:00:00Z"),
|
|
]
|
|
)
|
|
self.assertTrue(pair.skip)
|
|
self.assertIn("matches candidate", pair.reason)
|
|
|
|
def test_skips_other_branches_when_picking_previous(self) -> None:
|
|
pair = refs.select_base_and_candidate(
|
|
[
|
|
run(run_id=3, sha="ccc", branch="main", created_at="2026-08-22T00:00:00Z"),
|
|
run(run_id=2, sha="other", branch="feat", created_at="2026-08-21T12:00:00Z"),
|
|
run(run_id=1, sha="aaa", branch="main", created_at="2026-08-21T00:00:00Z"),
|
|
]
|
|
)
|
|
self.assertFalse(pair.skip)
|
|
assert pair.base is not None
|
|
self.assertEqual(pair.base.head_sha, "aaa")
|
|
|
|
def test_skips_when_only_one_nightly_exists(self) -> None:
|
|
pair = refs.select_base_and_candidate(
|
|
[run(run_id=1, sha="aaa")],
|
|
)
|
|
self.assertTrue(pair.skip)
|
|
self.assertIn("no previous", pair.reason)
|
|
|
|
def test_explicit_refs_bypass_github(self) -> None:
|
|
pair = refs.override_pair("base-sha", "cand-sha")
|
|
self.assertFalse(pair.skip)
|
|
assert pair.base is not None and pair.candidate is not None
|
|
self.assertEqual(pair.base.head_sha, "base-sha")
|
|
self.assertEqual(pair.candidate.head_sha, "cand-sha")
|
|
|
|
|
|
if __name__ == "__main__":
|
|
unittest.main()
|