[2026-07-15 17:56:39,031][ INFO][PID:376984] Marking build as starting [2026-07-15 17:56:39,088][ INFO][PID:376984] Checking for cancel request [2026-07-15 17:56:39,090][ INFO][PID:376984] VM allocation process starts [2026-07-15 17:56:39,145][ INFO][PID:376984] Trying to allocate VM: ResallocHost, ticket_id=3916029, requested_tags=['arch_x86_64', 'copr_builder'] [2026-07-15 17:56:44,150][ INFO][PID:376984] Checking for cancel request [2026-07-15 17:56:49,174][ INFO][PID:376984] Checking for cancel request [2026-07-15 17:56:54,189][ INFO][PID:376984] Checking for cancel request [2026-07-15 17:56:59,196][ INFO][PID:376984] Checking for cancel request [2026-07-15 17:57:04,217][ INFO][PID:376984] Checking for cancel request [2026-07-15 17:57:09,224][ INFO][PID:376984] Checking for cancel request [2026-07-15 17:57:14,278][ INFO][PID:376984] Checking for cancel request [2026-07-15 17:57:19,279][ INFO][PID:376984] Checking for cancel request [2026-07-15 17:57:24,282][ INFO][PID:376984] Checking for cancel request [2026-07-15 17:57:27,283][ INFO][PID:376984] Allocated host ResallocHost, ticket_id=3916029, hostname=54.161.41.65, name=aws_x86_64_spot_prod_13098407_20260715_175602, requested_tags=['arch_x86_64', 'copr_builder'] [2026-07-15 17:57:27,284][ INFO][PID:376984] Allocating ssh connection to builder [2026-07-15 17:57:27,285][ INFO][PID:376984] Checking that builder machine is OK [2026-07-15 17:57:27,593][ INFO][PID:376984] Installed copr-rpmbuild version: 1.8 [2026-07-15 17:57:27,594][ INFO][PID:376984] Running remote command: copr-builder-ready srpm-builds [2026-07-15 17:57:27,789][ INFO][PID:376984] Red Hat subscription not needed for srpm-builds Builder is ready to be used [2026-07-15 17:57:27,791][ INFO][PID:376984] Filling build.info file with builder info [2026-07-15 17:57:27,792][ INFO][PID:376984] Checking for cancel request [2026-07-15 17:57:27,794][ INFO][PID:376984] Sending build state back to frontend: { "builds": [ { "timeout": 108000, "frontend_base_url": "https://copr.fedorainfracloud.org", "memory_reqs": null, "enable_net": true, "project_owner": "lizardbyte", "project_name": "pulls", "project_dirname": "pulls:pr:5368", "submitter": null, "ended_on": null, "started_on": 1784138247.794577, "submitted_on": null, "status": 3, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10721851", "build_id": 10721851, "package_name": "Sunshine", "package_version": null, "git_repo": null, "git_hash": null, "git_branch": null, "source_type": 9, "source_json": "{\"script\": \"#!/usr/bin/env bash\\nset -x\\nset -e\\n\\nresultdir=\\\"${COPR_RESULTDIR}\\\"\\ngit clone \\\"https://github.com/${COPR_OWNER}/${COPR_PACKAGE}.git\\\" --depth 1\\ncd \\\"${COPR_PACKAGE}\\\"\\n\\n# get info from the webhook payload\\nif [[ -z \\\"$REVISION\\\" ]]; then\\n # the hook_payload file contains webhook JSON payload (copr creates it for us);\\n # it is created only if the build is triggered by Custom webhook.\\n if [[ -f \\\"$resultdir\\\"/hook_payload ]]; then\\n git clone https://github.com/praiskup/copr-ci-tooling \\\\\\n \\\"$resultdir/cct\\\" --depth 1\\n export PATH=\\\"$resultdir/cct:$PATH\\\"\\n\\n echo \\\"---\\\"\\n cat \\\"$resultdir\\\"/hook_payload\\n echo \\\"---\\\"\\n\\n # use jq to get the pr_id from the hook_payload\\n PR=$(jq -r '.pr_id // empty' \\\"$resultdir\\\"/hook_payload)\\n if [[ -z \\\"$PR\\\" ]]; then\\n BRANCH=\\\"master\\\"\\n else\\n BRANCH=\\\"pr/${PR}\\\"\\n fi\\n\\n copr-travis-checkout \\\"$resultdir\\\"/hook_payload\\n fi\\nelse\\n git checkout \\\"$REVISION\\\"\\nfi\\n\\n# read optional exclusions from .copr-ci config file\\n# each non-empty, non-comment line is treated as a submodule path or directory\\n# to exclude (relative to the repo root, e.g. \\\"third-party/build-deps\\\")\\nEXCLUDED_PATHS=()\\nif [[ -f \\\".copr-ci\\\" ]]; then\\n echo \\\"Found .copr-ci config file, reading exclusions...\\\"\\n while IFS= read -r line || [[ -n \\\"$line\\\" ]]; do\\n # skip empty lines and comments\\n [[ -z \\\"$line\\\" || \\\"$line\\\" =~ ^# ]] && continue\\n EXCLUDED_PATHS+=(\\\"$line\\\")\\n echo \\\" Excluding: $line\\\"\\n done < \\\".copr-ci\\\"\\nfi\\n\\n# initialize the submodules, skipping any excluded paths\\nif [[ ${#EXCLUDED_PATHS[@]} -gt 0 ]]; then\\n # get all top-level submodule paths, then init only the ones not excluded\\n mapfile -t TOP_SUBMODULES < <(git submodule status | awk '{print $2}')\\n\\n for submodule in \\\"${TOP_SUBMODULES[@]}\\\"; do\\n skip=false\\n for excluded in \\\"${EXCLUDED_PATHS[@]}\\\"; do\\n # match exact path or any path that starts with the excluded prefix\\n if [[ \\\"$submodule\\\" == \\\"$excluded\\\" || \\\"$submodule\\\" == \\\"$excluded/\\\"* ]]; then\\n skip=true\\n break\\n fi\\n done\\n if [[ \\\"$skip\\\" == false ]]; then\\n git submodule update --init --recursive --depth 1 -- \\\"$submodule\\\"\\n else\\n echo \\\"Skipping submodule: $submodule\\\"\\n fi\\n done\\nelse\\n git submodule update --init --recursive --depth 1\\nfi\\n\\n# get the tag of this commit IF it has one\\nTAG=$(git tag --points-at HEAD | head -n1)\\nif [[ -z \\\"$TAG\\\" ]]; then\\n TAG=\\\"0.0.$PR\\\"\\nfi\\nTAG=\\\"${TAG#v}\\\" # remove v prefix from the tag\\necho \\\"TAG=$TAG\\\"\\n\\n# get the commit\\nCOMMIT=$(git rev-parse HEAD)\\necho \\\"COMMIT=$COMMIT\\\"\\n\\n# move spec file to the correct location\\ndirectories=(\\n \\\".\\\"\\n \\\"./packaging/linux/copr\\\"\\n)\\nfor dir in \\\"${directories[@]}\\\"; do\\n if [[ -f \\\"${dir}/${COPR_PACKAGE}.spec\\\" ]]; then\\n echo \\\"Found spec file in ${dir}\\\"\\n rpmlint \\\"${dir}/${COPR_PACKAGE}.spec\\\"\\n\\n mv \\\"${dir}/${COPR_PACKAGE}.spec\\\" \\\"${resultdir}\\\"\\n break\\n fi\\ndone\\n\\n# fail if the spec file is not in the resultdir\\nif [[ ! -f \\\"${resultdir}/${COPR_PACKAGE}.spec\\\" ]]; then\\n echo \\\"ERROR: ${COPR_PACKAGE}.spec not found\\\" >&2\\n exit 1\\nfi\\n\\n# use sed to replace these values in the spec file\\nsed -i \\\"s|%global build_version 0|%global build_version ${TAG}|\\\" \\\"${resultdir}\\\"/*.spec\\nsed -i \\\"s|%global branch 0|%global branch ${BRANCH}|\\\" \\\"${resultdir}\\\"/*.spec\\nsed -i \\\"s|%global commit 0|%global commit ${COMMIT}|\\\" \\\"${resultdir}\\\"/*.spec\\n\\n# create a tarball of the source code, excluding any configured paths\\nTAR_EXCLUDE_ARGS=()\\nfor path in \\\"${EXCLUDED_PATHS[@]}\\\"; do\\n TAR_EXCLUDE_ARGS+=(\\\"--exclude=./${path}\\\")\\ndone\\ntar -czf \\\"${resultdir}/tarball.tar.gz\\\" \\\"${TAR_EXCLUDE_ARGS[@]}\\\" .\\n\", \"chroot\": \"fedora-44-x86_64\", \"builddeps\": \"git jq python3 rpmlint\", \"resultdir\": \"\", \"repos\": \"\", \"tmp\": \"tmpnlr5i4au\", \"hook_data\": true}", "pkg_name": null, "pkg_main_version": null, "pkg_epoch": null, "pkg_release": null, "srpm_url": null, "uses_devel_repo": null, "sandbox": "lizardbyte/pulls--848373ab-7cb6-471c-8429-4ed3997a117a", "results": null, "appstream": false, "allow_user_ssh": null, "ssh_public_keys": null, "storage": null, "repos": [], "background": true, "distributions_in_build": [ "fedora-43", "fedora-44", "fedora-rawhide", "opensuse-leap-15.6" ], "distributions_in_project": [ "fedora-43", "fedora-44", "fedora-rawhide", "opensuse-leap-15.6" ], "destdir": "/var/lib/copr/public_html/results/lizardbyte/pulls:pr:5368", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5368", "result_dir": "10721851", "built_packages": "", "tags": [ "arch_x86_64" ], "rpmeta_prediction": null, "id": 10721851, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2026-07-15 17:57:27,841][ INFO][PID:376984] Sending fedora-messaging bus message in build.start [2026-07-15 17:57:28,408][ INFO][PID:376984] Sending fedora-messaging bus message in chroot.start [2026-07-15 17:57:28,449][ INFO][PID:376984] Starting remote build: copr-rpmbuild --verbose --drop-resultdir --srpm --task-url https://copr.fedorainfracloud.org/backend/get-srpm-build-task/10721851 --detached [2026-07-15 17:57:28,874][ INFO][PID:376984] The copr-rpmbuild seems started, per: stdout: stderr: Warning: Permanently added '54.161.41.65' (ED25519) to the list of known hosts. [2026-07-15 17:57:28,879][ INFO][PID:376984] Downloading the builder-live.log file, attempt 1 [2026-07-15 17:57:28,944][ INFO][PID:376984] Popen command started: ssh -F /home/copr/.ssh/config mockbuilder@54.161.41.65 copr-rpmbuild-log [2026-07-15 17:57:33,891][ INFO][PID:376984] Periodic builder liveness probe: alive [2026-07-15 17:57:33,896][ INFO][PID:376984] Checking for cancel request [2026-07-15 17:57:38,899][ INFO][PID:376984] Checking for cancel request [2026-07-15 17:57:43,900][ INFO][PID:376984] Checking for cancel request [2026-07-15 17:57:48,918][ INFO][PID:376984] Checking for cancel request [2026-07-15 17:57:53,924][ INFO][PID:376984] Checking for cancel request [2026-07-15 17:57:58,925][ INFO][PID:376984] Checking for cancel request [2026-07-15 17:58:03,927][ INFO][PID:376984] Checking for cancel request [2026-07-15 17:58:08,928][ INFO][PID:376984] Checking for cancel request [2026-07-15 17:58:13,930][ INFO][PID:376984] Checking for cancel request [2026-07-15 17:58:18,932][ INFO][PID:376984] Checking for cancel request [2026-07-15 17:58:23,933][ INFO][PID:376984] Checking for cancel request [2026-07-15 17:58:28,935][ INFO][PID:376984] Checking for cancel request [2026-07-15 17:58:33,936][ INFO][PID:376984] Checking for cancel request [2026-07-15 17:58:38,938][ INFO][PID:376984] Checking for cancel request [2026-07-15 17:58:43,940][ INFO][PID:376984] Checking for cancel request [2026-07-15 17:58:48,943][ INFO][PID:376984] Checking for cancel request [2026-07-15 17:58:53,944][ INFO][PID:376984] Checking for cancel request [2026-07-15 17:58:58,946][ INFO][PID:376984] Checking for cancel request [2026-07-15 17:59:03,949][ INFO][PID:376984] Checking for cancel request [2026-07-15 17:59:08,968][ INFO][PID:376984] Checking for cancel request [2026-07-15 17:59:13,974][ INFO][PID:376984] Checking for cancel request [2026-07-15 17:59:18,976][ INFO][PID:376984] Checking for cancel request [2026-07-15 17:59:23,986][ INFO][PID:376984] Checking for cancel request [2026-07-15 17:59:28,990][ INFO][PID:376984] Checking for cancel request [2026-07-15 17:59:33,997][ INFO][PID:376984] Checking for cancel request [2026-07-15 17:59:39,017][ INFO][PID:376984] Checking for cancel request [2026-07-15 17:59:44,023][ INFO][PID:376984] Checking for cancel request [2026-07-15 17:59:49,024][ INFO][PID:376984] Checking for cancel request [2026-07-15 17:59:54,026][ INFO][PID:376984] Checking for cancel request [2026-07-15 17:59:59,069][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:00:04,070][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:00:09,072][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:00:14,073][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:00:19,075][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:00:24,076][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:00:29,079][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:00:34,110][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:00:39,112][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:00:44,113][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:00:49,118][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:00:54,124][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:00:59,125][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:01:04,126][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:01:09,128][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:01:14,131][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:01:19,134][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:01:24,136][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:01:29,143][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:01:34,169][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:01:39,170][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:01:44,192][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:01:49,194][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:01:54,196][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:01:59,198][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:02:04,200][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:02:09,217][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:02:14,226][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:02:19,230][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:02:24,234][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:02:29,299][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:02:34,386][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:02:39,388][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:02:44,389][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:02:49,390][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:02:54,392][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:02:59,394][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:03:04,395][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:03:09,397][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:03:14,415][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:03:19,418][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:03:24,429][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:03:29,443][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:03:34,447][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:03:39,449][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:03:44,453][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:03:49,454][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:03:54,459][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:03:55,971][ ERROR][PID:376984] SSH connection lost on #1 attempt, let's retry after 10s, Connection broke. [2026-07-15 18:03:59,527][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:04:04,679][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:04:09,693][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:04:10,925][WARNING][PID:376984] SSH connection lost on #1 attempt, let's retry after 10s, Unable to finish after 1 SSH attempts [2026-07-15 18:04:14,695][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:04:19,696][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:04:21,235][ INFO][PID:376984] Downloading the builder-live.log file, attempt 2 [2026-07-15 18:04:21,484][ INFO][PID:376984] Popen command started: ssh -F /home/copr/.ssh/config mockbuilder@54.161.41.65 copr-rpmbuild-log [2026-07-15 18:04:24,698][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:04:29,699][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:04:34,703][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:04:39,705][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:04:44,706][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:04:49,708][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:04:54,710][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:04:59,712][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:05:04,713][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:05:09,714][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:05:14,716][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:05:19,717][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:05:21,541][ ERROR][PID:376984] SSH connection lost on #1 attempt, let's retry after 10s, Connection broke. [2026-07-15 18:05:24,718][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:05:29,727][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:05:31,688][WARNING][PID:376984] SSH connection lost on #2 attempt, let's retry after 10s, Unable to finish after 1 SSH attempts [2026-07-15 18:05:34,729][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:05:39,731][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:05:41,699][ INFO][PID:376984] Downloading the builder-live.log file, attempt 3 [2026-07-15 18:05:41,728][ INFO][PID:376984] Popen command started: ssh -F /home/copr/.ssh/config mockbuilder@54.161.41.65 copr-rpmbuild-log [2026-07-15 18:05:44,732][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:05:49,741][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:05:54,773][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:05:59,787][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:06:04,867][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:06:09,869][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:06:14,872][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:06:19,874][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:06:24,906][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:06:29,908][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:06:34,910][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:06:39,911][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:06:41,830][ ERROR][PID:376984] SSH connection lost on #1 attempt, let's retry after 10s, Connection broke. [2026-07-15 18:06:44,913][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:06:49,922][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:06:52,243][WARNING][PID:376984] SSH connection lost on #3 attempt, let's retry after 10s, Unable to finish after 1 SSH attempts [2026-07-15 18:06:54,928][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:06:59,930][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:07:02,246][ INFO][PID:376984] Downloading the builder-live.log file, attempt 4 [2026-07-15 18:07:02,249][ INFO][PID:376984] Popen command started: ssh -F /home/copr/.ssh/config mockbuilder@54.161.41.65 copr-rpmbuild-log [2026-07-15 18:07:04,931][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:07:09,933][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:07:14,937][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:07:19,939][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:07:24,940][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:07:29,945][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:07:35,086][ INFO][PID:376984] Periodic builder liveness probe: alive [2026-07-15 18:07:35,106][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:07:40,107][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:07:45,112][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:07:50,114][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:07:55,126][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:08:00,131][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:08:02,317][ ERROR][PID:376984] SSH connection lost on #1 attempt, let's retry after 10s, Connection broke. [2026-07-15 18:08:05,133][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:08:10,135][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:08:12,410][ ERROR][PID:376984] Giving up for unstable SSH, failures: 1784138650.9191656, 1784138731.688305, 1784138812.2432075, 1784138892.355019 [2026-07-15 18:08:12,571][ ERROR][PID:376984] Re-try request for task on 'ResallocHost, ticket_id=3916029, hostname=54.161.41.65, name=aws_x86_64_spot_prod_13098407_20260715_175602, requested_tags=['arch_x86_64', 'copr_builder']': SSH problems when downloading live log: Stopped following builder for broken SSH: Unable to finish after 1 SSH attempts [2026-07-15 18:08:12,758][ INFO][PID:376984] VM Release request [2026-07-15 18:08:12,853][ INFO][PID:376984] Retry #1 (on other host) [2026-07-15 18:08:12,859][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:08:12,880][ INFO][PID:376984] VM allocation process starts [2026-07-15 18:08:12,998][ INFO][PID:376984] Trying to allocate VM: ResallocHost, ticket_id=3916181, requested_tags=['arch_x86_64', 'copr_builder'] [2026-07-15 18:08:18,055][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:08:23,077][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:08:28,088][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:08:33,091][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:08:38,095][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:08:41,321][ INFO][PID:376984] Allocated host ResallocHost, ticket_id=3916181, hostname=54.227.54.71, name=aws_x86_64_reserved_prod_13098845_20260715_180703, requested_tags=['arch_x86_64', 'copr_builder'] [2026-07-15 18:08:41,324][ INFO][PID:376984] Allocating ssh connection to builder [2026-07-15 18:08:41,329][ INFO][PID:376984] Checking that builder machine is OK [2026-07-15 18:08:41,648][ INFO][PID:376984] Installed copr-rpmbuild version: 1.8 [2026-07-15 18:08:41,664][ INFO][PID:376984] Running remote command: copr-builder-ready srpm-builds [2026-07-15 18:08:41,853][ INFO][PID:376984] Red Hat subscription not needed for srpm-builds Builder is ready to be used [2026-07-15 18:08:41,856][ INFO][PID:376984] Filling build.info file with builder info [2026-07-15 18:08:41,932][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:08:41,940][ INFO][PID:376984] Not re-notifying FE and msg buses for the new host. [2026-07-15 18:08:41,949][ INFO][PID:376984] Starting remote build: copr-rpmbuild --verbose --drop-resultdir --srpm --task-url https://copr.fedorainfracloud.org/backend/get-srpm-build-task/10721851 --detached [2026-07-15 18:08:42,416][ INFO][PID:376984] The copr-rpmbuild seems started, per: stdout: stderr: Warning: Permanently added '54.227.54.71' (ED25519) to the list of known hosts. [2026-07-15 18:08:42,422][ INFO][PID:376984] Downloading the builder-live.log file, attempt 1 [2026-07-15 18:08:42,425][ INFO][PID:376984] Popen command started: ssh -F /home/copr/.ssh/config mockbuilder@54.227.54.71 copr-rpmbuild-log [2026-07-15 18:08:47,423][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:08:52,426][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:08:57,445][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:09:02,456][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:09:07,467][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:09:12,480][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:09:17,495][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:09:22,500][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:09:27,505][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:09:32,510][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:09:37,520][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:09:42,541][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:09:47,547][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:09:52,554][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:09:57,567][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:10:02,577][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:10:07,579][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:10:12,581][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:10:17,582][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:10:22,584][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:10:27,585][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:10:32,587][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:10:37,588][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:10:42,591][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:10:47,593][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:10:52,595][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:10:57,597][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:11:02,601][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:11:07,602][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:11:12,604][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:11:17,606][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:11:22,611][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:11:27,613][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:11:32,614][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:11:37,622][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:11:42,624][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:11:47,625][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:11:52,626][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:11:57,628][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:12:02,629][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:12:07,631][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:12:12,633][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:12:17,634][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:12:22,635][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:12:27,666][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:12:32,667][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:12:37,669][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:12:42,670][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:12:47,672][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:12:52,673][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:12:57,674][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:13:02,689][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:13:07,690][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:13:12,692][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:13:17,778][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:13:22,779][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:13:27,781][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:13:32,782][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:13:37,784][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:13:42,785][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:13:47,786][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:13:52,788][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:13:57,789][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:14:02,790][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:14:07,792][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:14:12,793][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:14:17,795][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:14:22,796][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:14:27,797][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:14:32,799][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:14:37,800][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:14:42,801][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:14:47,803][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:14:52,804][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:14:57,806][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:15:02,808][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:15:07,809][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:15:12,810][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:15:17,812][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:15:22,813][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:15:27,814][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:15:32,816][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:15:37,817][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:15:42,818][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:15:47,820][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:15:52,821][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:15:57,822][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:16:02,824][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:16:07,825][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:16:12,827][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:16:17,828][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:16:22,829][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:16:27,831][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:16:32,832][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:16:37,833][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:16:42,834][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:16:47,836][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:16:52,837][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:16:57,838][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:17:02,839][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:17:07,841][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:17:12,842][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:17:17,843][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:17:22,845][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:17:27,846][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:17:32,847][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:17:37,855][ INFO][PID:376984] Periodic builder liveness probe: alive [2026-07-15 18:17:37,856][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:17:42,857][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:17:47,858][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:17:52,860][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:17:57,861][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:18:02,862][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:18:07,864][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:18:12,865][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:18:17,866][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:18:22,868][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:18:27,869][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:18:32,870][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:18:37,871][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:18:42,873][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:18:47,874][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:18:52,875][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:18:57,876][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:19:02,878][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:19:07,923][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:19:12,928][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:19:17,929][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:19:22,940][ INFO][PID:376984] Checking for cancel request [2026-07-15 18:19:25,676][ INFO][PID:376984] Downloading results from builder [2026-07-15 18:19:25,686][ INFO][PID:376984] rsyncing of mockbuilder@54.227.54.71:/var/lib/copr-rpmbuild/results/ to /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5368/srpm-builds/10721851 started [2026-07-15 18:19:25,692][ INFO][PID:376984] Popen command started: /usr/bin/rsync -rltDvH --chmod=D755,F644 -e 'ssh -F /home/copr/.ssh/config' mockbuilder@54.227.54.71:/var/lib/copr-rpmbuild/results/ /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5368/srpm-builds/10721851/ &> /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5368/srpm-builds/10721851/build-10721851.rsync.log [2026-07-15 18:19:30,376][ INFO][PID:376984] rsyncing finished. [2026-07-15 18:19:30,376][ INFO][PID:376984] VM Release request [2026-07-15 18:19:30,386][ INFO][PID:376984] Searching for 'success' file in resultdir [2026-07-15 18:19:30,414][ INFO][PID:376984] Getting build details [2026-07-15 18:19:30,415][ INFO][PID:376984] Retrieving SRPM info from /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5368/srpm-builds/10721851 [2026-07-15 18:19:30,471][ INFO][PID:376984] SRPM URL: https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5368/srpm-builds/10721851/Sunshine-0.0.5368-1.src.rpm [2026-07-15 18:19:30,472][ INFO][PID:376984] build details: {'srpm_url': 'https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5368/srpm-builds/10721851/Sunshine-0.0.5368-1.src.rpm', 'pkg_name': 'Sunshine', 'pkg_version': '0.0.5368-1'} [2026-07-15 18:19:30,477][ INFO][PID:376984] Finished build: id=10721851 failed=False timeout=108000 destdir=/var/lib/copr/public_html/results/lizardbyte/pulls:pr:5368 chroot=srpm-builds [2026-07-15 18:19:30,573][ INFO][PID:376984] Worker succeeded build, took 648.6383185386658 [2026-07-15 18:19:30,582][ INFO][PID:376984] Sending build state back to frontend: { "builds": [ { "timeout": 108000, "frontend_base_url": "https://copr.fedorainfracloud.org", "memory_reqs": null, "enable_net": true, "project_owner": "lizardbyte", "project_name": "pulls", "project_dirname": "pulls:pr:5368", "submitter": null, "ended_on": 1784139570.5724769, "started_on": 1784138921.9341583, "submitted_on": null, "status": 1, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10721851", "build_id": 10721851, "package_name": "Sunshine", "package_version": null, "git_repo": null, "git_hash": null, "git_branch": null, "source_type": 9, "source_json": "{\"script\": \"#!/usr/bin/env bash\\nset -x\\nset -e\\n\\nresultdir=\\\"${COPR_RESULTDIR}\\\"\\ngit clone \\\"https://github.com/${COPR_OWNER}/${COPR_PACKAGE}.git\\\" --depth 1\\ncd \\\"${COPR_PACKAGE}\\\"\\n\\n# get info from the webhook payload\\nif [[ -z \\\"$REVISION\\\" ]]; then\\n # the hook_payload file contains webhook JSON payload (copr creates it for us);\\n # it is created only if the build is triggered by Custom webhook.\\n if [[ -f \\\"$resultdir\\\"/hook_payload ]]; then\\n git clone https://github.com/praiskup/copr-ci-tooling \\\\\\n \\\"$resultdir/cct\\\" --depth 1\\n export PATH=\\\"$resultdir/cct:$PATH\\\"\\n\\n echo \\\"---\\\"\\n cat \\\"$resultdir\\\"/hook_payload\\n echo \\\"---\\\"\\n\\n # use jq to get the pr_id from the hook_payload\\n PR=$(jq -r '.pr_id // empty' \\\"$resultdir\\\"/hook_payload)\\n if [[ -z \\\"$PR\\\" ]]; then\\n BRANCH=\\\"master\\\"\\n else\\n BRANCH=\\\"pr/${PR}\\\"\\n fi\\n\\n copr-travis-checkout \\\"$resultdir\\\"/hook_payload\\n fi\\nelse\\n git checkout \\\"$REVISION\\\"\\nfi\\n\\n# read optional exclusions from .copr-ci config file\\n# each non-empty, non-comment line is treated as a submodule path or directory\\n# to exclude (relative to the repo root, e.g. \\\"third-party/build-deps\\\")\\nEXCLUDED_PATHS=()\\nif [[ -f \\\".copr-ci\\\" ]]; then\\n echo \\\"Found .copr-ci config file, reading exclusions...\\\"\\n while IFS= read -r line || [[ -n \\\"$line\\\" ]]; do\\n # skip empty lines and comments\\n [[ -z \\\"$line\\\" || \\\"$line\\\" =~ ^# ]] && continue\\n EXCLUDED_PATHS+=(\\\"$line\\\")\\n echo \\\" Excluding: $line\\\"\\n done < \\\".copr-ci\\\"\\nfi\\n\\n# initialize the submodules, skipping any excluded paths\\nif [[ ${#EXCLUDED_PATHS[@]} -gt 0 ]]; then\\n # get all top-level submodule paths, then init only the ones not excluded\\n mapfile -t TOP_SUBMODULES < <(git submodule status | awk '{print $2}')\\n\\n for submodule in \\\"${TOP_SUBMODULES[@]}\\\"; do\\n skip=false\\n for excluded in \\\"${EXCLUDED_PATHS[@]}\\\"; do\\n # match exact path or any path that starts with the excluded prefix\\n if [[ \\\"$submodule\\\" == \\\"$excluded\\\" || \\\"$submodule\\\" == \\\"$excluded/\\\"* ]]; then\\n skip=true\\n break\\n fi\\n done\\n if [[ \\\"$skip\\\" == false ]]; then\\n git submodule update --init --recursive --depth 1 -- \\\"$submodule\\\"\\n else\\n echo \\\"Skipping submodule: $submodule\\\"\\n fi\\n done\\nelse\\n git submodule update --init --recursive --depth 1\\nfi\\n\\n# get the tag of this commit IF it has one\\nTAG=$(git tag --points-at HEAD | head -n1)\\nif [[ -z \\\"$TAG\\\" ]]; then\\n TAG=\\\"0.0.$PR\\\"\\nfi\\nTAG=\\\"${TAG#v}\\\" # remove v prefix from the tag\\necho \\\"TAG=$TAG\\\"\\n\\n# get the commit\\nCOMMIT=$(git rev-parse HEAD)\\necho \\\"COMMIT=$COMMIT\\\"\\n\\n# move spec file to the correct location\\ndirectories=(\\n \\\".\\\"\\n \\\"./packaging/linux/copr\\\"\\n)\\nfor dir in \\\"${directories[@]}\\\"; do\\n if [[ -f \\\"${dir}/${COPR_PACKAGE}.spec\\\" ]]; then\\n echo \\\"Found spec file in ${dir}\\\"\\n rpmlint \\\"${dir}/${COPR_PACKAGE}.spec\\\"\\n\\n mv \\\"${dir}/${COPR_PACKAGE}.spec\\\" \\\"${resultdir}\\\"\\n break\\n fi\\ndone\\n\\n# fail if the spec file is not in the resultdir\\nif [[ ! -f \\\"${resultdir}/${COPR_PACKAGE}.spec\\\" ]]; then\\n echo \\\"ERROR: ${COPR_PACKAGE}.spec not found\\\" >&2\\n exit 1\\nfi\\n\\n# use sed to replace these values in the spec file\\nsed -i \\\"s|%global build_version 0|%global build_version ${TAG}|\\\" \\\"${resultdir}\\\"/*.spec\\nsed -i \\\"s|%global branch 0|%global branch ${BRANCH}|\\\" \\\"${resultdir}\\\"/*.spec\\nsed -i \\\"s|%global commit 0|%global commit ${COMMIT}|\\\" \\\"${resultdir}\\\"/*.spec\\n\\n# create a tarball of the source code, excluding any configured paths\\nTAR_EXCLUDE_ARGS=()\\nfor path in \\\"${EXCLUDED_PATHS[@]}\\\"; do\\n TAR_EXCLUDE_ARGS+=(\\\"--exclude=./${path}\\\")\\ndone\\ntar -czf \\\"${resultdir}/tarball.tar.gz\\\" \\\"${TAR_EXCLUDE_ARGS[@]}\\\" .\\n\", \"chroot\": \"fedora-44-x86_64\", \"builddeps\": \"git jq python3 rpmlint\", \"resultdir\": \"\", \"repos\": \"\", \"tmp\": \"tmpnlr5i4au\", \"hook_data\": true}", "pkg_name": "Sunshine", "pkg_main_version": null, "pkg_epoch": null, "pkg_release": null, "srpm_url": "https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5368/srpm-builds/10721851/Sunshine-0.0.5368-1.src.rpm", "uses_devel_repo": null, "sandbox": "lizardbyte/pulls--848373ab-7cb6-471c-8429-4ed3997a117a", "results": { "architecture_specific_tags": { "fedora-43": {}, "fedora-44": {}, "fedora-rawhide": {}, "opensuse-leap-15.6": {} }, "name": "Sunshine", "epoch": null, "version": "0.0.5368", "release": "1" }, "appstream": false, "allow_user_ssh": null, "ssh_public_keys": null, "storage": null, "repos": [], "background": true, "distributions_in_build": [ "fedora-43", "fedora-44", "fedora-rawhide", "opensuse-leap-15.6" ], "distributions_in_project": [ "fedora-43", "fedora-44", "fedora-rawhide", "opensuse-leap-15.6" ], "destdir": "/var/lib/copr/public_html/results/lizardbyte/pulls:pr:5368", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5368", "result_dir": "10721851", "built_packages": "", "tags": [ "arch_x86_64" ], "rpmeta_prediction": null, "pkg_version": "0.0.5368-1", "id": 10721851, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2026-07-15 18:19:31,209][ INFO][PID:376984] Sending fedora-messaging bus message in build.end [2026-07-15 18:19:31,577][ INFO][PID:376984] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5368/srpm-builds/10721851/builder-live.log by gzip [2026-07-15 18:19:31,581][ INFO][PID:376984] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5368/srpm-builds/10721851/builder-live.log' as PID 515648 [2026-07-15 18:19:31,600][ INFO][PID:376984] Finished after 0 seconds with exit code 0 (gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5368/srpm-builds/10721851/builder-live.log) [2026-07-15 18:19:31,603][ INFO][PID:376984] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5368/srpm-builds/10721851/backend.log by gzip [2026-07-15 18:19:31,605][ INFO][PID:376984] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5368/srpm-builds/10721851/backend.log' as PID 515650