2021-09-15 16:32:17 +00:00
|
|
|
#!/usr/bin/env python3
|
2022-01-04 13:50:01 +00:00
|
|
|
import argparse
|
2021-09-15 17:01:16 +00:00
|
|
|
import json
|
2022-01-04 13:50:01 +00:00
|
|
|
import logging
|
2022-02-10 16:34:55 +00:00
|
|
|
import platform
|
2022-01-04 13:50:01 +00:00
|
|
|
import subprocess
|
|
|
|
import time
|
2022-03-29 12:41:47 +00:00
|
|
|
import sys
|
2023-01-03 14:23:19 +00:00
|
|
|
from pathlib import Path
|
2023-09-08 06:42:56 +00:00
|
|
|
from typing import Any, List, Optional, Set, Tuple, Union
|
2021-12-23 10:18:08 +00:00
|
|
|
|
2022-01-04 13:50:01 +00:00
|
|
|
from github import Github
|
2021-11-26 14:00:09 +00:00
|
|
|
|
2022-06-08 12:25:41 +00:00
|
|
|
from clickhouse_helper import ClickHouseHelper, prepare_tests_results_for_clickhouse
|
2023-04-18 23:03:48 +00:00
|
|
|
from commit_status_helper import format_description, get_commit, post_commit_status
|
2023-09-27 11:39:09 +00:00
|
|
|
from env_helper import REPO_COPY, RUNNER_TEMP, GITHUB_RUN_URL
|
2021-10-20 11:48:27 +00:00
|
|
|
from get_robot_token import get_best_robot_token, get_parameter_from_ssm
|
2022-06-08 12:25:41 +00:00
|
|
|
from pr_info import PRInfo
|
2023-01-03 14:23:19 +00:00
|
|
|
from report import TestResults, TestResult
|
2022-06-08 12:25:41 +00:00
|
|
|
from s3_helper import S3Helper
|
2021-11-19 14:47:04 +00:00
|
|
|
from stopwatch import Stopwatch
|
2023-02-09 19:36:39 +00:00
|
|
|
from tee_popen import TeePopen
|
2022-06-08 12:25:41 +00:00
|
|
|
from upload_result_helper import upload_results
|
2023-09-08 06:42:56 +00:00
|
|
|
from docker_images_helper import ImagesDict, IMAGES_FILE_PATH, get_images_dict
|
2021-09-15 16:32:17 +00:00
|
|
|
|
2022-07-21 11:10:22 +00:00
|
|
|
NAME = "Push to Dockerhub"
|
2023-09-27 11:39:09 +00:00
|
|
|
TEMP_PATH = Path(RUNNER_TEMP) / "docker_images_check"
|
|
|
|
TEMP_PATH.mkdir(parents=True, exist_ok=True)
|
2022-01-04 13:50:01 +00:00
|
|
|
|
2021-12-21 16:32:04 +00:00
|
|
|
|
2022-01-18 20:09:39 +00:00
|
|
|
class DockerImage:
|
|
|
|
def __init__(
|
|
|
|
self,
|
|
|
|
path: str,
|
|
|
|
repo: str,
|
2022-02-10 16:34:55 +00:00
|
|
|
only_amd64: bool,
|
2022-01-18 20:09:39 +00:00
|
|
|
parent: Optional["DockerImage"] = None,
|
2023-09-27 11:39:09 +00:00
|
|
|
gh_repo: str = REPO_COPY,
|
2022-01-18 20:09:39 +00:00
|
|
|
):
|
2023-09-27 11:39:09 +00:00
|
|
|
assert not path.startswith("/")
|
2022-01-18 20:09:39 +00:00
|
|
|
self.path = path
|
2023-09-27 11:39:09 +00:00
|
|
|
self.full_path = Path(gh_repo) / path
|
2022-01-18 20:09:39 +00:00
|
|
|
self.repo = repo
|
2022-02-10 16:34:55 +00:00
|
|
|
self.only_amd64 = only_amd64
|
2022-01-18 20:09:39 +00:00
|
|
|
self.parent = parent
|
|
|
|
self.built = False
|
|
|
|
|
2022-01-25 11:09:10 +00:00
|
|
|
def __eq__(self, other) -> bool: # type: ignore
|
2022-01-18 20:09:39 +00:00
|
|
|
"""Is used to check if DockerImage is in a set or not"""
|
2022-02-10 16:34:55 +00:00
|
|
|
return (
|
|
|
|
self.path == other.path
|
|
|
|
and self.repo == self.repo
|
|
|
|
and self.only_amd64 == other.only_amd64
|
|
|
|
)
|
2022-01-25 11:09:10 +00:00
|
|
|
|
2022-11-10 15:57:01 +00:00
|
|
|
def __lt__(self, other: Any) -> bool:
|
2022-01-25 11:09:10 +00:00
|
|
|
if not isinstance(other, DockerImage):
|
|
|
|
return False
|
|
|
|
if self.parent and not other.parent:
|
|
|
|
return False
|
|
|
|
if not self.parent and other.parent:
|
|
|
|
return True
|
|
|
|
if self.path < other.path:
|
|
|
|
return True
|
|
|
|
if self.repo < other.repo:
|
|
|
|
return True
|
|
|
|
return False
|
2022-01-18 20:09:39 +00:00
|
|
|
|
|
|
|
def __hash__(self):
|
|
|
|
return hash(self.path)
|
|
|
|
|
|
|
|
def __str__(self):
|
|
|
|
return self.repo
|
|
|
|
|
|
|
|
def __repr__(self):
|
2022-01-25 11:09:10 +00:00
|
|
|
return f"DockerImage(path={self.path},repo={self.repo},parent={self.parent})"
|
2022-01-18 20:09:39 +00:00
|
|
|
|
|
|
|
|
2022-02-10 10:27:30 +00:00
|
|
|
def get_changed_docker_images(
|
|
|
|
pr_info: PRInfo, images_dict: ImagesDict
|
|
|
|
) -> Set[DockerImage]:
|
2021-09-15 16:32:17 +00:00
|
|
|
if not images_dict:
|
2022-01-18 20:09:39 +00:00
|
|
|
return set()
|
2021-09-15 16:32:17 +00:00
|
|
|
|
|
|
|
files_changed = pr_info.changed_files
|
|
|
|
|
2021-12-21 16:32:04 +00:00
|
|
|
logging.info(
|
|
|
|
"Changed files for PR %s @ %s: %s",
|
|
|
|
pr_info.number,
|
|
|
|
pr_info.sha,
|
|
|
|
str(files_changed),
|
|
|
|
)
|
2021-09-15 16:32:17 +00:00
|
|
|
|
|
|
|
changed_images = []
|
|
|
|
|
|
|
|
for dockerfile_dir, image_description in images_dict.items():
|
2021-11-23 09:43:49 +00:00
|
|
|
for f in files_changed:
|
2023-08-10 12:29:25 +00:00
|
|
|
if f.startswith(dockerfile_dir):
|
2022-01-18 20:09:39 +00:00
|
|
|
name = image_description["name"]
|
2022-02-10 16:34:55 +00:00
|
|
|
only_amd64 = image_description.get("only_amd64", False)
|
2021-11-23 09:43:49 +00:00
|
|
|
logging.info(
|
2021-12-21 16:32:04 +00:00
|
|
|
"Found changed file '%s' which affects "
|
|
|
|
"docker image '%s' with path '%s'",
|
|
|
|
f,
|
2022-01-18 20:09:39 +00:00
|
|
|
name,
|
2021-12-21 16:32:04 +00:00
|
|
|
dockerfile_dir,
|
|
|
|
)
|
2022-02-10 16:34:55 +00:00
|
|
|
changed_images.append(DockerImage(dockerfile_dir, name, only_amd64))
|
2021-11-23 09:43:49 +00:00
|
|
|
break
|
2021-09-15 16:32:17 +00:00
|
|
|
|
|
|
|
# The order is important: dependents should go later than bases, so that
|
|
|
|
# they are built with updated base versions.
|
|
|
|
index = 0
|
|
|
|
while index < len(changed_images):
|
|
|
|
image = changed_images[index]
|
2022-01-18 20:09:39 +00:00
|
|
|
for dependent in images_dict[image.path]["dependent"]:
|
2021-09-15 16:32:17 +00:00
|
|
|
logging.info(
|
2021-12-21 16:32:04 +00:00
|
|
|
"Marking docker image '%s' as changed because it "
|
|
|
|
"depends on changed docker image '%s'",
|
|
|
|
dependent,
|
|
|
|
image,
|
|
|
|
)
|
2022-02-10 16:34:55 +00:00
|
|
|
name = images_dict[dependent]["name"]
|
|
|
|
only_amd64 = images_dict[dependent].get("only_amd64", False)
|
|
|
|
changed_images.append(DockerImage(dependent, name, only_amd64, image))
|
2021-09-15 16:32:17 +00:00
|
|
|
index += 1
|
2022-01-04 13:50:01 +00:00
|
|
|
if index > 5 * len(images_dict):
|
2021-09-15 16:32:17 +00:00
|
|
|
# Sanity check to prevent infinite loop.
|
2021-12-21 16:32:04 +00:00
|
|
|
raise RuntimeError(
|
|
|
|
f"Too many changed docker images, this is a bug. {changed_images}"
|
|
|
|
)
|
2021-09-15 16:32:17 +00:00
|
|
|
|
2022-01-18 20:09:39 +00:00
|
|
|
# With reversed changed_images set will use images with parents first, and
|
|
|
|
# images without parents then
|
|
|
|
result = set(reversed(changed_images))
|
2021-12-21 16:32:04 +00:00
|
|
|
logging.info(
|
|
|
|
"Changed docker images for PR %s @ %s: '%s'",
|
|
|
|
pr_info.number,
|
|
|
|
pr_info.sha,
|
|
|
|
result,
|
|
|
|
)
|
2022-01-04 13:50:01 +00:00
|
|
|
return result
|
2021-09-15 16:32:17 +00:00
|
|
|
|
2021-12-21 16:32:04 +00:00
|
|
|
|
2022-01-18 20:09:39 +00:00
|
|
|
def gen_versions(
|
|
|
|
pr_info: PRInfo, suffix: Optional[str]
|
|
|
|
) -> Tuple[List[str], Union[str, List[str]]]:
|
|
|
|
pr_commit_version = str(pr_info.number) + "-" + pr_info.sha
|
|
|
|
# The order is important, PR number is used as cache during the build
|
|
|
|
versions = [str(pr_info.number), pr_commit_version]
|
2023-09-06 18:57:17 +00:00
|
|
|
result_version = pr_commit_version # type: Union[str, List[str]]
|
2022-09-26 10:52:12 +00:00
|
|
|
if pr_info.number == 0 and pr_info.base_ref == "master":
|
2022-01-18 20:09:39 +00:00
|
|
|
# First get the latest for cache
|
|
|
|
versions.insert(0, "latest")
|
|
|
|
|
|
|
|
if suffix:
|
|
|
|
# We should build architecture specific images separately and merge a
|
|
|
|
# manifest lately in a different script
|
|
|
|
versions = [f"{v}-{suffix}" for v in versions]
|
|
|
|
# changed_images_{suffix}.json should contain all changed images
|
|
|
|
result_version = versions
|
|
|
|
|
|
|
|
return versions, result_version
|
|
|
|
|
|
|
|
|
2022-02-10 16:34:55 +00:00
|
|
|
def build_and_push_dummy_image(
|
|
|
|
image: DockerImage,
|
|
|
|
version_string: str,
|
|
|
|
push: bool,
|
2023-01-03 14:23:19 +00:00
|
|
|
) -> Tuple[bool, Path]:
|
2022-02-10 16:34:55 +00:00
|
|
|
dummy_source = "ubuntu:20.04"
|
|
|
|
logging.info("Building docker image %s as %s", image.repo, dummy_source)
|
2023-01-03 14:23:19 +00:00
|
|
|
build_log = (
|
|
|
|
Path(TEMP_PATH)
|
|
|
|
/ f"build_and_push_log_{image.repo.replace('/', '_')}_{version_string}.log"
|
2022-02-10 16:34:55 +00:00
|
|
|
)
|
2023-02-09 19:36:39 +00:00
|
|
|
cmd = (
|
|
|
|
f"docker pull {dummy_source}; "
|
|
|
|
f"docker tag {dummy_source} {image.repo}:{version_string}; "
|
|
|
|
)
|
|
|
|
if push:
|
|
|
|
cmd += f"docker push {image.repo}:{version_string}"
|
2022-02-10 16:34:55 +00:00
|
|
|
|
2023-02-09 19:36:39 +00:00
|
|
|
logging.info("Docker command to run: %s", cmd)
|
|
|
|
with TeePopen(cmd, build_log) as proc:
|
|
|
|
retcode = proc.wait()
|
2022-02-10 16:34:55 +00:00
|
|
|
|
2023-02-09 19:36:39 +00:00
|
|
|
if retcode != 0:
|
|
|
|
return False, build_log
|
2022-02-10 16:34:55 +00:00
|
|
|
|
|
|
|
logging.info("Processing of %s successfully finished", image.repo)
|
|
|
|
return True, build_log
|
|
|
|
|
|
|
|
|
2021-12-22 10:38:27 +00:00
|
|
|
def build_and_push_one_image(
|
2022-01-18 20:09:39 +00:00
|
|
|
image: DockerImage,
|
|
|
|
version_string: str,
|
2023-02-09 20:18:01 +00:00
|
|
|
additional_cache: List[str],
|
2022-01-18 20:09:39 +00:00
|
|
|
push: bool,
|
|
|
|
child: bool,
|
2023-01-03 14:23:19 +00:00
|
|
|
) -> Tuple[bool, Path]:
|
2022-02-10 16:34:55 +00:00
|
|
|
if image.only_amd64 and platform.machine() not in ["amd64", "x86_64"]:
|
|
|
|
return build_and_push_dummy_image(image, version_string, push)
|
2021-12-21 16:32:04 +00:00
|
|
|
logging.info(
|
|
|
|
"Building docker image %s with version %s from path %s",
|
2022-01-18 20:09:39 +00:00
|
|
|
image.repo,
|
2021-12-21 16:32:04 +00:00
|
|
|
version_string,
|
2022-01-18 20:09:39 +00:00
|
|
|
image.full_path,
|
2021-12-21 16:32:04 +00:00
|
|
|
)
|
2023-01-03 14:23:19 +00:00
|
|
|
build_log = (
|
|
|
|
Path(TEMP_PATH)
|
|
|
|
/ f"build_and_push_log_{image.repo.replace('/', '_')}_{version_string}.log"
|
2022-01-04 13:50:01 +00:00
|
|
|
)
|
|
|
|
push_arg = ""
|
|
|
|
if push:
|
|
|
|
push_arg = "--push "
|
|
|
|
|
2022-01-18 20:09:39 +00:00
|
|
|
from_tag_arg = ""
|
|
|
|
if child:
|
|
|
|
from_tag_arg = f"--build-arg FROM_TAG={version_string} "
|
|
|
|
|
2022-07-01 14:45:00 +00:00
|
|
|
cache_from = (
|
|
|
|
f"--cache-from type=registry,ref={image.repo}:{version_string} "
|
|
|
|
f"--cache-from type=registry,ref={image.repo}:latest"
|
|
|
|
)
|
2023-02-09 20:18:01 +00:00
|
|
|
for tag in additional_cache:
|
|
|
|
assert tag
|
|
|
|
cache_from = f"{cache_from} --cache-from type=registry,ref={image.repo}:{tag}"
|
2022-07-01 14:45:00 +00:00
|
|
|
|
2023-02-09 19:36:39 +00:00
|
|
|
cmd = (
|
|
|
|
"docker buildx build --builder default "
|
|
|
|
f"--label build-url={GITHUB_RUN_URL} "
|
|
|
|
f"{from_tag_arg}"
|
|
|
|
# A hack to invalidate cache, grep for it in docker/ dir
|
|
|
|
f"--build-arg CACHE_INVALIDATOR={GITHUB_RUN_URL} "
|
|
|
|
f"--tag {image.repo}:{version_string} "
|
|
|
|
f"{cache_from} "
|
|
|
|
f"--cache-to type=inline,mode=max "
|
|
|
|
f"{push_arg}"
|
2023-08-10 12:29:25 +00:00
|
|
|
f"--progress plain {image.full_path}"
|
2023-02-09 19:36:39 +00:00
|
|
|
)
|
|
|
|
logging.info("Docker command to run: %s", cmd)
|
|
|
|
with TeePopen(cmd, build_log) as proc:
|
|
|
|
retcode = proc.wait()
|
2022-01-18 20:09:39 +00:00
|
|
|
|
2023-02-09 19:36:39 +00:00
|
|
|
if retcode != 0:
|
|
|
|
return False, build_log
|
2021-09-15 16:32:17 +00:00
|
|
|
|
2022-01-18 20:09:39 +00:00
|
|
|
logging.info("Processing of %s successfully finished", image.repo)
|
2021-12-23 10:18:08 +00:00
|
|
|
return True, build_log
|
2021-09-15 16:32:17 +00:00
|
|
|
|
2021-12-21 16:32:04 +00:00
|
|
|
|
2021-12-22 10:38:27 +00:00
|
|
|
def process_single_image(
|
2022-01-18 20:09:39 +00:00
|
|
|
image: DockerImage,
|
|
|
|
versions: List[str],
|
2023-02-09 20:18:01 +00:00
|
|
|
additional_cache: List[str],
|
2022-01-18 20:09:39 +00:00
|
|
|
push: bool,
|
|
|
|
child: bool,
|
2023-01-03 14:23:19 +00:00
|
|
|
) -> TestResults:
|
2021-12-21 16:32:04 +00:00
|
|
|
logging.info("Image will be pushed with versions %s", ", ".join(versions))
|
2023-01-03 14:23:19 +00:00
|
|
|
results = [] # type: TestResults
|
2021-09-15 16:32:17 +00:00
|
|
|
for ver in versions:
|
2023-01-03 14:23:19 +00:00
|
|
|
stopwatch = Stopwatch()
|
2021-09-15 16:32:17 +00:00
|
|
|
for i in range(5):
|
2022-07-01 14:45:00 +00:00
|
|
|
success, build_log = build_and_push_one_image(
|
|
|
|
image, ver, additional_cache, push, child
|
|
|
|
)
|
2021-09-15 16:32:17 +00:00
|
|
|
if success:
|
2023-01-03 14:23:19 +00:00
|
|
|
results.append(
|
|
|
|
TestResult(
|
|
|
|
image.repo + ":" + ver,
|
|
|
|
"OK",
|
|
|
|
stopwatch.duration_seconds,
|
|
|
|
[build_log],
|
|
|
|
)
|
|
|
|
)
|
2021-09-15 16:32:17 +00:00
|
|
|
break
|
2021-12-21 16:32:04 +00:00
|
|
|
logging.info(
|
|
|
|
"Got error will retry %s time and sleep for %s seconds", i, i * 5
|
|
|
|
)
|
2021-09-15 16:32:17 +00:00
|
|
|
time.sleep(i * 5)
|
|
|
|
else:
|
2023-01-03 14:23:19 +00:00
|
|
|
results.append(
|
|
|
|
TestResult(
|
|
|
|
image.repo + ":" + ver,
|
|
|
|
"FAIL",
|
|
|
|
stopwatch.duration_seconds,
|
|
|
|
[build_log],
|
|
|
|
)
|
|
|
|
)
|
2021-09-15 16:32:17 +00:00
|
|
|
|
|
|
|
logging.info("Processing finished")
|
2022-01-18 20:09:39 +00:00
|
|
|
image.built = True
|
2023-01-03 14:23:19 +00:00
|
|
|
return results
|
2022-01-18 20:09:39 +00:00
|
|
|
|
|
|
|
|
|
|
|
def process_image_with_parents(
|
2022-07-01 14:45:00 +00:00
|
|
|
image: DockerImage,
|
|
|
|
versions: List[str],
|
2023-02-09 20:18:01 +00:00
|
|
|
additional_cache: List[str],
|
2022-07-01 14:45:00 +00:00
|
|
|
push: bool,
|
|
|
|
child: bool = False,
|
2023-01-03 14:23:19 +00:00
|
|
|
) -> TestResults:
|
|
|
|
results = [] # type: TestResults
|
2022-01-18 20:09:39 +00:00
|
|
|
if image.built:
|
2023-01-03 14:23:19 +00:00
|
|
|
return results
|
2022-01-18 20:09:39 +00:00
|
|
|
|
|
|
|
if image.parent is not None:
|
2023-01-03 14:23:19 +00:00
|
|
|
results += process_image_with_parents(
|
2022-07-01 14:45:00 +00:00
|
|
|
image.parent, versions, additional_cache, push, False
|
|
|
|
)
|
2022-01-18 20:09:39 +00:00
|
|
|
child = True
|
|
|
|
|
2023-01-03 14:23:19 +00:00
|
|
|
results += process_single_image(image, versions, additional_cache, push, child)
|
|
|
|
return results
|
2021-09-15 16:32:17 +00:00
|
|
|
|
2021-12-21 16:32:04 +00:00
|
|
|
|
2022-01-04 13:50:01 +00:00
|
|
|
def parse_args() -> argparse.Namespace:
|
|
|
|
parser = argparse.ArgumentParser(
|
|
|
|
formatter_class=argparse.ArgumentDefaultsHelpFormatter,
|
|
|
|
description="Program to build changed or given docker images with all "
|
|
|
|
"dependant images. Example for local running: "
|
|
|
|
"python docker_images_check.py --no-push-images --no-reports "
|
|
|
|
"--image-path docker/packager/binary",
|
|
|
|
)
|
|
|
|
|
|
|
|
parser.add_argument(
|
|
|
|
"--suffix",
|
|
|
|
type=str,
|
|
|
|
help="suffix for all built images tags and resulting json file; the parameter "
|
|
|
|
"significantly changes the script behavior, e.g. changed_images.json is called "
|
|
|
|
"changed_images_{suffix}.json and contains list of all tags",
|
|
|
|
)
|
|
|
|
parser.add_argument(
|
|
|
|
"--repo",
|
|
|
|
type=str,
|
|
|
|
default="clickhouse",
|
|
|
|
help="docker hub repository prefix",
|
|
|
|
)
|
2022-02-10 10:27:30 +00:00
|
|
|
parser.add_argument(
|
|
|
|
"--all",
|
|
|
|
action="store_true",
|
|
|
|
help="rebuild all images",
|
|
|
|
)
|
2022-01-04 13:50:01 +00:00
|
|
|
parser.add_argument(
|
|
|
|
"--image-path",
|
|
|
|
type=str,
|
2022-02-10 10:27:30 +00:00
|
|
|
nargs="*",
|
2022-01-04 13:50:01 +00:00
|
|
|
help="list of image paths to build instead of using pr_info + diff URL, "
|
|
|
|
"e.g. 'docker/packager/binary'",
|
|
|
|
)
|
2022-02-21 11:44:37 +00:00
|
|
|
parser.add_argument("--reports", default=True, help=argparse.SUPPRESS)
|
2022-01-04 13:50:01 +00:00
|
|
|
parser.add_argument(
|
|
|
|
"--no-reports",
|
2022-02-21 11:44:37 +00:00
|
|
|
action="store_false",
|
|
|
|
dest="reports",
|
|
|
|
default=argparse.SUPPRESS,
|
2022-01-04 13:50:01 +00:00
|
|
|
help="don't push reports to S3 and github",
|
|
|
|
)
|
2022-02-21 11:44:37 +00:00
|
|
|
parser.add_argument("--push", default=True, help=argparse.SUPPRESS)
|
2022-01-04 13:50:01 +00:00
|
|
|
parser.add_argument(
|
|
|
|
"--no-push-images",
|
2022-02-21 11:44:37 +00:00
|
|
|
action="store_false",
|
|
|
|
dest="push",
|
|
|
|
default=argparse.SUPPRESS,
|
2022-01-04 13:50:01 +00:00
|
|
|
help="don't push images to docker hub",
|
|
|
|
)
|
|
|
|
|
|
|
|
return parser.parse_args()
|
2021-11-19 14:47:04 +00:00
|
|
|
|
2022-01-04 13:50:01 +00:00
|
|
|
|
|
|
|
def main():
|
|
|
|
logging.basicConfig(level=logging.INFO)
|
2021-11-19 14:47:04 +00:00
|
|
|
stopwatch = Stopwatch()
|
|
|
|
|
2022-01-04 13:50:01 +00:00
|
|
|
args = parse_args()
|
|
|
|
if args.suffix:
|
|
|
|
global NAME
|
|
|
|
NAME += f" {args.suffix}"
|
2023-09-27 11:39:09 +00:00
|
|
|
changed_json = TEMP_PATH / f"changed_images_{args.suffix}.json"
|
2022-01-04 13:50:01 +00:00
|
|
|
else:
|
2023-09-27 11:39:09 +00:00
|
|
|
changed_json = TEMP_PATH / "changed_images.json"
|
2022-01-04 13:50:01 +00:00
|
|
|
|
2022-02-21 11:44:37 +00:00
|
|
|
if args.push:
|
2022-01-13 13:12:48 +00:00
|
|
|
subprocess.check_output( # pylint: disable=unexpected-keyword-arg
|
|
|
|
"docker login --username 'robotclickhouse' --password-stdin",
|
|
|
|
input=get_parameter_from_ssm("dockerhub_robot_password"),
|
|
|
|
encoding="utf-8",
|
2022-01-04 13:50:01 +00:00
|
|
|
shell=True,
|
|
|
|
)
|
|
|
|
|
2023-09-27 11:39:09 +00:00
|
|
|
images_dict = get_images_dict(Path(REPO_COPY), IMAGES_FILE_PATH)
|
2022-02-10 10:27:30 +00:00
|
|
|
|
2022-03-31 08:33:57 +00:00
|
|
|
pr_info = PRInfo()
|
2022-02-10 10:27:30 +00:00
|
|
|
if args.all:
|
|
|
|
pr_info.changed_files = set(images_dict.keys())
|
|
|
|
elif args.image_path:
|
2022-01-04 13:50:01 +00:00
|
|
|
pr_info.changed_files = set(i for i in args.image_path)
|
|
|
|
else:
|
2022-05-23 11:10:08 +00:00
|
|
|
try:
|
|
|
|
pr_info.fetch_changed_files()
|
|
|
|
except TypeError:
|
|
|
|
# If the event does not contain diff, nothing will be built
|
|
|
|
pass
|
2021-09-15 18:48:06 +00:00
|
|
|
|
2022-02-10 10:27:30 +00:00
|
|
|
changed_images = get_changed_docker_images(pr_info, images_dict)
|
2022-03-28 22:23:07 +00:00
|
|
|
if changed_images:
|
|
|
|
logging.info(
|
|
|
|
"Has changed images: %s", ", ".join([im.path for im in changed_images])
|
|
|
|
)
|
2021-09-15 16:32:17 +00:00
|
|
|
|
2022-01-18 20:09:39 +00:00
|
|
|
image_versions, result_version = gen_versions(pr_info, args.suffix)
|
2021-09-15 16:32:17 +00:00
|
|
|
|
2021-09-15 18:26:48 +00:00
|
|
|
result_images = {}
|
2023-01-03 14:23:19 +00:00
|
|
|
test_results = [] # type: TestResults
|
2023-02-09 20:18:01 +00:00
|
|
|
additional_cache = [] # type: List[str]
|
|
|
|
if pr_info.release_pr:
|
|
|
|
logging.info("Use %s as additional cache tag", pr_info.release_pr)
|
|
|
|
additional_cache.append(str(pr_info.release_pr))
|
|
|
|
if pr_info.merged_pr:
|
|
|
|
logging.info("Use %s as additional cache tag", pr_info.merged_pr)
|
|
|
|
additional_cache.append(str(pr_info.merged_pr))
|
2022-11-25 12:58:27 +00:00
|
|
|
|
2022-01-18 20:09:39 +00:00
|
|
|
for image in changed_images:
|
2022-07-01 14:45:00 +00:00
|
|
|
# If we are in backport PR, then pr_info.release_pr is defined
|
|
|
|
# We use it as tag to reduce rebuilding time
|
2023-01-03 14:23:19 +00:00
|
|
|
test_results += process_image_with_parents(
|
2022-11-25 12:58:27 +00:00
|
|
|
image, image_versions, additional_cache, args.push
|
2021-12-21 16:32:04 +00:00
|
|
|
)
|
2022-01-18 20:09:39 +00:00
|
|
|
result_images[image.repo] = result_version
|
2021-09-15 16:32:17 +00:00
|
|
|
|
2021-10-27 07:03:23 +00:00
|
|
|
if changed_images:
|
2022-01-18 20:09:39 +00:00
|
|
|
description = "Updated " + ",".join([im.repo for im in changed_images])
|
2021-09-15 16:32:17 +00:00
|
|
|
else:
|
|
|
|
description = "Nothing to update"
|
|
|
|
|
2023-02-23 14:21:19 +00:00
|
|
|
description = format_description(description)
|
2021-09-15 16:32:17 +00:00
|
|
|
|
2022-01-18 21:28:26 +00:00
|
|
|
with open(changed_json, "w", encoding="utf-8") as images_file:
|
2023-09-27 11:39:09 +00:00
|
|
|
logging.info("Saving changed images file %s", changed_json)
|
2022-01-04 13:50:01 +00:00
|
|
|
json.dump(result_images, images_file)
|
|
|
|
|
2022-08-11 13:01:32 +00:00
|
|
|
s3_helper = S3Helper()
|
2021-09-15 16:32:17 +00:00
|
|
|
|
2023-01-03 14:23:19 +00:00
|
|
|
status = "success"
|
|
|
|
if [r for r in test_results if r.status != "OK"]:
|
|
|
|
status = "failure"
|
2021-09-15 16:32:17 +00:00
|
|
|
|
2021-11-12 11:39:00 +00:00
|
|
|
url = upload_results(s3_helper, pr_info.number, pr_info.sha, test_results, [], NAME)
|
2021-09-15 16:32:17 +00:00
|
|
|
|
2022-01-18 21:28:26 +00:00
|
|
|
print(f"::notice ::Report url: {url}")
|
2022-01-04 13:50:01 +00:00
|
|
|
|
2022-02-21 11:44:37 +00:00
|
|
|
if not args.reports:
|
2022-01-04 13:50:01 +00:00
|
|
|
return
|
|
|
|
|
2022-07-30 05:07:22 +00:00
|
|
|
gh = Github(get_best_robot_token(), per_page=100)
|
2023-04-18 23:03:48 +00:00
|
|
|
commit = get_commit(gh, pr_info.sha)
|
|
|
|
post_commit_status(commit, status, url, description, NAME, pr_info)
|
2021-12-21 16:32:04 +00:00
|
|
|
|
|
|
|
prepared_events = prepare_tests_results_for_clickhouse(
|
|
|
|
pr_info,
|
|
|
|
test_results,
|
|
|
|
status,
|
|
|
|
stopwatch.duration_seconds,
|
|
|
|
stopwatch.start_time_str,
|
|
|
|
url,
|
|
|
|
NAME,
|
|
|
|
)
|
2022-01-04 13:50:01 +00:00
|
|
|
ch_helper = ClickHouseHelper()
|
2022-03-29 19:06:50 +00:00
|
|
|
ch_helper.insert_events_into(db="default", table="checks", events=prepared_events)
|
2022-01-04 13:50:01 +00:00
|
|
|
|
2023-01-03 14:23:19 +00:00
|
|
|
if status == "failure":
|
2022-03-29 12:41:47 +00:00
|
|
|
sys.exit(1)
|
2022-01-04 13:50:01 +00:00
|
|
|
|
2022-03-29 16:23:18 +00:00
|
|
|
|
2022-01-04 13:50:01 +00:00
|
|
|
if __name__ == "__main__":
|
|
|
|
main()
|