[2026-08-21 14:35:06,132][ INFO][PID:3434048] Marking build as starting [2026-08-21 14:35:06,180][ INFO][PID:3434048] Checking for cancel request [2026-08-21 14:35:06,182][ INFO][PID:3434048] VM allocation process starts [2026-08-21 14:35:06,202][ INFO][PID:3434048] Trying to allocate VM: ResallocHost, ticket_id=4561530, requested_tags=['arch_x86_64', 'copr_builder'] [2026-08-21 14:35:09,240][ INFO][PID:3434048] Allocated host ResallocHost, ticket_id=4561530, hostname=34.227.161.45, name=aws_x86_64_reserved_prod_19675719_20260821_143143, requested_tags=['arch_x86_64', 'copr_builder'] [2026-08-21 14:35:09,240][ INFO][PID:3434048] Allocating ssh connection to builder [2026-08-21 14:35:09,241][ INFO][PID:3434048] Checking that builder machine is OK [2026-08-21 14:35:09,564][ INFO][PID:3434048] Installed copr-rpmbuild version: 1.9 [2026-08-21 14:35:09,565][ INFO][PID:3434048] Running remote command: copr-builder-ready srpm-builds [2026-08-21 14:35:09,756][ INFO][PID:3434048] Red Hat subscription not needed for srpm-builds Builder is ready to be used [2026-08-21 14:35:09,757][ INFO][PID:3434048] Filling build.info file with builder info [2026-08-21 14:35:09,780][ INFO][PID:3434048] Checking for cancel request [2026-08-21 14:35:09,782][ INFO][PID:3434048] 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:4926", "submitter": null, "ended_on": null, "started_on": 1787322909.7819483, "submitted_on": null, "status": 3, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10888737", "build_id": 10888737, "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\": \"tmp4mdrmwig\", \"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--dd1a6d71-333f-4dea-af51-6b93b39fbb9b", "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:4926", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:4926", "result_dir": "10888737", "built_packages": "", "tags": [ "arch_x86_64" ], "rpmeta_prediction": null, "id": 10888737, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2026-08-21 14:35:09,820][ INFO][PID:3434048] Sending fedora-messaging bus message in build.start [2026-08-21 14:35:10,504][ INFO][PID:3434048] Sending fedora-messaging bus message in chroot.start [2026-08-21 14:35:10,535][ INFO][PID:3434048] Starting remote build: copr-rpmbuild --verbose --drop-resultdir --srpm --task-url https://copr.fedorainfracloud.org/backend/get-srpm-build-task/10888737 --detached [2026-08-21 14:35:11,006][ INFO][PID:3434048] The copr-rpmbuild seems started, per: stdout: stderr: Warning: Permanently added '34.227.161.45' (ED25519) to the list of known hosts. [2026-08-21 14:35:11,008][ INFO][PID:3434048] Downloading the builder-live.log file, attempt 1 [2026-08-21 14:35:11,010][ INFO][PID:3434048] Popen command started: ssh -F /home/copr/.ssh/config mockbuilder@34.227.161.45 copr-rpmbuild-log [2026-08-21 14:35:16,019][ INFO][PID:3434048] Periodic builder liveness probe: alive [2026-08-21 14:35:16,020][ INFO][PID:3434048] Checking for cancel request [2026-08-21 14:35:21,022][ INFO][PID:3434048] Checking for cancel request [2026-08-21 14:35:26,024][ INFO][PID:3434048] Checking for cancel request [2026-08-21 14:35:31,027][ INFO][PID:3434048] Checking for cancel request [2026-08-21 14:35:36,030][ INFO][PID:3434048] Checking for cancel request [2026-08-21 14:35:41,032][ INFO][PID:3434048] Checking for cancel request [2026-08-21 14:35:46,034][ INFO][PID:3434048] Checking for cancel request [2026-08-21 14:35:51,035][ INFO][PID:3434048] Checking for cancel request [2026-08-21 14:35:56,037][ INFO][PID:3434048] Checking for cancel request [2026-08-21 14:36:01,038][ INFO][PID:3434048] Checking for cancel request [2026-08-21 14:36:06,039][ INFO][PID:3434048] Checking for cancel request [2026-08-21 14:36:11,041][ INFO][PID:3434048] Checking for cancel request [2026-08-21 14:36:16,043][ INFO][PID:3434048] Checking for cancel request [2026-08-21 14:36:21,045][ INFO][PID:3434048] Checking for cancel request [2026-08-21 14:36:26,046][ INFO][PID:3434048] Checking for cancel request [2026-08-21 14:36:31,047][ INFO][PID:3434048] Checking for cancel request [2026-08-21 14:36:36,051][ INFO][PID:3434048] Checking for cancel request [2026-08-21 14:36:41,053][ INFO][PID:3434048] Checking for cancel request [2026-08-21 14:36:46,054][ INFO][PID:3434048] Checking for cancel request [2026-08-21 14:36:51,056][ INFO][PID:3434048] Checking for cancel request [2026-08-21 14:36:56,057][ INFO][PID:3434048] Checking for cancel request [2026-08-21 14:37:01,059][ INFO][PID:3434048] Checking for cancel request [2026-08-21 14:37:06,065][ INFO][PID:3434048] Checking for cancel request [2026-08-21 14:37:11,066][ INFO][PID:3434048] Checking for cancel request [2026-08-21 14:37:16,069][ INFO][PID:3434048] Checking for cancel request [2026-08-21 14:37:21,070][ INFO][PID:3434048] Checking for cancel request [2026-08-21 14:37:26,072][ INFO][PID:3434048] Checking for cancel request [2026-08-21 14:37:31,073][ INFO][PID:3434048] Checking for cancel request [2026-08-21 14:37:36,076][ INFO][PID:3434048] Checking for cancel request [2026-08-21 14:37:41,079][ INFO][PID:3434048] Checking for cancel request [2026-08-21 14:37:46,081][ INFO][PID:3434048] Checking for cancel request [2026-08-21 14:37:51,084][ INFO][PID:3434048] Checking for cancel request [2026-08-21 14:37:56,085][ INFO][PID:3434048] Checking for cancel request [2026-08-21 14:38:01,087][ INFO][PID:3434048] Checking for cancel request [2026-08-21 14:38:06,089][ INFO][PID:3434048] Checking for cancel request [2026-08-21 14:38:11,090][ INFO][PID:3434048] Checking for cancel request [2026-08-21 14:38:16,092][ INFO][PID:3434048] Checking for cancel request [2026-08-21 14:38:21,097][ INFO][PID:3434048] Checking for cancel request [2026-08-21 14:38:26,098][ INFO][PID:3434048] Checking for cancel request [2026-08-21 14:38:31,100][ INFO][PID:3434048] Checking for cancel request [2026-08-21 14:38:36,101][ INFO][PID:3434048] Checking for cancel request [2026-08-21 14:38:41,103][ INFO][PID:3434048] Checking for cancel request [2026-08-21 14:38:46,177][ INFO][PID:3434048] Checking for cancel request [2026-08-21 14:38:51,179][ INFO][PID:3434048] Checking for cancel request [2026-08-21 14:38:56,183][ INFO][PID:3434048] Checking for cancel request [2026-08-21 14:39:01,184][ INFO][PID:3434048] Checking for cancel request [2026-08-21 14:39:06,186][ INFO][PID:3434048] Checking for cancel request [2026-08-21 14:39:11,188][ INFO][PID:3434048] Checking for cancel request [2026-08-21 14:39:16,222][ INFO][PID:3434048] Checking for cancel request [2026-08-21 14:39:21,237][ INFO][PID:3434048] Checking for cancel request [2026-08-21 14:39:26,287][ INFO][PID:3434048] Checking for cancel request [2026-08-21 14:39:31,419][ INFO][PID:3434048] Checking for cancel request [2026-08-21 14:39:36,431][ INFO][PID:3434048] Checking for cancel request [2026-08-21 14:39:41,684][ INFO][PID:3434048] Checking for cancel request [2026-08-21 14:39:46,697][ INFO][PID:3434048] Checking for cancel request [2026-08-21 14:39:51,908][ INFO][PID:3434048] Checking for cancel request [2026-08-21 14:39:57,741][ INFO][PID:3434048] Checking for cancel request [2026-08-21 14:40:02,742][ INFO][PID:3434048] Checking for cancel request [2026-08-21 14:40:07,744][ INFO][PID:3434048] Checking for cancel request [2026-08-21 14:40:12,747][ INFO][PID:3434048] Checking for cancel request [2026-08-21 14:40:17,749][ INFO][PID:3434048] Checking for cancel request [2026-08-21 14:40:22,752][ INFO][PID:3434048] Checking for cancel request [2026-08-21 14:40:27,754][ INFO][PID:3434048] Checking for cancel request [2026-08-21 14:40:32,756][ INFO][PID:3434048] Checking for cancel request [2026-08-21 14:40:37,758][ INFO][PID:3434048] Checking for cancel request [2026-08-21 14:40:42,762][ INFO][PID:3434048] Checking for cancel request [2026-08-21 14:40:47,764][ INFO][PID:3434048] Checking for cancel request [2026-08-21 14:40:52,768][ INFO][PID:3434048] Checking for cancel request [2026-08-21 14:40:57,772][ INFO][PID:3434048] Checking for cancel request [2026-08-21 14:41:02,776][ INFO][PID:3434048] Checking for cancel request [2026-08-21 14:41:07,778][ INFO][PID:3434048] Checking for cancel request [2026-08-21 14:41:12,781][ INFO][PID:3434048] Checking for cancel request [2026-08-21 14:41:17,785][ INFO][PID:3434048] Checking for cancel request [2026-08-21 14:41:22,787][ INFO][PID:3434048] Checking for cancel request [2026-08-21 14:41:27,789][ INFO][PID:3434048] Checking for cancel request [2026-08-21 14:41:32,791][ INFO][PID:3434048] Checking for cancel request [2026-08-21 14:41:37,803][ INFO][PID:3434048] Checking for cancel request [2026-08-21 14:41:44,260][ INFO][PID:3434048] Checking for cancel request [2026-08-21 14:41:49,261][ INFO][PID:3434048] Checking for cancel request [2026-08-21 14:41:54,271][ INFO][PID:3434048] Checking for cancel request [2026-08-21 14:41:59,272][ INFO][PID:3434048] Checking for cancel request [2026-08-21 14:42:04,275][ INFO][PID:3434048] Checking for cancel request [2026-08-21 14:42:09,279][ INFO][PID:3434048] Checking for cancel request [2026-08-21 14:42:14,287][ INFO][PID:3434048] Checking for cancel request [2026-08-21 14:42:19,290][ INFO][PID:3434048] Checking for cancel request [2026-08-21 14:42:24,294][ INFO][PID:3434048] Checking for cancel request [2026-08-21 14:42:29,298][ INFO][PID:3434048] Checking for cancel request [2026-08-21 14:42:34,300][ INFO][PID:3434048] Checking for cancel request [2026-08-21 14:42:39,309][ INFO][PID:3434048] Checking for cancel request [2026-08-21 14:42:44,311][ INFO][PID:3434048] Checking for cancel request [2026-08-21 14:42:58,458][ INFO][PID:3434048] Checking for cancel request [2026-08-21 14:43:03,459][ INFO][PID:3434048] Checking for cancel request [2026-08-21 14:43:08,462][ INFO][PID:3434048] Checking for cancel request [2026-08-21 14:43:13,464][ INFO][PID:3434048] Checking for cancel request [2026-08-21 14:43:18,472][ INFO][PID:3434048] Checking for cancel request [2026-08-21 14:43:23,474][ INFO][PID:3434048] Checking for cancel request [2026-08-21 14:43:28,478][ INFO][PID:3434048] Checking for cancel request [2026-08-21 14:43:33,482][ INFO][PID:3434048] Checking for cancel request [2026-08-21 14:43:38,484][ INFO][PID:3434048] Checking for cancel request [2026-08-21 14:43:43,485][ INFO][PID:3434048] Checking for cancel request [2026-08-21 14:43:48,489][ INFO][PID:3434048] Checking for cancel request [2026-08-21 14:43:53,493][ INFO][PID:3434048] Checking for cancel request [2026-08-21 14:43:58,496][ INFO][PID:3434048] Checking for cancel request [2026-08-21 14:44:03,498][ INFO][PID:3434048] Checking for cancel request [2026-08-21 14:44:08,501][ INFO][PID:3434048] Checking for cancel request [2026-08-21 14:44:13,502][ INFO][PID:3434048] Checking for cancel request [2026-08-21 14:44:18,504][ INFO][PID:3434048] Checking for cancel request [2026-08-21 14:44:23,507][ INFO][PID:3434048] Checking for cancel request [2026-08-21 14:44:28,511][ INFO][PID:3434048] Checking for cancel request [2026-08-21 14:44:33,514][ INFO][PID:3434048] Checking for cancel request [2026-08-21 14:44:38,516][ INFO][PID:3434048] Checking for cancel request [2026-08-21 14:44:43,518][ INFO][PID:3434048] Checking for cancel request [2026-08-21 14:44:48,520][ INFO][PID:3434048] Checking for cancel request [2026-08-21 14:44:53,521][ INFO][PID:3434048] Checking for cancel request [2026-08-21 14:44:58,524][ INFO][PID:3434048] Checking for cancel request [2026-08-21 14:45:03,526][ INFO][PID:3434048] Checking for cancel request [2026-08-21 14:45:08,528][ INFO][PID:3434048] Checking for cancel request [2026-08-21 14:45:13,530][ INFO][PID:3434048] Checking for cancel request [2026-08-21 14:45:18,558][ INFO][PID:3434048] Periodic builder liveness probe: alive [2026-08-21 14:45:18,559][ INFO][PID:3434048] Checking for cancel request [2026-08-21 14:45:23,560][ INFO][PID:3434048] Checking for cancel request [2026-08-21 14:45:28,561][ INFO][PID:3434048] Checking for cancel request [2026-08-21 14:45:33,563][ INFO][PID:3434048] Checking for cancel request [2026-08-21 14:45:38,565][ INFO][PID:3434048] Checking for cancel request [2026-08-21 14:45:43,567][ INFO][PID:3434048] Checking for cancel request [2026-08-21 14:45:48,569][ INFO][PID:3434048] Checking for cancel request [2026-08-21 14:45:53,572][ INFO][PID:3434048] Checking for cancel request [2026-08-21 14:45:58,573][ INFO][PID:3434048] Checking for cancel request [2026-08-21 14:46:03,576][ INFO][PID:3434048] Checking for cancel request [2026-08-21 14:46:08,578][ INFO][PID:3434048] Checking for cancel request [2026-08-21 14:46:13,580][ INFO][PID:3434048] Checking for cancel request [2026-08-21 14:46:18,582][ INFO][PID:3434048] Checking for cancel request [2026-08-21 14:46:18,591][ INFO][PID:3434048] Downloading results from builder [2026-08-21 14:46:18,594][ INFO][PID:3434048] rsyncing of mockbuilder@34.227.161.45:/var/lib/copr-rpmbuild/results/ to /var/lib/copr/public_html/results/lizardbyte/pulls:pr:4926/srpm-builds/10888737 started [2026-08-21 14:46:18,601][ INFO][PID:3434048] Popen command started: /usr/bin/rsync -rltDvH --chmod=D755,F644 -e 'ssh -F /home/copr/.ssh/config' mockbuilder@34.227.161.45:/var/lib/copr-rpmbuild/results/ /var/lib/copr/public_html/results/lizardbyte/pulls:pr:4926/srpm-builds/10888737/ &> /var/lib/copr/public_html/results/lizardbyte/pulls:pr:4926/srpm-builds/10888737/build-10888737.rsync.log [2026-08-21 14:57:06,440][ INFO][PID:3434048] rsyncing finished. [2026-08-21 14:57:06,448][ INFO][PID:3434048] VM Release request [2026-08-21 14:57:06,486][ INFO][PID:3434048] Searching for 'success' file in resultdir [2026-08-21 14:57:06,489][ INFO][PID:3434048] Getting build details [2026-08-21 14:57:06,490][ INFO][PID:3434048] Retrieving SRPM info from /var/lib/copr/public_html/results/lizardbyte/pulls:pr:4926/srpm-builds/10888737 [2026-08-21 14:57:06,492][ INFO][PID:3434048] SRPM URL: https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:4926/srpm-builds/10888737/Sunshine-0.0.4926-1.src.rpm [2026-08-21 14:57:06,493][ INFO][PID:3434048] build details: {'srpm_url': 'https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:4926/srpm-builds/10888737/Sunshine-0.0.4926-1.src.rpm', 'pkg_name': 'Sunshine', 'pkg_version': '0.0.4926-1'} [2026-08-21 14:57:06,494][ INFO][PID:3434048] Finished build: id=10888737 failed=False timeout=108000 destdir=/var/lib/copr/public_html/results/lizardbyte/pulls:pr:4926 chroot=srpm-builds [2026-08-21 14:57:06,497][ INFO][PID:3434048] Worker succeeded build, took 1316.7158830165863 [2026-08-21 14:57:06,499][ INFO][PID:3434048] 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:4926", "submitter": null, "ended_on": 1787324226.4978313, "started_on": 1787322909.7819483, "submitted_on": null, "status": 1, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10888737", "build_id": 10888737, "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\": \"tmp4mdrmwig\", \"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:4926/srpm-builds/10888737/Sunshine-0.0.4926-1.src.rpm", "uses_devel_repo": null, "sandbox": "lizardbyte/pulls--dd1a6d71-333f-4dea-af51-6b93b39fbb9b", "results": { "architecture_specific_tags": { "fedora-43": {}, "fedora-44": {}, "fedora-45": {}, "fedora-rawhide": {} }, "name": "Sunshine", "epoch": null, "version": "0.0.4926", "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:4926", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:4926", "result_dir": "10888737", "built_packages": "", "tags": [ "arch_x86_64" ], "rpmeta_prediction": null, "pkg_version": "0.0.4926-1", "id": 10888737, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2026-08-21 14:57:06,572][ INFO][PID:3434048] Sending fedora-messaging bus message in build.end [2026-08-21 14:57:06,618][ INFO][PID:3434048] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:4926/srpm-builds/10888737/builder-live.log by gzip [2026-08-21 14:57:06,620][ INFO][PID:3434048] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:4926/srpm-builds/10888737/builder-live.log' as PID 3609459 [2026-08-21 14:57:06,710][ INFO][PID:3434048] Finished after 0 seconds with exit code 0 (gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:4926/srpm-builds/10888737/builder-live.log) [2026-08-21 14:57:06,711][ INFO][PID:3434048] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:4926/srpm-builds/10888737/backend.log by gzip [2026-08-21 14:57:06,713][ INFO][PID:3434048] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:4926/srpm-builds/10888737/backend.log' as PID 3609464