[2026-09-10 08:38:20,748][ INFO][PID:4136301] Marking build as starting [2026-09-10 08:38:20,778][ INFO][PID:4136301] Checking for cancel request [2026-09-10 08:38:20,778][ INFO][PID:4136301] VM allocation process starts [2026-09-10 08:38:20,783][ INFO][PID:4136301] Trying to allocate VM: ResallocHost, ticket_id=4941736, requested_tags=['arch_x86_64', 'copr_builder'] [2026-09-10 08:38:23,792][ INFO][PID:4136301] Allocated host ResallocHost, ticket_id=4941736, hostname=52.206.226.34, name=aws_x86_64_reserved_prod_33339735_20260910_083447, requested_tags=['arch_x86_64', 'copr_builder'] [2026-09-10 08:38:23,792][ INFO][PID:4136301] Allocating ssh connection to builder [2026-09-10 08:38:23,792][ INFO][PID:4136301] Checking that builder machine is OK [2026-09-10 08:38:24,092][ INFO][PID:4136301] Installed copr-rpmbuild version: 1.9 [2026-09-10 08:38:24,093][ INFO][PID:4136301] Running remote command: copr-builder-ready srpm-builds [2026-09-10 08:38:24,251][ INFO][PID:4136301] Red Hat subscription not needed for srpm-builds Builder is ready to be used [2026-09-10 08:38:24,252][ INFO][PID:4136301] Filling build.info file with builder info [2026-09-10 08:38:24,252][ INFO][PID:4136301] Checking for cancel request [2026-09-10 08:38:24,253][ INFO][PID:4136301] 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:5656", "submitter": null, "ended_on": null, "started_on": 1789029504.2532687, "submitted_on": null, "status": 3, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10968568", "build_id": 10968568, "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\": \"tmphulaxvg7\", \"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--c86fc972-5053-43a7-a7d6-e6df4c65d717", "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:5656", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5656", "result_dir": "10968568", "built_packages": "", "tags": [ "arch_x86_64" ], "rpmeta_prediction": null, "id": 10968568, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2026-09-10 08:38:24,282][ INFO][PID:4136301] Sending fedora-messaging bus message in build.start [2026-09-10 08:38:24,671][ INFO][PID:4136301] Sending fedora-messaging bus message in chroot.start [2026-09-10 08:38:24,692][ INFO][PID:4136301] Starting remote build: copr-rpmbuild --verbose --drop-resultdir --srpm --task-url https://copr.fedorainfracloud.org/backend/get-srpm-build-task/10968568 --detached [2026-09-10 08:38:25,273][ INFO][PID:4136301] The copr-rpmbuild seems started, per: stdout: stderr: Warning: Permanently added '52.206.226.34' (ED25519) to the list of known hosts. [2026-09-10 08:38:25,274][ INFO][PID:4136301] Downloading the builder-live.log file, attempt 1 [2026-09-10 08:38:25,275][ INFO][PID:4136301] Popen command started: ssh -F /home/copr/.ssh/config mockbuilder@52.206.226.34 copr-rpmbuild-log [2026-09-10 08:38:30,279][ INFO][PID:4136301] Periodic builder liveness probe: alive [2026-09-10 08:38:30,280][ INFO][PID:4136301] Checking for cancel request [2026-09-10 08:38:35,280][ INFO][PID:4136301] Checking for cancel request [2026-09-10 08:38:40,281][ INFO][PID:4136301] Checking for cancel request [2026-09-10 08:38:45,282][ INFO][PID:4136301] Checking for cancel request [2026-09-10 08:38:50,283][ INFO][PID:4136301] Checking for cancel request [2026-09-10 08:38:55,284][ INFO][PID:4136301] Checking for cancel request [2026-09-10 08:39:00,285][ INFO][PID:4136301] Checking for cancel request [2026-09-10 08:39:05,285][ INFO][PID:4136301] Checking for cancel request [2026-09-10 08:39:10,286][ INFO][PID:4136301] Checking for cancel request [2026-09-10 08:39:15,287][ INFO][PID:4136301] Checking for cancel request [2026-09-10 08:39:20,288][ INFO][PID:4136301] Checking for cancel request [2026-09-10 08:39:25,289][ INFO][PID:4136301] Checking for cancel request [2026-09-10 08:39:30,290][ INFO][PID:4136301] Checking for cancel request [2026-09-10 08:39:35,291][ INFO][PID:4136301] Checking for cancel request [2026-09-10 08:39:40,292][ INFO][PID:4136301] Checking for cancel request [2026-09-10 08:39:45,292][ INFO][PID:4136301] Checking for cancel request [2026-09-10 08:39:50,293][ INFO][PID:4136301] Checking for cancel request [2026-09-10 08:39:55,294][ INFO][PID:4136301] Checking for cancel request [2026-09-10 08:40:00,295][ INFO][PID:4136301] Checking for cancel request [2026-09-10 08:40:05,296][ INFO][PID:4136301] Checking for cancel request [2026-09-10 08:40:10,296][ INFO][PID:4136301] Checking for cancel request [2026-09-10 08:40:15,297][ INFO][PID:4136301] Checking for cancel request [2026-09-10 08:40:20,298][ INFO][PID:4136301] Checking for cancel request [2026-09-10 08:40:25,299][ INFO][PID:4136301] Checking for cancel request [2026-09-10 08:40:30,300][ INFO][PID:4136301] Checking for cancel request [2026-09-10 08:40:35,301][ INFO][PID:4136301] Checking for cancel request [2026-09-10 08:40:40,302][ INFO][PID:4136301] Checking for cancel request [2026-09-10 08:40:45,302][ INFO][PID:4136301] Checking for cancel request [2026-09-10 08:40:50,303][ INFO][PID:4136301] Checking for cancel request [2026-09-10 08:40:55,304][ INFO][PID:4136301] Checking for cancel request [2026-09-10 08:41:00,305][ INFO][PID:4136301] Checking for cancel request [2026-09-10 08:41:05,306][ INFO][PID:4136301] Checking for cancel request [2026-09-10 08:41:10,306][ INFO][PID:4136301] Checking for cancel request [2026-09-10 08:41:15,307][ INFO][PID:4136301] Checking for cancel request [2026-09-10 08:41:20,308][ INFO][PID:4136301] Checking for cancel request [2026-09-10 08:41:25,309][ INFO][PID:4136301] Checking for cancel request [2026-09-10 08:41:30,310][ INFO][PID:4136301] Checking for cancel request [2026-09-10 08:41:35,310][ INFO][PID:4136301] Checking for cancel request [2026-09-10 08:41:40,311][ INFO][PID:4136301] Checking for cancel request [2026-09-10 08:41:45,312][ INFO][PID:4136301] Checking for cancel request [2026-09-10 08:41:50,313][ INFO][PID:4136301] Checking for cancel request [2026-09-10 08:41:55,314][ INFO][PID:4136301] Checking for cancel request [2026-09-10 08:42:00,314][ INFO][PID:4136301] Checking for cancel request [2026-09-10 08:42:05,315][ INFO][PID:4136301] Checking for cancel request [2026-09-10 08:42:10,316][ INFO][PID:4136301] Checking for cancel request [2026-09-10 08:42:15,317][ INFO][PID:4136301] Checking for cancel request [2026-09-10 08:42:20,318][ INFO][PID:4136301] Checking for cancel request [2026-09-10 08:42:25,318][ INFO][PID:4136301] Checking for cancel request [2026-09-10 08:42:30,319][ INFO][PID:4136301] Checking for cancel request [2026-09-10 08:42:35,320][ INFO][PID:4136301] Checking for cancel request [2026-09-10 08:42:40,321][ INFO][PID:4136301] Checking for cancel request [2026-09-10 08:42:45,322][ INFO][PID:4136301] Checking for cancel request [2026-09-10 08:42:50,323][ INFO][PID:4136301] Checking for cancel request [2026-09-10 08:42:55,323][ INFO][PID:4136301] Checking for cancel request [2026-09-10 08:43:00,324][ INFO][PID:4136301] Checking for cancel request [2026-09-10 08:43:05,325][ INFO][PID:4136301] Checking for cancel request [2026-09-10 08:43:10,326][ INFO][PID:4136301] Checking for cancel request [2026-09-10 08:43:15,327][ INFO][PID:4136301] Checking for cancel request [2026-09-10 08:43:20,328][ INFO][PID:4136301] Checking for cancel request [2026-09-10 08:43:25,329][ INFO][PID:4136301] Checking for cancel request [2026-09-10 08:43:30,329][ INFO][PID:4136301] Checking for cancel request [2026-09-10 08:43:35,330][ INFO][PID:4136301] Checking for cancel request [2026-09-10 08:43:40,331][ INFO][PID:4136301] Checking for cancel request [2026-09-10 08:43:45,332][ INFO][PID:4136301] Checking for cancel request [2026-09-10 08:43:50,333][ INFO][PID:4136301] Checking for cancel request [2026-09-10 08:43:55,334][ INFO][PID:4136301] Checking for cancel request [2026-09-10 08:44:00,335][ INFO][PID:4136301] Checking for cancel request [2026-09-10 08:44:05,336][ INFO][PID:4136301] Checking for cancel request [2026-09-10 08:44:10,338][ INFO][PID:4136301] Checking for cancel request [2026-09-10 08:44:15,338][ INFO][PID:4136301] Checking for cancel request [2026-09-10 08:44:20,339][ INFO][PID:4136301] Checking for cancel request [2026-09-10 08:44:25,340][ INFO][PID:4136301] Checking for cancel request [2026-09-10 08:44:30,341][ INFO][PID:4136301] Checking for cancel request [2026-09-10 08:44:35,342][ INFO][PID:4136301] Checking for cancel request [2026-09-10 08:44:40,343][ INFO][PID:4136301] Checking for cancel request [2026-09-10 08:44:45,344][ INFO][PID:4136301] Checking for cancel request [2026-09-10 08:44:50,345][ INFO][PID:4136301] Checking for cancel request [2026-09-10 08:44:55,346][ INFO][PID:4136301] Checking for cancel request [2026-09-10 08:45:00,346][ INFO][PID:4136301] Checking for cancel request [2026-09-10 08:45:05,348][ INFO][PID:4136301] Checking for cancel request [2026-09-10 08:45:10,348][ INFO][PID:4136301] Checking for cancel request [2026-09-10 08:45:15,349][ INFO][PID:4136301] Checking for cancel request [2026-09-10 08:45:20,350][ INFO][PID:4136301] Checking for cancel request [2026-09-10 08:45:25,351][ INFO][PID:4136301] Checking for cancel request [2026-09-10 08:45:30,352][ INFO][PID:4136301] Checking for cancel request [2026-09-10 08:45:35,353][ INFO][PID:4136301] Checking for cancel request [2026-09-10 08:45:40,353][ INFO][PID:4136301] Checking for cancel request [2026-09-10 08:45:45,354][ INFO][PID:4136301] Checking for cancel request [2026-09-10 08:45:50,355][ INFO][PID:4136301] Checking for cancel request [2026-09-10 08:45:55,356][ INFO][PID:4136301] Checking for cancel request [2026-09-10 08:46:00,356][ INFO][PID:4136301] Checking for cancel request [2026-09-10 08:46:05,357][ INFO][PID:4136301] Checking for cancel request [2026-09-10 08:46:10,358][ INFO][PID:4136301] Checking for cancel request [2026-09-10 08:46:15,359][ INFO][PID:4136301] Checking for cancel request [2026-09-10 08:46:20,360][ INFO][PID:4136301] Checking for cancel request [2026-09-10 08:46:25,360][ INFO][PID:4136301] Checking for cancel request [2026-09-10 08:46:30,361][ INFO][PID:4136301] Checking for cancel request [2026-09-10 08:46:35,362][ INFO][PID:4136301] Checking for cancel request [2026-09-10 08:46:40,363][ INFO][PID:4136301] Checking for cancel request [2026-09-10 08:46:45,364][ INFO][PID:4136301] Checking for cancel request [2026-09-10 08:46:50,364][ INFO][PID:4136301] Checking for cancel request [2026-09-10 08:46:55,365][ INFO][PID:4136301] Checking for cancel request [2026-09-10 08:47:00,366][ INFO][PID:4136301] Checking for cancel request [2026-09-10 08:47:05,367][ INFO][PID:4136301] Checking for cancel request [2026-09-10 08:47:10,368][ INFO][PID:4136301] Checking for cancel request [2026-09-10 08:47:15,369][ INFO][PID:4136301] Checking for cancel request [2026-09-10 08:47:20,369][ INFO][PID:4136301] Checking for cancel request [2026-09-10 08:47:25,370][ INFO][PID:4136301] Checking for cancel request [2026-09-10 08:47:30,371][ INFO][PID:4136301] Checking for cancel request [2026-09-10 08:47:35,372][ INFO][PID:4136301] Checking for cancel request [2026-09-10 08:47:40,373][ INFO][PID:4136301] Checking for cancel request [2026-09-10 08:47:45,374][ INFO][PID:4136301] Checking for cancel request [2026-09-10 08:47:50,375][ INFO][PID:4136301] Checking for cancel request [2026-09-10 08:47:55,376][ INFO][PID:4136301] Checking for cancel request [2026-09-10 08:48:00,377][ INFO][PID:4136301] Checking for cancel request [2026-09-10 08:48:05,377][ INFO][PID:4136301] Checking for cancel request [2026-09-10 08:48:10,378][ INFO][PID:4136301] Checking for cancel request [2026-09-10 08:48:15,379][ INFO][PID:4136301] Checking for cancel request [2026-09-10 08:48:20,380][ INFO][PID:4136301] Checking for cancel request [2026-09-10 08:48:25,381][ INFO][PID:4136301] Checking for cancel request [2026-09-10 08:48:30,386][ INFO][PID:4136301] Periodic builder liveness probe: alive [2026-09-10 08:48:30,386][ INFO][PID:4136301] Checking for cancel request [2026-09-10 08:48:35,387][ INFO][PID:4136301] Checking for cancel request [2026-09-10 08:48:40,387][ INFO][PID:4136301] Checking for cancel request [2026-09-10 08:48:45,388][ INFO][PID:4136301] Checking for cancel request [2026-09-10 08:48:50,389][ INFO][PID:4136301] Checking for cancel request [2026-09-10 08:48:55,390][ INFO][PID:4136301] Checking for cancel request [2026-09-10 08:49:00,391][ INFO][PID:4136301] Checking for cancel request [2026-09-10 08:49:05,392][ INFO][PID:4136301] Checking for cancel request [2026-09-10 08:49:10,393][ INFO][PID:4136301] Checking for cancel request [2026-09-10 08:49:11,402][ INFO][PID:4136301] Downloading results from builder [2026-09-10 08:49:11,403][ INFO][PID:4136301] rsyncing of mockbuilder@52.206.226.34:/var/lib/copr-rpmbuild/results/ to /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5656/srpm-builds/10968568 started [2026-09-10 08:49:11,404][ INFO][PID:4136301] Popen command started: /usr/bin/rsync -rltDvH --chmod=D755,F644 -e 'ssh -F /home/copr/.ssh/config' mockbuilder@52.206.226.34:/var/lib/copr-rpmbuild/results/ /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5656/srpm-builds/10968568/ &> /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5656/srpm-builds/10968568/build-10968568.rsync.log [2026-09-10 08:49:13,699][ INFO][PID:4136301] rsyncing finished. [2026-09-10 08:49:13,700][ INFO][PID:4136301] VM Release request [2026-09-10 08:49:13,705][ INFO][PID:4136301] Searching for 'success' file in resultdir [2026-09-10 08:49:13,706][ INFO][PID:4136301] Getting build details [2026-09-10 08:49:13,706][ INFO][PID:4136301] Retrieving SRPM info from /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5656/srpm-builds/10968568 [2026-09-10 08:49:13,706][ INFO][PID:4136301] SRPM URL: https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5656/srpm-builds/10968568/Sunshine-0.0.5656-1.src.rpm [2026-09-10 08:49:13,707][ INFO][PID:4136301] build details: {'srpm_url': 'https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5656/srpm-builds/10968568/Sunshine-0.0.5656-1.src.rpm', 'pkg_name': 'Sunshine', 'pkg_version': '0.0.5656-1'} [2026-09-10 08:49:13,707][ INFO][PID:4136301] Finished build: id=10968568 failed=False timeout=108000 destdir=/var/lib/copr/public_html/results/lizardbyte/pulls:pr:5656 chroot=srpm-builds [2026-09-10 08:49:13,707][ INFO][PID:4136301] Worker succeeded build, took 649.4543833732605 [2026-09-10 08:49:13,707][ INFO][PID:4136301] 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:5656", "submitter": null, "ended_on": 1789030153.707652, "started_on": 1789029504.2532687, "submitted_on": null, "status": 1, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10968568", "build_id": 10968568, "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\": \"tmphulaxvg7\", \"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:5656/srpm-builds/10968568/Sunshine-0.0.5656-1.src.rpm", "uses_devel_repo": null, "sandbox": "lizardbyte/pulls--c86fc972-5053-43a7-a7d6-e6df4c65d717", "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.5656", "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:5656", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5656", "result_dir": "10968568", "built_packages": "", "tags": [ "arch_x86_64" ], "rpmeta_prediction": null, "pkg_version": "0.0.5656-1", "id": 10968568, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2026-09-10 08:49:13,763][ INFO][PID:4136301] Sending fedora-messaging bus message in build.end [2026-09-10 08:49:13,797][ INFO][PID:4136301] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5656/srpm-builds/10968568/builder-live.log by gzip [2026-09-10 08:49:13,797][ INFO][PID:4136301] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5656/srpm-builds/10968568/builder-live.log' as PID 67891 [2026-09-10 08:49:13,874][ INFO][PID:4136301] Finished after 0 seconds with exit code 0 (gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5656/srpm-builds/10968568/builder-live.log) [2026-09-10 08:49:13,874][ INFO][PID:4136301] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5656/srpm-builds/10968568/backend.log by gzip [2026-09-10 08:49:13,875][ INFO][PID:4136301] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5656/srpm-builds/10968568/backend.log' as PID 67930