[2026-08-20 16:23:13,411][ INFO][PID:1792213] Marking build as starting [2026-08-20 16:23:13,453][ INFO][PID:1792213] Checking for cancel request [2026-08-20 16:23:13,455][ INFO][PID:1792213] VM allocation process starts [2026-08-20 16:23:13,464][ INFO][PID:1792213] Trying to allocate VM: ResallocHost, ticket_id=4542786, requested_tags=['arch_x86_64', 'copr_builder'] [2026-08-20 16:23:18,466][ INFO][PID:1792213] Checking for cancel request [2026-08-20 16:23:23,468][ INFO][PID:1792213] Checking for cancel request [2026-08-20 16:23:25,494][ INFO][PID:1792213] Allocated host ResallocHost, ticket_id=4542786, hostname=54.243.15.49, name=aws_x86_64_reserved_prod_19527559_20260820_161608, requested_tags=['arch_x86_64', 'copr_builder'] [2026-08-20 16:23:25,495][ INFO][PID:1792213] Allocating ssh connection to builder [2026-08-20 16:23:25,496][ INFO][PID:1792213] Checking that builder machine is OK [2026-08-20 16:23:25,829][ INFO][PID:1792213] Installed copr-rpmbuild version: 1.9 [2026-08-20 16:23:25,832][ INFO][PID:1792213] Running remote command: copr-builder-ready srpm-builds [2026-08-20 16:23:26,026][ INFO][PID:1792213] Red Hat subscription not needed for srpm-builds Builder is ready to be used [2026-08-20 16:23:26,027][ INFO][PID:1792213] Filling build.info file with builder info [2026-08-20 16:23:26,028][ INFO][PID:1792213] Checking for cancel request [2026-08-20 16:23:26,029][ INFO][PID:1792213] 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:5531", "submitter": null, "ended_on": null, "started_on": 1787243006.029491, "submitted_on": null, "status": 3, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10885196", "build_id": 10885196, "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\": \"tmph9v06rkg\", \"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--1adb5b77-1458-4a1d-90b7-5b232cee62e7", "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:5531", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5531", "result_dir": "10885196", "built_packages": "", "tags": [ "arch_x86_64" ], "rpmeta_prediction": null, "id": 10885196, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2026-08-20 16:23:26,074][ INFO][PID:1792213] Sending fedora-messaging bus message in build.start [2026-08-20 16:23:26,770][ INFO][PID:1792213] Sending fedora-messaging bus message in chroot.start [2026-08-20 16:23:26,808][ INFO][PID:1792213] Starting remote build: copr-rpmbuild --verbose --drop-resultdir --srpm --task-url https://copr.fedorainfracloud.org/backend/get-srpm-build-task/10885196 --detached [2026-08-20 16:23:27,441][ INFO][PID:1792213] The copr-rpmbuild seems started, per: stdout: stderr: Warning: Permanently added '54.243.15.49' (ED25519) to the list of known hosts. [2026-08-20 16:23:27,443][ INFO][PID:1792213] Downloading the builder-live.log file, attempt 1 [2026-08-20 16:23:27,445][ INFO][PID:1792213] Popen command started: ssh -F /home/copr/.ssh/config mockbuilder@54.243.15.49 copr-rpmbuild-log [2026-08-20 16:23:32,454][ INFO][PID:1792213] Periodic builder liveness probe: alive [2026-08-20 16:23:32,455][ INFO][PID:1792213] Checking for cancel request [2026-08-20 16:23:37,456][ INFO][PID:1792213] Checking for cancel request [2026-08-20 16:23:42,457][ INFO][PID:1792213] Checking for cancel request [2026-08-20 16:23:47,459][ INFO][PID:1792213] Checking for cancel request [2026-08-20 16:23:52,460][ INFO][PID:1792213] Checking for cancel request [2026-08-20 16:23:57,461][ INFO][PID:1792213] Checking for cancel request [2026-08-20 16:24:02,463][ INFO][PID:1792213] Checking for cancel request [2026-08-20 16:24:07,465][ INFO][PID:1792213] Checking for cancel request [2026-08-20 16:24:12,466][ INFO][PID:1792213] Checking for cancel request [2026-08-20 16:24:17,467][ INFO][PID:1792213] Checking for cancel request [2026-08-20 16:24:22,469][ INFO][PID:1792213] Checking for cancel request [2026-08-20 16:24:27,470][ INFO][PID:1792213] Checking for cancel request [2026-08-20 16:24:32,472][ INFO][PID:1792213] Checking for cancel request [2026-08-20 16:24:37,473][ INFO][PID:1792213] Checking for cancel request [2026-08-20 16:24:42,474][ INFO][PID:1792213] Checking for cancel request [2026-08-20 16:24:47,476][ INFO][PID:1792213] Checking for cancel request [2026-08-20 16:24:52,477][ INFO][PID:1792213] Checking for cancel request [2026-08-20 16:24:57,479][ INFO][PID:1792213] Checking for cancel request [2026-08-20 16:25:02,480][ INFO][PID:1792213] Checking for cancel request [2026-08-20 16:25:07,482][ INFO][PID:1792213] Checking for cancel request [2026-08-20 16:25:12,483][ INFO][PID:1792213] Checking for cancel request [2026-08-20 16:25:17,485][ INFO][PID:1792213] Checking for cancel request [2026-08-20 16:25:22,489][ INFO][PID:1792213] Checking for cancel request [2026-08-20 16:25:27,491][ INFO][PID:1792213] Checking for cancel request [2026-08-20 16:25:32,492][ INFO][PID:1792213] Checking for cancel request [2026-08-20 16:25:37,493][ INFO][PID:1792213] Checking for cancel request [2026-08-20 16:25:42,496][ INFO][PID:1792213] Checking for cancel request [2026-08-20 16:25:47,497][ INFO][PID:1792213] Checking for cancel request [2026-08-20 16:25:52,499][ INFO][PID:1792213] Checking for cancel request [2026-08-20 16:25:57,501][ INFO][PID:1792213] Checking for cancel request [2026-08-20 16:26:02,502][ INFO][PID:1792213] Checking for cancel request [2026-08-20 16:26:07,503][ INFO][PID:1792213] Checking for cancel request [2026-08-20 16:26:12,505][ INFO][PID:1792213] Checking for cancel request [2026-08-20 16:26:17,506][ INFO][PID:1792213] Checking for cancel request [2026-08-20 16:26:22,508][ INFO][PID:1792213] Checking for cancel request [2026-08-20 16:26:27,509][ INFO][PID:1792213] Checking for cancel request [2026-08-20 16:26:32,511][ INFO][PID:1792213] Checking for cancel request [2026-08-20 16:26:37,512][ INFO][PID:1792213] Checking for cancel request [2026-08-20 16:26:42,514][ INFO][PID:1792213] Checking for cancel request [2026-08-20 16:26:47,516][ INFO][PID:1792213] Checking for cancel request [2026-08-20 16:26:52,517][ INFO][PID:1792213] Checking for cancel request [2026-08-20 16:26:57,518][ INFO][PID:1792213] Checking for cancel request [2026-08-20 16:27:02,521][ INFO][PID:1792213] Checking for cancel request [2026-08-20 16:27:07,522][ INFO][PID:1792213] Checking for cancel request [2026-08-20 16:27:12,523][ INFO][PID:1792213] Checking for cancel request [2026-08-20 16:27:17,525][ INFO][PID:1792213] Checking for cancel request [2026-08-20 16:27:22,526][ INFO][PID:1792213] Checking for cancel request [2026-08-20 16:27:27,528][ INFO][PID:1792213] Checking for cancel request [2026-08-20 16:27:32,529][ INFO][PID:1792213] Checking for cancel request [2026-08-20 16:27:37,530][ INFO][PID:1792213] Checking for cancel request [2026-08-20 16:27:42,537][ INFO][PID:1792213] Checking for cancel request [2026-08-20 16:27:47,539][ INFO][PID:1792213] Checking for cancel request [2026-08-20 16:27:52,540][ INFO][PID:1792213] Checking for cancel request [2026-08-20 16:27:57,541][ INFO][PID:1792213] Checking for cancel request [2026-08-20 16:28:02,543][ INFO][PID:1792213] Checking for cancel request [2026-08-20 16:28:07,550][ INFO][PID:1792213] Checking for cancel request [2026-08-20 16:28:12,552][ INFO][PID:1792213] Checking for cancel request [2026-08-20 16:28:17,555][ INFO][PID:1792213] Checking for cancel request [2026-08-20 16:28:22,556][ INFO][PID:1792213] Checking for cancel request [2026-08-20 16:28:27,558][ INFO][PID:1792213] Checking for cancel request [2026-08-20 16:28:32,559][ INFO][PID:1792213] Checking for cancel request [2026-08-20 16:28:37,561][ INFO][PID:1792213] Checking for cancel request [2026-08-20 16:28:42,563][ INFO][PID:1792213] Checking for cancel request [2026-08-20 16:28:47,564][ INFO][PID:1792213] Checking for cancel request [2026-08-20 16:28:52,566][ INFO][PID:1792213] Checking for cancel request [2026-08-20 16:28:57,567][ INFO][PID:1792213] Checking for cancel request [2026-08-20 16:29:02,569][ INFO][PID:1792213] Checking for cancel request [2026-08-20 16:29:07,571][ INFO][PID:1792213] Checking for cancel request [2026-08-20 16:29:12,572][ INFO][PID:1792213] Checking for cancel request [2026-08-20 16:29:17,575][ INFO][PID:1792213] Checking for cancel request [2026-08-20 16:29:22,577][ INFO][PID:1792213] Checking for cancel request [2026-08-20 16:29:27,579][ INFO][PID:1792213] Checking for cancel request [2026-08-20 16:29:32,581][ INFO][PID:1792213] Checking for cancel request [2026-08-20 16:29:37,584][ INFO][PID:1792213] Checking for cancel request [2026-08-20 16:29:42,589][ INFO][PID:1792213] Checking for cancel request [2026-08-20 16:29:47,593][ INFO][PID:1792213] Checking for cancel request [2026-08-20 16:29:52,595][ INFO][PID:1792213] Checking for cancel request [2026-08-20 16:29:57,596][ INFO][PID:1792213] Checking for cancel request [2026-08-20 16:30:02,598][ INFO][PID:1792213] Checking for cancel request [2026-08-20 16:30:07,599][ INFO][PID:1792213] Checking for cancel request [2026-08-20 16:30:12,601][ INFO][PID:1792213] Checking for cancel request [2026-08-20 16:30:17,602][ INFO][PID:1792213] Checking for cancel request [2026-08-20 16:30:22,603][ INFO][PID:1792213] Checking for cancel request [2026-08-20 16:30:27,605][ INFO][PID:1792213] Checking for cancel request [2026-08-20 16:30:32,608][ INFO][PID:1792213] Checking for cancel request [2026-08-20 16:30:37,609][ INFO][PID:1792213] Checking for cancel request [2026-08-20 16:30:42,610][ INFO][PID:1792213] Checking for cancel request [2026-08-20 16:30:47,612][ INFO][PID:1792213] Checking for cancel request [2026-08-20 16:30:52,613][ INFO][PID:1792213] Checking for cancel request [2026-08-20 16:30:57,615][ INFO][PID:1792213] Checking for cancel request [2026-08-20 16:31:02,616][ INFO][PID:1792213] Checking for cancel request [2026-08-20 16:31:07,618][ INFO][PID:1792213] Checking for cancel request [2026-08-20 16:31:12,619][ INFO][PID:1792213] Checking for cancel request [2026-08-20 16:31:17,620][ INFO][PID:1792213] Checking for cancel request [2026-08-20 16:31:22,622][ INFO][PID:1792213] Checking for cancel request [2026-08-20 16:31:27,623][ INFO][PID:1792213] Checking for cancel request [2026-08-20 16:31:32,625][ INFO][PID:1792213] Checking for cancel request [2026-08-20 16:31:37,626][ INFO][PID:1792213] Checking for cancel request [2026-08-20 16:31:42,627][ INFO][PID:1792213] Checking for cancel request [2026-08-20 16:31:47,629][ INFO][PID:1792213] Checking for cancel request [2026-08-20 16:31:52,630][ INFO][PID:1792213] Checking for cancel request [2026-08-20 16:31:57,631][ INFO][PID:1792213] Checking for cancel request [2026-08-20 16:32:02,633][ INFO][PID:1792213] Checking for cancel request [2026-08-20 16:32:07,635][ INFO][PID:1792213] Checking for cancel request [2026-08-20 16:32:12,642][ INFO][PID:1792213] Checking for cancel request [2026-08-20 16:32:17,643][ INFO][PID:1792213] Checking for cancel request [2026-08-20 16:32:22,645][ INFO][PID:1792213] Checking for cancel request [2026-08-20 16:32:27,647][ INFO][PID:1792213] Checking for cancel request [2026-08-20 16:32:32,648][ INFO][PID:1792213] Checking for cancel request [2026-08-20 16:32:37,650][ INFO][PID:1792213] Checking for cancel request [2026-08-20 16:32:42,651][ INFO][PID:1792213] Checking for cancel request [2026-08-20 16:32:47,652][ INFO][PID:1792213] Checking for cancel request [2026-08-20 16:32:52,653][ INFO][PID:1792213] Checking for cancel request [2026-08-20 16:32:57,655][ INFO][PID:1792213] Checking for cancel request [2026-08-20 16:33:02,656][ INFO][PID:1792213] Checking for cancel request [2026-08-20 16:33:07,658][ INFO][PID:1792213] Checking for cancel request [2026-08-20 16:33:12,660][ INFO][PID:1792213] Checking for cancel request [2026-08-20 16:33:17,661][ INFO][PID:1792213] Checking for cancel request [2026-08-20 16:33:22,663][ INFO][PID:1792213] Checking for cancel request [2026-08-20 16:33:27,666][ INFO][PID:1792213] Checking for cancel request [2026-08-20 16:33:32,681][ INFO][PID:1792213] Periodic builder liveness probe: alive [2026-08-20 16:33:32,681][ INFO][PID:1792213] Checking for cancel request [2026-08-20 16:33:37,683][ INFO][PID:1792213] Checking for cancel request [2026-08-20 16:33:42,685][ INFO][PID:1792213] Checking for cancel request [2026-08-20 16:33:47,686][ INFO][PID:1792213] Checking for cancel request [2026-08-20 16:33:52,692][ INFO][PID:1792213] Checking for cancel request [2026-08-20 16:33:57,693][ INFO][PID:1792213] Checking for cancel request [2026-08-20 16:34:02,696][ INFO][PID:1792213] Checking for cancel request [2026-08-20 16:34:07,698][ INFO][PID:1792213] Checking for cancel request [2026-08-20 16:34:12,703][ INFO][PID:1792213] Checking for cancel request [2026-08-20 16:34:17,704][ INFO][PID:1792213] Checking for cancel request [2026-08-20 16:34:22,706][ INFO][PID:1792213] Checking for cancel request [2026-08-20 16:34:27,708][ INFO][PID:1792213] Checking for cancel request [2026-08-20 16:34:32,709][ INFO][PID:1792213] Checking for cancel request [2026-08-20 16:34:37,711][ INFO][PID:1792213] Checking for cancel request [2026-08-20 16:34:42,713][ INFO][PID:1792213] Checking for cancel request [2026-08-20 16:34:47,716][ INFO][PID:1792213] Checking for cancel request [2026-08-20 16:34:52,718][ INFO][PID:1792213] Checking for cancel request [2026-08-20 16:34:57,720][ INFO][PID:1792213] Checking for cancel request [2026-08-20 16:35:02,723][ INFO][PID:1792213] Checking for cancel request [2026-08-20 16:35:03,160][ INFO][PID:1792213] Downloading results from builder [2026-08-20 16:35:03,161][ INFO][PID:1792213] rsyncing of mockbuilder@54.243.15.49:/var/lib/copr-rpmbuild/results/ to /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5531/srpm-builds/10885196 started [2026-08-20 16:35:03,164][ INFO][PID:1792213] Popen command started: /usr/bin/rsync -rltDvH --chmod=D755,F644 -e 'ssh -F /home/copr/.ssh/config' mockbuilder@54.243.15.49:/var/lib/copr-rpmbuild/results/ /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5531/srpm-builds/10885196/ &> /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5531/srpm-builds/10885196/build-10885196.rsync.log [2026-08-20 16:35:11,143][ INFO][PID:1792213] rsyncing finished. [2026-08-20 16:35:11,149][ INFO][PID:1792213] VM Release request [2026-08-20 16:35:11,175][ INFO][PID:1792213] Searching for 'success' file in resultdir [2026-08-20 16:35:11,178][ INFO][PID:1792213] Getting build details [2026-08-20 16:35:11,179][ INFO][PID:1792213] Retrieving SRPM info from /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5531/srpm-builds/10885196 [2026-08-20 16:35:11,181][ INFO][PID:1792213] SRPM URL: https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5531/srpm-builds/10885196/Sunshine-0.0.5531-1.src.rpm [2026-08-20 16:35:11,183][ INFO][PID:1792213] build details: {'srpm_url': 'https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5531/srpm-builds/10885196/Sunshine-0.0.5531-1.src.rpm', 'pkg_name': 'Sunshine', 'pkg_version': '0.0.5531-1'} [2026-08-20 16:35:11,184][ INFO][PID:1792213] Finished build: id=10885196 failed=False timeout=108000 destdir=/var/lib/copr/public_html/results/lizardbyte/pulls:pr:5531 chroot=srpm-builds [2026-08-20 16:35:11,189][ INFO][PID:1792213] Worker succeeded build, took 705.1603105068207 [2026-08-20 16:35:11,191][ INFO][PID:1792213] 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:5531", "submitter": null, "ended_on": 1787243711.1898015, "started_on": 1787243006.029491, "submitted_on": null, "status": 1, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10885196", "build_id": 10885196, "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\": \"tmph9v06rkg\", \"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:5531/srpm-builds/10885196/Sunshine-0.0.5531-1.src.rpm", "uses_devel_repo": null, "sandbox": "lizardbyte/pulls--1adb5b77-1458-4a1d-90b7-5b232cee62e7", "results": { "architecture_specific_tags": { "fedora-43": {}, "fedora-44": {}, "fedora-45": {}, "fedora-rawhide": {} }, "name": "Sunshine", "epoch": null, "version": "0.0.5531", "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:5531", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5531", "result_dir": "10885196", "built_packages": "", "tags": [ "arch_x86_64" ], "rpmeta_prediction": null, "pkg_version": "0.0.5531-1", "id": 10885196, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2026-08-20 16:35:11,259][ INFO][PID:1792213] Sending fedora-messaging bus message in build.end [2026-08-20 16:35:11,302][ INFO][PID:1792213] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5531/srpm-builds/10885196/builder-live.log by gzip [2026-08-20 16:35:11,309][ INFO][PID:1792213] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5531/srpm-builds/10885196/builder-live.log' as PID 1859166 [2026-08-20 16:35:11,342][ INFO][PID:1792213] Finished after 0 seconds with exit code 0 (gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5531/srpm-builds/10885196/builder-live.log) [2026-08-20 16:35:11,348][ INFO][PID:1792213] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5531/srpm-builds/10885196/backend.log by gzip [2026-08-20 16:35:11,352][ INFO][PID:1792213] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5531/srpm-builds/10885196/backend.log' as PID 1859178