[2026-08-18 15:12:17,678][ INFO][PID:492927] Marking build as starting [2026-08-18 15:12:17,849][ INFO][PID:492927] Checking for cancel request [2026-08-18 15:12:17,857][ INFO][PID:492927] VM allocation process starts [2026-08-18 15:12:17,908][ INFO][PID:492927] Trying to allocate VM: ResallocHost, ticket_id=4500663, requested_tags=['arch_x86_64', 'copr_builder'] [2026-08-18 15:12:22,916][ INFO][PID:492927] Checking for cancel request [2026-08-18 15:12:27,925][ INFO][PID:492927] Checking for cancel request [2026-08-18 15:12:32,933][ INFO][PID:492927] Checking for cancel request [2026-08-18 15:12:37,947][ INFO][PID:492927] Checking for cancel request [2026-08-18 15:12:42,963][ INFO][PID:492927] Checking for cancel request [2026-08-18 15:12:47,973][ INFO][PID:492927] Checking for cancel request [2026-08-18 15:12:52,993][ INFO][PID:492927] Checking for cancel request [2026-08-18 15:12:58,008][ INFO][PID:492927] Checking for cancel request [2026-08-18 15:13:03,012][ INFO][PID:492927] Checking for cancel request [2026-08-18 15:13:08,016][ INFO][PID:492927] Checking for cancel request [2026-08-18 15:13:13,022][ INFO][PID:492927] Checking for cancel request [2026-08-18 15:13:18,027][ INFO][PID:492927] Checking for cancel request [2026-08-18 15:13:23,036][ INFO][PID:492927] Checking for cancel request [2026-08-18 15:13:28,040][ INFO][PID:492927] Checking for cancel request [2026-08-18 15:13:33,045][ INFO][PID:492927] Checking for cancel request [2026-08-18 15:13:38,048][ INFO][PID:492927] Checking for cancel request [2026-08-18 15:13:43,054][ INFO][PID:492927] Checking for cancel request [2026-08-18 15:13:48,066][ INFO][PID:492927] Checking for cancel request [2026-08-18 15:13:53,082][ INFO][PID:492927] Checking for cancel request [2026-08-18 15:13:58,084][ INFO][PID:492927] Checking for cancel request [2026-08-18 15:14:03,097][ INFO][PID:492927] Checking for cancel request [2026-08-18 15:14:08,107][ INFO][PID:492927] Checking for cancel request [2026-08-18 15:14:13,111][ INFO][PID:492927] Checking for cancel request [2026-08-18 15:14:18,117][ INFO][PID:492927] Checking for cancel request [2026-08-18 15:14:23,123][ INFO][PID:492927] Checking for cancel request [2026-08-18 15:14:28,135][ INFO][PID:492927] Checking for cancel request [2026-08-18 15:14:33,137][ INFO][PID:492927] Checking for cancel request [2026-08-18 15:14:36,285][ INFO][PID:492927] Allocated host ResallocHost, ticket_id=4500663, hostname=54.167.229.68, name=aws_x86_64_spot_prod_19336798_20260818_151225, requested_tags=['arch_x86_64', 'copr_builder'] [2026-08-18 15:14:36,287][ INFO][PID:492927] Allocating ssh connection to builder [2026-08-18 15:14:36,288][ INFO][PID:492927] Checking that builder machine is OK [2026-08-18 15:14:36,601][ INFO][PID:492927] Installed copr-rpmbuild version: 1.9 [2026-08-18 15:14:36,608][ INFO][PID:492927] Running remote command: copr-builder-ready srpm-builds [2026-08-18 15:14:36,832][ INFO][PID:492927] Red Hat subscription not needed for srpm-builds Builder is ready to be used [2026-08-18 15:14:36,834][ INFO][PID:492927] Filling build.info file with builder info [2026-08-18 15:14:36,835][ INFO][PID:492927] Checking for cancel request [2026-08-18 15:14:36,844][ INFO][PID:492927] 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:5495", "submitter": null, "ended_on": null, "started_on": 1787066076.8438811, "submitted_on": null, "status": 3, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10876775", "build_id": 10876775, "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-45-x86_64\", \"builddeps\": \"git jq python3 rpmlint\", \"resultdir\": \"\", \"repos\": \"\", \"tmp\": \"tmpoz1308cy\", \"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--3775544c-e547-41d3-899d-0124b3e80c39", "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-45", "fedora-rawhide" ], "distributions_in_project": [ "fedora-43", "fedora-44", "fedora-45", "fedora-rawhide" ], "destdir": "/var/lib/copr/public_html/results/lizardbyte/pulls:pr:5495", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5495", "result_dir": "10876775", "built_packages": "", "tags": [ "arch_x86_64" ], "rpmeta_prediction": null, "id": 10876775, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2026-08-18 15:14:36,948][ INFO][PID:492927] Sending fedora-messaging bus message in build.start [2026-08-18 15:14:38,564][ INFO][PID:492927] Sending fedora-messaging bus message in chroot.start [2026-08-18 15:14:38,696][ INFO][PID:492927] Starting remote build: copr-rpmbuild --verbose --drop-resultdir --srpm --task-url https://copr.fedorainfracloud.org/backend/get-srpm-build-task/10876775 --detached [2026-08-18 15:14:39,450][ INFO][PID:492927] The copr-rpmbuild seems started, per: stdout: stderr: Warning: Permanently added '54.167.229.68' (ED25519) to the list of known hosts. [2026-08-18 15:14:39,451][ INFO][PID:492927] Downloading the builder-live.log file, attempt 1 [2026-08-18 15:14:39,470][ INFO][PID:492927] Popen command started: ssh -F /home/copr/.ssh/config mockbuilder@54.167.229.68 copr-rpmbuild-log [2026-08-18 15:14:44,503][ INFO][PID:492927] Periodic builder liveness probe: alive [2026-08-18 15:14:44,507][ INFO][PID:492927] Checking for cancel request [2026-08-18 15:14:49,522][ INFO][PID:492927] Checking for cancel request [2026-08-18 15:14:54,530][ INFO][PID:492927] Checking for cancel request [2026-08-18 15:14:59,537][ INFO][PID:492927] Checking for cancel request [2026-08-18 15:15:04,541][ INFO][PID:492927] Checking for cancel request [2026-08-18 15:15:09,545][ INFO][PID:492927] Checking for cancel request [2026-08-18 15:15:14,554][ INFO][PID:492927] Checking for cancel request [2026-08-18 15:15:19,557][ INFO][PID:492927] Checking for cancel request [2026-08-18 15:15:24,560][ INFO][PID:492927] Checking for cancel request [2026-08-18 15:15:29,566][ INFO][PID:492927] Checking for cancel request [2026-08-18 15:15:34,572][ INFO][PID:492927] Checking for cancel request [2026-08-18 15:15:39,580][ INFO][PID:492927] Checking for cancel request [2026-08-18 15:15:44,584][ INFO][PID:492927] Checking for cancel request [2026-08-18 15:15:49,592][ INFO][PID:492927] Checking for cancel request [2026-08-18 15:15:54,596][ INFO][PID:492927] Checking for cancel request [2026-08-18 15:15:59,601][ INFO][PID:492927] Checking for cancel request [2026-08-18 15:16:04,609][ INFO][PID:492927] Checking for cancel request [2026-08-18 15:16:09,614][ INFO][PID:492927] Checking for cancel request [2026-08-18 15:16:14,627][ INFO][PID:492927] Checking for cancel request [2026-08-18 15:16:19,640][ INFO][PID:492927] Checking for cancel request [2026-08-18 15:16:24,647][ INFO][PID:492927] Checking for cancel request [2026-08-18 15:16:29,655][ INFO][PID:492927] Checking for cancel request [2026-08-18 15:16:34,659][ INFO][PID:492927] Checking for cancel request [2026-08-18 15:16:39,661][ INFO][PID:492927] Checking for cancel request [2026-08-18 15:16:44,665][ INFO][PID:492927] Checking for cancel request [2026-08-18 15:16:49,673][ INFO][PID:492927] Checking for cancel request [2026-08-18 15:16:54,680][ INFO][PID:492927] Checking for cancel request [2026-08-18 15:16:59,693][ INFO][PID:492927] Checking for cancel request [2026-08-18 15:17:04,698][ INFO][PID:492927] Checking for cancel request [2026-08-18 15:17:09,706][ INFO][PID:492927] Checking for cancel request [2026-08-18 15:17:14,711][ INFO][PID:492927] Checking for cancel request [2026-08-18 15:17:19,713][ INFO][PID:492927] Checking for cancel request [2026-08-18 15:17:24,715][ INFO][PID:492927] Checking for cancel request [2026-08-18 15:17:29,720][ INFO][PID:492927] Checking for cancel request [2026-08-18 15:17:34,723][ INFO][PID:492927] Checking for cancel request [2026-08-18 15:17:39,729][ INFO][PID:492927] Checking for cancel request [2026-08-18 15:17:44,731][ INFO][PID:492927] Checking for cancel request [2026-08-18 15:17:49,736][ INFO][PID:492927] Checking for cancel request [2026-08-18 15:17:54,740][ INFO][PID:492927] Checking for cancel request [2026-08-18 15:17:59,746][ INFO][PID:492927] Checking for cancel request [2026-08-18 15:18:04,750][ INFO][PID:492927] Checking for cancel request [2026-08-18 15:18:09,753][ INFO][PID:492927] Checking for cancel request [2026-08-18 15:18:14,756][ INFO][PID:492927] Checking for cancel request [2026-08-18 15:18:19,766][ INFO][PID:492927] Checking for cancel request [2026-08-18 15:18:24,769][ INFO][PID:492927] Checking for cancel request [2026-08-18 15:18:29,777][ INFO][PID:492927] Checking for cancel request [2026-08-18 15:18:34,791][ INFO][PID:492927] Checking for cancel request [2026-08-18 15:18:39,798][ INFO][PID:492927] Checking for cancel request [2026-08-18 15:18:44,800][ INFO][PID:492927] Checking for cancel request [2026-08-18 15:18:49,802][ INFO][PID:492927] Checking for cancel request [2026-08-18 15:18:54,816][ INFO][PID:492927] Checking for cancel request [2026-08-18 15:18:59,832][ INFO][PID:492927] Checking for cancel request [2026-08-18 15:19:04,842][ INFO][PID:492927] Checking for cancel request [2026-08-18 15:19:09,850][ INFO][PID:492927] Checking for cancel request [2026-08-18 15:19:14,860][ INFO][PID:492927] Checking for cancel request [2026-08-18 15:19:19,870][ INFO][PID:492927] Checking for cancel request [2026-08-18 15:19:24,890][ INFO][PID:492927] Checking for cancel request [2026-08-18 15:19:29,897][ INFO][PID:492927] Checking for cancel request [2026-08-18 15:19:34,906][ INFO][PID:492927] Checking for cancel request [2026-08-18 15:19:39,912][ INFO][PID:492927] Checking for cancel request [2026-08-18 15:19:44,919][ INFO][PID:492927] Checking for cancel request [2026-08-18 15:19:49,921][ INFO][PID:492927] Checking for cancel request [2026-08-18 15:19:54,927][ INFO][PID:492927] Checking for cancel request [2026-08-18 15:19:59,929][ INFO][PID:492927] Checking for cancel request [2026-08-18 15:20:04,935][ INFO][PID:492927] Checking for cancel request [2026-08-18 15:20:09,942][ INFO][PID:492927] Checking for cancel request [2026-08-18 15:20:14,943][ INFO][PID:492927] Checking for cancel request [2026-08-18 15:20:19,946][ INFO][PID:492927] Checking for cancel request [2026-08-18 15:20:24,953][ INFO][PID:492927] Checking for cancel request [2026-08-18 15:20:29,956][ INFO][PID:492927] Checking for cancel request [2026-08-18 15:20:34,962][ INFO][PID:492927] Checking for cancel request [2026-08-18 15:20:39,974][ INFO][PID:492927] Checking for cancel request [2026-08-18 15:20:44,979][ INFO][PID:492927] Checking for cancel request [2026-08-18 15:20:49,983][ INFO][PID:492927] Checking for cancel request [2026-08-18 15:20:54,987][ INFO][PID:492927] Checking for cancel request [2026-08-18 15:20:59,994][ INFO][PID:492927] Checking for cancel request [2026-08-18 15:21:04,998][ INFO][PID:492927] Checking for cancel request [2026-08-18 15:21:10,003][ INFO][PID:492927] Checking for cancel request [2026-08-18 15:21:15,006][ INFO][PID:492927] Checking for cancel request [2026-08-18 15:21:20,009][ INFO][PID:492927] Checking for cancel request [2026-08-18 15:21:25,015][ INFO][PID:492927] Checking for cancel request [2026-08-18 15:21:30,017][ INFO][PID:492927] Checking for cancel request [2026-08-18 15:21:35,030][ INFO][PID:492927] Checking for cancel request [2026-08-18 15:21:40,033][ INFO][PID:492927] Checking for cancel request [2026-08-18 15:21:45,036][ INFO][PID:492927] Checking for cancel request [2026-08-18 15:21:50,039][ INFO][PID:492927] Checking for cancel request [2026-08-18 15:21:55,041][ INFO][PID:492927] Checking for cancel request [2026-08-18 15:22:00,043][ INFO][PID:492927] Checking for cancel request [2026-08-18 15:22:05,046][ INFO][PID:492927] Checking for cancel request [2026-08-18 15:22:10,049][ INFO][PID:492927] Checking for cancel request [2026-08-18 15:22:15,051][ INFO][PID:492927] Checking for cancel request [2026-08-18 15:22:20,054][ INFO][PID:492927] Checking for cancel request [2026-08-18 15:22:25,057][ INFO][PID:492927] Checking for cancel request [2026-08-18 15:22:30,061][ INFO][PID:492927] Checking for cancel request [2026-08-18 15:22:35,063][ INFO][PID:492927] Checking for cancel request [2026-08-18 15:22:40,070][ INFO][PID:492927] Checking for cancel request [2026-08-18 15:22:45,074][ INFO][PID:492927] Checking for cancel request [2026-08-18 15:22:50,077][ INFO][PID:492927] Checking for cancel request [2026-08-18 15:22:55,083][ INFO][PID:492927] Checking for cancel request [2026-08-18 15:23:00,085][ INFO][PID:492927] Checking for cancel request [2026-08-18 15:23:05,087][ INFO][PID:492927] Checking for cancel request [2026-08-18 15:23:10,089][ INFO][PID:492927] Checking for cancel request [2026-08-18 15:23:15,091][ INFO][PID:492927] Checking for cancel request [2026-08-18 15:23:20,093][ INFO][PID:492927] Checking for cancel request [2026-08-18 15:23:25,094][ INFO][PID:492927] Checking for cancel request [2026-08-18 15:23:30,096][ INFO][PID:492927] Checking for cancel request [2026-08-18 15:23:35,097][ INFO][PID:492927] Checking for cancel request [2026-08-18 15:23:40,098][ INFO][PID:492927] Checking for cancel request [2026-08-18 15:23:45,100][ INFO][PID:492927] Checking for cancel request [2026-08-18 15:23:50,101][ INFO][PID:492927] Checking for cancel request [2026-08-18 15:23:55,103][ INFO][PID:492927] Checking for cancel request [2026-08-18 15:24:00,104][ INFO][PID:492927] Checking for cancel request [2026-08-18 15:24:05,106][ INFO][PID:492927] Checking for cancel request [2026-08-18 15:24:10,109][ INFO][PID:492927] Checking for cancel request [2026-08-18 15:24:15,110][ INFO][PID:492927] Checking for cancel request [2026-08-18 15:24:20,112][ INFO][PID:492927] Checking for cancel request [2026-08-18 15:24:25,115][ INFO][PID:492927] Checking for cancel request [2026-08-18 15:24:30,118][ INFO][PID:492927] Checking for cancel request [2026-08-18 15:24:35,120][ INFO][PID:492927] Checking for cancel request [2026-08-18 15:24:40,121][ INFO][PID:492927] Checking for cancel request [2026-08-18 15:24:45,155][ INFO][PID:492927] Periodic builder liveness probe: alive [2026-08-18 15:24:45,159][ INFO][PID:492927] Checking for cancel request [2026-08-18 15:24:50,163][ INFO][PID:492927] Checking for cancel request [2026-08-18 15:24:55,166][ INFO][PID:492927] Checking for cancel request [2026-08-18 15:25:00,170][ INFO][PID:492927] Checking for cancel request [2026-08-18 15:25:05,171][ INFO][PID:492927] Checking for cancel request [2026-08-18 15:25:10,177][ INFO][PID:492927] Checking for cancel request [2026-08-18 15:25:15,179][ INFO][PID:492927] Checking for cancel request [2026-08-18 15:25:20,180][ INFO][PID:492927] Checking for cancel request [2026-08-18 15:25:25,182][ INFO][PID:492927] Checking for cancel request [2026-08-18 15:25:30,185][ INFO][PID:492927] Checking for cancel request [2026-08-18 15:25:35,193][ INFO][PID:492927] Checking for cancel request [2026-08-18 15:25:40,197][ INFO][PID:492927] Checking for cancel request [2026-08-18 15:25:45,200][ INFO][PID:492927] Checking for cancel request [2026-08-18 15:25:50,205][ INFO][PID:492927] Checking for cancel request [2026-08-18 15:25:55,207][ INFO][PID:492927] Checking for cancel request [2026-08-18 15:26:00,208][ INFO][PID:492927] Checking for cancel request [2026-08-18 15:26:05,209][ INFO][PID:492927] Checking for cancel request [2026-08-18 15:26:10,211][ INFO][PID:492927] Checking for cancel request [2026-08-18 15:26:15,212][ INFO][PID:492927] Checking for cancel request [2026-08-18 15:26:20,214][ INFO][PID:492927] Checking for cancel request [2026-08-18 15:26:24,768][ INFO][PID:492927] Downloading results from builder [2026-08-18 15:26:24,770][ INFO][PID:492927] rsyncing of mockbuilder@54.167.229.68:/var/lib/copr-rpmbuild/results/ to /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5495/srpm-builds/10876775 started [2026-08-18 15:26:24,772][ INFO][PID:492927] Popen command started: /usr/bin/rsync -rltDvH --chmod=D755,F644 -e 'ssh -F /home/copr/.ssh/config' mockbuilder@54.167.229.68:/var/lib/copr-rpmbuild/results/ /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5495/srpm-builds/10876775/ &> /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5495/srpm-builds/10876775/build-10876775.rsync.log [2026-08-18 15:26:38,246][ INFO][PID:492927] rsyncing finished. [2026-08-18 15:26:38,250][ INFO][PID:492927] VM Release request [2026-08-18 15:26:38,298][ INFO][PID:492927] Searching for 'success' file in resultdir [2026-08-18 15:26:38,301][ INFO][PID:492927] Getting build details [2026-08-18 15:26:38,315][ INFO][PID:492927] Retrieving SRPM info from /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5495/srpm-builds/10876775 [2026-08-18 15:26:38,327][ INFO][PID:492927] SRPM URL: https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5495/srpm-builds/10876775/Sunshine-0.0.5495-1.src.rpm [2026-08-18 15:26:38,334][ INFO][PID:492927] build details: {'srpm_url': 'https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5495/srpm-builds/10876775/Sunshine-0.0.5495-1.src.rpm', 'pkg_name': 'Sunshine', 'pkg_version': '0.0.5495-1'} [2026-08-18 15:26:38,343][ INFO][PID:492927] Finished build: id=10876775 failed=False timeout=108000 destdir=/var/lib/copr/public_html/results/lizardbyte/pulls:pr:5495 chroot=srpm-builds [2026-08-18 15:26:38,361][ INFO][PID:492927] Worker succeeded build, took 721.5177538394928 [2026-08-18 15:26:38,381][ INFO][PID:492927] 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:5495", "submitter": null, "ended_on": 1787066798.361635, "started_on": 1787066076.8438811, "submitted_on": null, "status": 1, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10876775", "build_id": 10876775, "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-45-x86_64\", \"builddeps\": \"git jq python3 rpmlint\", \"resultdir\": \"\", \"repos\": \"\", \"tmp\": \"tmpoz1308cy\", \"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:5495/srpm-builds/10876775/Sunshine-0.0.5495-1.src.rpm", "uses_devel_repo": null, "sandbox": "lizardbyte/pulls--3775544c-e547-41d3-899d-0124b3e80c39", "results": { "architecture_specific_tags": { "fedora-43": {}, "fedora-44": {}, "fedora-45": {}, "fedora-rawhide": {} }, "name": "Sunshine", "epoch": null, "version": "0.0.5495", "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-45", "fedora-rawhide" ], "distributions_in_project": [ "fedora-43", "fedora-44", "fedora-45", "fedora-rawhide" ], "destdir": "/var/lib/copr/public_html/results/lizardbyte/pulls:pr:5495", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5495", "result_dir": "10876775", "built_packages": "", "tags": [ "arch_x86_64" ], "rpmeta_prediction": null, "pkg_version": "0.0.5495-1", "id": 10876775, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2026-08-18 15:26:38,492][ INFO][PID:492927] Sending fedora-messaging bus message in build.end [2026-08-18 15:26:38,542][ INFO][PID:492927] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5495/srpm-builds/10876775/builder-live.log by gzip [2026-08-18 15:26:38,547][ INFO][PID:492927] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5495/srpm-builds/10876775/builder-live.log' as PID 661476 [2026-08-18 15:26:38,584][ INFO][PID:492927] Finished after 0 seconds with exit code 0 (gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5495/srpm-builds/10876775/builder-live.log) [2026-08-18 15:26:38,587][ INFO][PID:492927] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5495/srpm-builds/10876775/backend.log by gzip [2026-08-18 15:26:38,592][ INFO][PID:492927] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5495/srpm-builds/10876775/backend.log' as PID 661484