[2026-09-16 15:31:15,052][ INFO][PID:1228774] Marking build as starting [2026-09-16 15:31:15,081][ INFO][PID:1228774] Checking for cancel request [2026-09-16 15:31:15,082][ INFO][PID:1228774] VM allocation process starts [2026-09-16 15:31:15,087][ INFO][PID:1228774] Trying to allocate VM: ResallocHost, ticket_id=5064468, requested_tags=['arch_x86_64', 'copr_builder'] [2026-09-16 15:31:18,096][ INFO][PID:1228774] Allocated host ResallocHost, ticket_id=5064468, hostname=44.202.127.22, name=aws_x86_64_reserved_prod_38688869_20260916_152331, requested_tags=['arch_x86_64', 'copr_builder'] [2026-09-16 15:31:18,096][ INFO][PID:1228774] Allocating ssh connection to builder [2026-09-16 15:31:18,096][ INFO][PID:1228774] Checking that builder machine is OK [2026-09-16 15:31:18,387][ INFO][PID:1228774] Installed copr-rpmbuild version: 1.9 [2026-09-16 15:31:18,388][ INFO][PID:1228774] Running remote command: copr-builder-ready srpm-builds [2026-09-16 15:31:18,546][ INFO][PID:1228774] Red Hat subscription not needed for srpm-builds Builder is ready to be used [2026-09-16 15:31:18,547][ INFO][PID:1228774] Filling build.info file with builder info [2026-09-16 15:31:18,547][ INFO][PID:1228774] Checking for cancel request [2026-09-16 15:31:18,548][ INFO][PID:1228774] 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:5736", "submitter": null, "ended_on": null, "started_on": 1789572678.5481145, "submitted_on": null, "status": 3, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10992524", "build_id": 10992524, "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\": \"tmpajh0d825\", \"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--fb09e0b6-d086-4792-bdc5-3a490ed6086b", "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", "opensuse-leap-16.0", "opensuse-tumbleweed" ], "distributions_in_project": [ "fedora-43", "fedora-44", "fedora-45", "fedora-rawhide", "opensuse-leap-16.0", "opensuse-tumbleweed" ], "destdir": "/var/lib/copr/public_html/results/lizardbyte/pulls:pr:5736", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5736", "result_dir": "10992524", "built_packages": "", "tags": [ "arch_x86_64" ], "rpmeta_prediction": null, "id": 10992524, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2026-09-16 15:31:18,578][ INFO][PID:1228774] Sending fedora-messaging bus message in build.start [2026-09-16 15:31:18,935][ INFO][PID:1228774] Sending fedora-messaging bus message in chroot.start [2026-09-16 15:31:18,955][ INFO][PID:1228774] Starting remote build: copr-rpmbuild --verbose --drop-resultdir --srpm --task-url https://copr.fedorainfracloud.org/backend/get-srpm-build-task/10992524 --detached [2026-09-16 15:31:19,382][ INFO][PID:1228774] The copr-rpmbuild seems started, per: stdout: stderr: Warning: Permanently added '44.202.127.22' (ED25519) to the list of known hosts. [2026-09-16 15:31:19,383][ INFO][PID:1228774] Downloading the builder-live.log file, attempt 1 [2026-09-16 15:31:19,384][ INFO][PID:1228774] Popen command started: ssh -F /home/copr/.ssh/config mockbuilder@44.202.127.22 copr-rpmbuild-log [2026-09-16 15:31:24,389][ INFO][PID:1228774] Periodic builder liveness probe: alive [2026-09-16 15:31:24,389][ INFO][PID:1228774] Checking for cancel request [2026-09-16 15:31:29,390][ INFO][PID:1228774] Checking for cancel request [2026-09-16 15:31:34,391][ INFO][PID:1228774] Checking for cancel request [2026-09-16 15:31:39,391][ INFO][PID:1228774] Checking for cancel request [2026-09-16 15:31:44,392][ INFO][PID:1228774] Checking for cancel request [2026-09-16 15:31:49,393][ INFO][PID:1228774] Checking for cancel request [2026-09-16 15:31:54,394][ INFO][PID:1228774] Checking for cancel request [2026-09-16 15:31:59,395][ INFO][PID:1228774] Checking for cancel request [2026-09-16 15:32:04,396][ INFO][PID:1228774] Checking for cancel request [2026-09-16 15:32:09,396][ INFO][PID:1228774] Checking for cancel request [2026-09-16 15:32:14,397][ INFO][PID:1228774] Checking for cancel request [2026-09-16 15:32:19,398][ INFO][PID:1228774] Checking for cancel request [2026-09-16 15:32:24,400][ INFO][PID:1228774] Checking for cancel request [2026-09-16 15:32:29,400][ INFO][PID:1228774] Checking for cancel request [2026-09-16 15:32:34,401][ INFO][PID:1228774] Checking for cancel request [2026-09-16 15:32:39,402][ INFO][PID:1228774] Checking for cancel request [2026-09-16 15:32:44,403][ INFO][PID:1228774] Checking for cancel request [2026-09-16 15:32:49,404][ INFO][PID:1228774] Checking for cancel request [2026-09-16 15:32:54,405][ INFO][PID:1228774] Checking for cancel request [2026-09-16 15:32:59,406][ INFO][PID:1228774] Checking for cancel request [2026-09-16 15:33:04,406][ INFO][PID:1228774] Checking for cancel request [2026-09-16 15:33:09,407][ INFO][PID:1228774] Checking for cancel request [2026-09-16 15:33:14,408][ INFO][PID:1228774] Checking for cancel request [2026-09-16 15:33:19,409][ INFO][PID:1228774] Checking for cancel request [2026-09-16 15:33:24,410][ INFO][PID:1228774] Checking for cancel request [2026-09-16 15:33:29,410][ INFO][PID:1228774] Checking for cancel request [2026-09-16 15:33:34,411][ INFO][PID:1228774] Checking for cancel request [2026-09-16 15:33:39,412][ INFO][PID:1228774] Checking for cancel request [2026-09-16 15:33:44,413][ INFO][PID:1228774] Checking for cancel request [2026-09-16 15:33:49,413][ INFO][PID:1228774] Checking for cancel request [2026-09-16 15:33:54,414][ INFO][PID:1228774] Checking for cancel request [2026-09-16 15:33:59,415][ INFO][PID:1228774] Checking for cancel request [2026-09-16 15:34:04,416][ INFO][PID:1228774] Checking for cancel request [2026-09-16 15:34:09,417][ INFO][PID:1228774] Checking for cancel request [2026-09-16 15:34:14,417][ INFO][PID:1228774] Checking for cancel request [2026-09-16 15:34:19,418][ INFO][PID:1228774] Checking for cancel request [2026-09-16 15:34:24,419][ INFO][PID:1228774] Checking for cancel request [2026-09-16 15:34:29,420][ INFO][PID:1228774] Checking for cancel request [2026-09-16 15:34:34,421][ INFO][PID:1228774] Checking for cancel request [2026-09-16 15:34:39,421][ INFO][PID:1228774] Checking for cancel request [2026-09-16 15:34:44,422][ INFO][PID:1228774] Checking for cancel request [2026-09-16 15:34:49,423][ INFO][PID:1228774] Checking for cancel request [2026-09-16 15:34:54,424][ INFO][PID:1228774] Checking for cancel request [2026-09-16 15:34:59,425][ INFO][PID:1228774] Checking for cancel request [2026-09-16 15:35:04,632][ INFO][PID:1228774] Checking for cancel request [2026-09-16 15:35:09,633][ INFO][PID:1228774] Checking for cancel request [2026-09-16 15:35:14,634][ INFO][PID:1228774] Checking for cancel request [2026-09-16 15:35:19,635][ INFO][PID:1228774] Checking for cancel request [2026-09-16 15:35:24,636][ INFO][PID:1228774] Checking for cancel request [2026-09-16 15:35:29,636][ INFO][PID:1228774] Checking for cancel request [2026-09-16 15:35:34,637][ INFO][PID:1228774] Checking for cancel request [2026-09-16 15:35:39,638][ INFO][PID:1228774] Checking for cancel request [2026-09-16 15:35:44,639][ INFO][PID:1228774] Checking for cancel request [2026-09-16 15:35:49,640][ INFO][PID:1228774] Checking for cancel request [2026-09-16 15:35:54,640][ INFO][PID:1228774] Checking for cancel request [2026-09-16 15:35:59,641][ INFO][PID:1228774] Checking for cancel request [2026-09-16 15:36:04,642][ INFO][PID:1228774] Checking for cancel request [2026-09-16 15:36:09,643][ INFO][PID:1228774] Checking for cancel request [2026-09-16 15:36:14,644][ INFO][PID:1228774] Checking for cancel request [2026-09-16 15:36:19,645][ INFO][PID:1228774] Checking for cancel request [2026-09-16 15:36:24,646][ INFO][PID:1228774] Checking for cancel request [2026-09-16 15:36:29,647][ INFO][PID:1228774] Checking for cancel request [2026-09-16 15:36:34,648][ INFO][PID:1228774] Checking for cancel request [2026-09-16 15:36:39,649][ INFO][PID:1228774] Checking for cancel request [2026-09-16 15:36:44,649][ INFO][PID:1228774] Checking for cancel request [2026-09-16 15:36:49,650][ INFO][PID:1228774] Checking for cancel request [2026-09-16 15:36:54,651][ INFO][PID:1228774] Checking for cancel request [2026-09-16 15:36:59,652][ INFO][PID:1228774] Checking for cancel request [2026-09-16 15:37:04,653][ INFO][PID:1228774] Checking for cancel request [2026-09-16 15:37:09,694][ INFO][PID:1228774] Checking for cancel request [2026-09-16 15:37:14,695][ INFO][PID:1228774] Checking for cancel request [2026-09-16 15:37:19,698][ INFO][PID:1228774] Checking for cancel request [2026-09-16 15:37:24,700][ INFO][PID:1228774] Checking for cancel request [2026-09-16 15:37:29,701][ INFO][PID:1228774] Checking for cancel request [2026-09-16 15:37:34,703][ INFO][PID:1228774] Checking for cancel request [2026-09-16 15:37:39,704][ INFO][PID:1228774] Checking for cancel request [2026-09-16 15:37:44,705][ INFO][PID:1228774] Checking for cancel request [2026-09-16 15:37:49,706][ INFO][PID:1228774] Checking for cancel request [2026-09-16 15:37:54,707][ INFO][PID:1228774] Checking for cancel request [2026-09-16 15:37:59,708][ INFO][PID:1228774] Checking for cancel request [2026-09-16 15:38:04,709][ INFO][PID:1228774] Checking for cancel request [2026-09-16 15:38:09,710][ INFO][PID:1228774] Checking for cancel request [2026-09-16 15:38:14,711][ INFO][PID:1228774] Checking for cancel request [2026-09-16 15:38:19,712][ INFO][PID:1228774] Checking for cancel request [2026-09-16 15:38:24,714][ INFO][PID:1228774] Checking for cancel request [2026-09-16 15:38:30,134][ INFO][PID:1228774] Checking for cancel request [2026-09-16 15:38:35,136][ INFO][PID:1228774] Checking for cancel request [2026-09-16 15:38:40,138][ INFO][PID:1228774] Checking for cancel request [2026-09-16 15:38:45,141][ INFO][PID:1228774] Checking for cancel request [2026-09-16 15:38:50,142][ INFO][PID:1228774] Checking for cancel request [2026-09-16 15:38:55,143][ INFO][PID:1228774] Checking for cancel request [2026-09-16 15:39:00,145][ INFO][PID:1228774] Checking for cancel request [2026-09-16 15:39:05,145][ INFO][PID:1228774] Checking for cancel request [2026-09-16 15:39:10,147][ INFO][PID:1228774] Checking for cancel request [2026-09-16 15:39:15,148][ INFO][PID:1228774] Checking for cancel request [2026-09-16 15:39:20,149][ INFO][PID:1228774] Checking for cancel request [2026-09-16 15:39:25,150][ INFO][PID:1228774] Checking for cancel request [2026-09-16 15:39:30,151][ INFO][PID:1228774] Checking for cancel request [2026-09-16 15:39:35,152][ INFO][PID:1228774] Checking for cancel request [2026-09-16 15:39:40,471][ INFO][PID:1228774] Checking for cancel request [2026-09-16 15:39:45,473][ INFO][PID:1228774] Checking for cancel request [2026-09-16 15:39:50,474][ INFO][PID:1228774] Checking for cancel request [2026-09-16 15:39:55,475][ INFO][PID:1228774] Checking for cancel request [2026-09-16 15:40:00,476][ INFO][PID:1228774] Checking for cancel request [2026-09-16 15:40:05,477][ INFO][PID:1228774] Checking for cancel request [2026-09-16 15:40:10,479][ INFO][PID:1228774] Checking for cancel request [2026-09-16 15:40:15,480][ INFO][PID:1228774] Checking for cancel request [2026-09-16 15:40:20,481][ INFO][PID:1228774] Checking for cancel request [2026-09-16 15:40:25,521][ INFO][PID:1228774] Checking for cancel request [2026-09-16 15:40:30,523][ INFO][PID:1228774] Checking for cancel request [2026-09-16 15:40:35,524][ INFO][PID:1228774] Checking for cancel request [2026-09-16 15:40:40,526][ INFO][PID:1228774] Checking for cancel request [2026-09-16 15:40:45,813][ INFO][PID:1228774] Checking for cancel request [2026-09-16 15:40:50,815][ INFO][PID:1228774] Checking for cancel request [2026-09-16 15:40:55,816][ INFO][PID:1228774] Checking for cancel request [2026-09-16 15:41:00,864][ INFO][PID:1228774] Checking for cancel request [2026-09-16 15:41:05,864][ INFO][PID:1228774] Checking for cancel request [2026-09-16 15:41:10,865][ INFO][PID:1228774] Checking for cancel request [2026-09-16 15:41:15,866][ INFO][PID:1228774] Checking for cancel request [2026-09-16 15:41:21,143][ INFO][PID:1228774] Checking for cancel request [2026-09-16 15:41:26,148][ INFO][PID:1228774] Periodic builder liveness probe: alive [2026-09-16 15:41:26,181][ INFO][PID:1228774] Checking for cancel request [2026-09-16 15:41:31,183][ INFO][PID:1228774] Checking for cancel request [2026-09-16 15:41:36,184][ INFO][PID:1228774] Checking for cancel request [2026-09-16 15:41:41,366][ INFO][PID:1228774] Checking for cancel request [2026-09-16 15:41:46,367][ INFO][PID:1228774] Checking for cancel request [2026-09-16 15:41:51,368][ INFO][PID:1228774] Checking for cancel request [2026-09-16 15:41:56,370][ INFO][PID:1228774] Checking for cancel request [2026-09-16 15:42:01,372][ INFO][PID:1228774] Checking for cancel request [2026-09-16 15:42:06,373][ INFO][PID:1228774] Checking for cancel request [2026-09-16 15:42:11,375][ INFO][PID:1228774] Checking for cancel request [2026-09-16 15:42:16,376][ INFO][PID:1228774] Checking for cancel request [2026-09-16 15:42:19,231][ INFO][PID:1228774] Downloading results from builder [2026-09-16 15:42:19,232][ INFO][PID:1228774] rsyncing of mockbuilder@44.202.127.22:/var/lib/copr-rpmbuild/results/ to /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5736/srpm-builds/10992524 started [2026-09-16 15:42:19,232][ INFO][PID:1228774] Popen command started: /usr/bin/rsync -rltDvH --chmod=D755,F644 -e 'ssh -F /home/copr/.ssh/config' mockbuilder@44.202.127.22:/var/lib/copr-rpmbuild/results/ /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5736/srpm-builds/10992524/ &> /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5736/srpm-builds/10992524/build-10992524.rsync.log [2026-09-16 15:42:22,018][ INFO][PID:1228774] rsyncing finished. [2026-09-16 15:42:22,019][ INFO][PID:1228774] VM Release request [2026-09-16 15:42:22,023][ INFO][PID:1228774] Searching for 'success' file in resultdir [2026-09-16 15:42:22,024][ INFO][PID:1228774] Getting build details [2026-09-16 15:42:22,024][ INFO][PID:1228774] Retrieving SRPM info from /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5736/srpm-builds/10992524 [2026-09-16 15:42:22,025][ INFO][PID:1228774] SRPM URL: https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5736/srpm-builds/10992524/Sunshine-0.0.5736-1.src.rpm [2026-09-16 15:42:22,025][ INFO][PID:1228774] build details: {'srpm_url': 'https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5736/srpm-builds/10992524/Sunshine-0.0.5736-1.src.rpm', 'pkg_name': 'Sunshine', 'pkg_version': '0.0.5736-1'} [2026-09-16 15:42:22,025][ INFO][PID:1228774] Finished build: id=10992524 failed=False timeout=108000 destdir=/var/lib/copr/public_html/results/lizardbyte/pulls:pr:5736 chroot=srpm-builds [2026-09-16 15:42:22,025][ INFO][PID:1228774] Worker succeeded build, took 663.4776992797852 [2026-09-16 15:42:22,026][ INFO][PID:1228774] 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:5736", "submitter": null, "ended_on": 1789573342.0258138, "started_on": 1789572678.5481145, "submitted_on": null, "status": 1, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10992524", "build_id": 10992524, "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\": \"tmpajh0d825\", \"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:5736/srpm-builds/10992524/Sunshine-0.0.5736-1.src.rpm", "uses_devel_repo": null, "sandbox": "lizardbyte/pulls--fb09e0b6-d086-4792-bdc5-3a490ed6086b", "results": { "architecture_specific_tags": { "fedora-43": {}, "fedora-44": {}, "fedora-45": {}, "fedora-rawhide": {}, "opensuse-leap-16.0": {}, "opensuse-tumbleweed": {} }, "name": "Sunshine", "epoch": null, "version": "0.0.5736", "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", "opensuse-leap-16.0", "opensuse-tumbleweed" ], "distributions_in_project": [ "fedora-43", "fedora-44", "fedora-45", "fedora-rawhide", "opensuse-leap-16.0", "opensuse-tumbleweed" ], "destdir": "/var/lib/copr/public_html/results/lizardbyte/pulls:pr:5736", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5736", "result_dir": "10992524", "built_packages": "", "tags": [ "arch_x86_64" ], "rpmeta_prediction": null, "pkg_version": "0.0.5736-1", "id": 10992524, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2026-09-16 15:42:22,073][ INFO][PID:1228774] Sending fedora-messaging bus message in build.end [2026-09-16 15:42:22,093][ INFO][PID:1228774] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5736/srpm-builds/10992524/builder-live.log by gzip [2026-09-16 15:42:22,094][ INFO][PID:1228774] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5736/srpm-builds/10992524/builder-live.log' as PID 1405912 [2026-09-16 15:42:22,438][ INFO][PID:1228774] Finished after 0 seconds with exit code 0 (gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5736/srpm-builds/10992524/builder-live.log) [2026-09-16 15:42:22,438][ INFO][PID:1228774] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5736/srpm-builds/10992524/backend.log by gzip [2026-09-16 15:42:22,439][ INFO][PID:1228774] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5736/srpm-builds/10992524/backend.log' as PID 1406005