[2026-08-21 01:53:44,157][ INFO][PID:1585404] Marking build as starting [2026-08-21 01:53:44,221][ INFO][PID:1585404] Checking for cancel request [2026-08-21 01:53:44,224][ INFO][PID:1585404] VM allocation process starts [2026-08-21 01:53:44,271][ INFO][PID:1585404] Trying to allocate VM: ResallocHost, ticket_id=4551897, requested_tags=['arch_x86_64', 'copr_builder'] [2026-08-21 01:53:49,275][ INFO][PID:1585404] Checking for cancel request [2026-08-21 01:53:54,277][ INFO][PID:1585404] Checking for cancel request [2026-08-21 01:53:56,402][ INFO][PID:1585404] Allocated host ResallocHost, ticket_id=4551897, hostname=18.205.96.37, name=aws_x86_64_reserved_prod_19567929_20260821_015002, requested_tags=['arch_x86_64', 'copr_builder'] [2026-08-21 01:53:56,403][ INFO][PID:1585404] Allocating ssh connection to builder [2026-08-21 01:53:56,406][ INFO][PID:1585404] Checking that builder machine is OK [2026-08-21 01:53:56,737][ INFO][PID:1585404] Installed copr-rpmbuild version: 1.9 [2026-08-21 01:53:56,738][ INFO][PID:1585404] Running remote command: copr-builder-ready srpm-builds [2026-08-21 01:53:56,943][ INFO][PID:1585404] Red Hat subscription not needed for srpm-builds Builder is ready to be used [2026-08-21 01:53:56,943][ INFO][PID:1585404] Filling build.info file with builder info [2026-08-21 01:53:56,944][ INFO][PID:1585404] Checking for cancel request [2026-08-21 01:53:56,945][ INFO][PID:1585404] 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:5150", "submitter": null, "ended_on": null, "started_on": 1787277236.94577, "submitted_on": null, "status": 3, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10886904", "build_id": 10886904, "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\": \"tmp29jt1pcz\", \"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--ac1e99f8-1aca-4169-bc33-a51ce90b6bc4", "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:5150", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5150", "result_dir": "10886904", "built_packages": "", "tags": [ "arch_x86_64" ], "rpmeta_prediction": null, "id": 10886904, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2026-08-21 01:53:56,998][ INFO][PID:1585404] Sending fedora-messaging bus message in build.start [2026-08-21 01:53:57,759][ INFO][PID:1585404] Sending fedora-messaging bus message in chroot.start [2026-08-21 01:53:57,809][ INFO][PID:1585404] Starting remote build: copr-rpmbuild --verbose --drop-resultdir --srpm --task-url https://copr.fedorainfracloud.org/backend/get-srpm-build-task/10886904 --detached [2026-08-21 01:53:58,301][ INFO][PID:1585404] The copr-rpmbuild seems started, per: stdout: stderr: Warning: Permanently added '18.205.96.37' (ED25519) to the list of known hosts. [2026-08-21 01:53:58,303][ INFO][PID:1585404] Downloading the builder-live.log file, attempt 1 [2026-08-21 01:53:58,305][ INFO][PID:1585404] Popen command started: ssh -F /home/copr/.ssh/config mockbuilder@18.205.96.37 copr-rpmbuild-log [2026-08-21 01:54:03,342][ INFO][PID:1585404] Periodic builder liveness probe: alive [2026-08-21 01:54:03,343][ INFO][PID:1585404] Checking for cancel request [2026-08-21 01:54:08,344][ INFO][PID:1585404] Checking for cancel request [2026-08-21 01:54:13,346][ INFO][PID:1585404] Checking for cancel request [2026-08-21 01:54:18,348][ INFO][PID:1585404] Checking for cancel request [2026-08-21 01:54:23,350][ INFO][PID:1585404] Checking for cancel request [2026-08-21 01:54:28,352][ INFO][PID:1585404] Checking for cancel request [2026-08-21 01:54:33,354][ INFO][PID:1585404] Checking for cancel request [2026-08-21 01:54:38,355][ INFO][PID:1585404] Checking for cancel request [2026-08-21 01:54:43,357][ INFO][PID:1585404] Checking for cancel request [2026-08-21 01:54:48,359][ INFO][PID:1585404] Checking for cancel request [2026-08-21 01:54:53,361][ INFO][PID:1585404] Checking for cancel request [2026-08-21 01:54:58,362][ INFO][PID:1585404] Checking for cancel request [2026-08-21 01:55:03,364][ INFO][PID:1585404] Checking for cancel request [2026-08-21 01:55:08,366][ INFO][PID:1585404] Checking for cancel request [2026-08-21 01:55:13,367][ INFO][PID:1585404] Checking for cancel request [2026-08-21 01:55:18,370][ INFO][PID:1585404] Checking for cancel request [2026-08-21 01:55:23,371][ INFO][PID:1585404] Checking for cancel request [2026-08-21 01:55:28,372][ INFO][PID:1585404] Checking for cancel request [2026-08-21 01:55:33,375][ INFO][PID:1585404] Checking for cancel request [2026-08-21 01:55:38,376][ INFO][PID:1585404] Checking for cancel request [2026-08-21 01:55:43,378][ INFO][PID:1585404] Checking for cancel request [2026-08-21 01:55:48,379][ INFO][PID:1585404] Checking for cancel request [2026-08-21 01:55:53,381][ INFO][PID:1585404] Checking for cancel request [2026-08-21 01:55:58,382][ INFO][PID:1585404] Checking for cancel request [2026-08-21 01:56:03,384][ INFO][PID:1585404] Checking for cancel request [2026-08-21 01:56:08,385][ INFO][PID:1585404] Checking for cancel request [2026-08-21 01:56:13,387][ INFO][PID:1585404] Checking for cancel request [2026-08-21 01:56:18,388][ INFO][PID:1585404] Checking for cancel request [2026-08-21 01:56:23,391][ INFO][PID:1585404] Checking for cancel request [2026-08-21 01:56:28,393][ INFO][PID:1585404] Checking for cancel request [2026-08-21 01:56:33,396][ INFO][PID:1585404] Checking for cancel request [2026-08-21 01:56:38,398][ INFO][PID:1585404] Checking for cancel request [2026-08-21 01:56:43,399][ INFO][PID:1585404] Checking for cancel request [2026-08-21 01:56:48,403][ INFO][PID:1585404] Checking for cancel request [2026-08-21 01:56:53,405][ INFO][PID:1585404] Checking for cancel request [2026-08-21 01:56:58,407][ INFO][PID:1585404] Checking for cancel request [2026-08-21 01:57:03,409][ INFO][PID:1585404] Checking for cancel request [2026-08-21 01:57:08,410][ INFO][PID:1585404] Checking for cancel request [2026-08-21 01:57:13,412][ INFO][PID:1585404] Checking for cancel request [2026-08-21 01:57:18,414][ INFO][PID:1585404] Checking for cancel request [2026-08-21 01:57:23,416][ INFO][PID:1585404] Checking for cancel request [2026-08-21 01:57:28,417][ INFO][PID:1585404] Checking for cancel request [2026-08-21 01:57:33,418][ INFO][PID:1585404] Checking for cancel request [2026-08-21 01:57:38,420][ INFO][PID:1585404] Checking for cancel request [2026-08-21 01:57:43,421][ INFO][PID:1585404] Checking for cancel request [2026-08-21 01:57:48,423][ INFO][PID:1585404] Checking for cancel request [2026-08-21 01:57:53,424][ INFO][PID:1585404] Checking for cancel request [2026-08-21 01:57:58,427][ INFO][PID:1585404] Checking for cancel request [2026-08-21 01:58:03,428][ INFO][PID:1585404] Checking for cancel request [2026-08-21 01:58:08,430][ INFO][PID:1585404] Checking for cancel request [2026-08-21 01:58:13,431][ INFO][PID:1585404] Checking for cancel request [2026-08-21 01:58:18,433][ INFO][PID:1585404] Checking for cancel request [2026-08-21 01:58:23,436][ INFO][PID:1585404] Checking for cancel request [2026-08-21 01:58:28,438][ INFO][PID:1585404] Checking for cancel request [2026-08-21 01:58:33,440][ INFO][PID:1585404] Checking for cancel request [2026-08-21 01:58:38,442][ INFO][PID:1585404] Checking for cancel request [2026-08-21 01:58:43,445][ INFO][PID:1585404] Checking for cancel request [2026-08-21 01:58:48,447][ INFO][PID:1585404] Checking for cancel request [2026-08-21 01:58:53,448][ INFO][PID:1585404] Checking for cancel request [2026-08-21 01:58:58,451][ INFO][PID:1585404] Checking for cancel request [2026-08-21 01:59:03,453][ INFO][PID:1585404] Checking for cancel request [2026-08-21 01:59:08,455][ INFO][PID:1585404] Checking for cancel request [2026-08-21 01:59:13,457][ INFO][PID:1585404] Checking for cancel request [2026-08-21 01:59:18,461][ INFO][PID:1585404] Checking for cancel request [2026-08-21 01:59:23,463][ INFO][PID:1585404] Checking for cancel request [2026-08-21 01:59:28,464][ INFO][PID:1585404] Checking for cancel request [2026-08-21 01:59:33,473][ INFO][PID:1585404] Checking for cancel request [2026-08-21 01:59:38,483][ INFO][PID:1585404] Checking for cancel request [2026-08-21 01:59:43,485][ INFO][PID:1585404] Checking for cancel request [2026-08-21 01:59:48,486][ INFO][PID:1585404] Checking for cancel request [2026-08-21 01:59:53,488][ INFO][PID:1585404] Checking for cancel request [2026-08-21 01:59:58,490][ INFO][PID:1585404] Checking for cancel request [2026-08-21 02:00:03,492][ INFO][PID:1585404] Checking for cancel request [2026-08-21 02:00:08,494][ INFO][PID:1585404] Checking for cancel request [2026-08-21 02:00:13,496][ INFO][PID:1585404] Checking for cancel request [2026-08-21 02:00:18,502][ INFO][PID:1585404] Checking for cancel request [2026-08-21 02:00:23,504][ INFO][PID:1585404] Checking for cancel request [2026-08-21 02:00:28,517][ INFO][PID:1585404] Checking for cancel request [2026-08-21 02:00:33,519][ INFO][PID:1585404] Checking for cancel request [2026-08-21 02:00:38,523][ INFO][PID:1585404] Checking for cancel request [2026-08-21 02:00:43,525][ INFO][PID:1585404] Checking for cancel request [2026-08-21 02:00:48,535][ INFO][PID:1585404] Checking for cancel request [2026-08-21 02:00:53,536][ INFO][PID:1585404] Checking for cancel request [2026-08-21 02:00:58,538][ INFO][PID:1585404] Checking for cancel request [2026-08-21 02:01:03,540][ INFO][PID:1585404] Checking for cancel request [2026-08-21 02:01:08,545][ INFO][PID:1585404] Checking for cancel request [2026-08-21 02:01:13,549][ INFO][PID:1585404] Checking for cancel request [2026-08-21 02:01:18,555][ INFO][PID:1585404] Checking for cancel request [2026-08-21 02:01:23,564][ INFO][PID:1585404] Checking for cancel request [2026-08-21 02:01:28,682][ INFO][PID:1585404] Checking for cancel request [2026-08-21 02:01:33,748][ INFO][PID:1585404] Checking for cancel request [2026-08-21 02:01:38,877][ INFO][PID:1585404] Checking for cancel request [2026-08-21 02:01:43,890][ INFO][PID:1585404] Checking for cancel request [2026-08-21 02:01:48,912][ INFO][PID:1585404] Checking for cancel request [2026-08-21 02:01:53,914][ INFO][PID:1585404] Checking for cancel request [2026-08-21 02:01:58,916][ INFO][PID:1585404] Checking for cancel request [2026-08-21 02:02:03,918][ INFO][PID:1585404] Checking for cancel request [2026-08-21 02:02:08,925][ INFO][PID:1585404] Checking for cancel request [2026-08-21 02:02:13,940][ INFO][PID:1585404] Checking for cancel request [2026-08-21 02:02:18,955][ INFO][PID:1585404] Checking for cancel request [2026-08-21 02:02:23,963][ INFO][PID:1585404] Checking for cancel request [2026-08-21 02:02:29,027][ INFO][PID:1585404] Checking for cancel request [2026-08-21 02:02:34,126][ INFO][PID:1585404] Checking for cancel request [2026-08-21 02:02:39,719][ INFO][PID:1585404] Checking for cancel request [2026-08-21 02:02:44,759][ INFO][PID:1585404] Checking for cancel request [2026-08-21 02:02:49,773][ INFO][PID:1585404] Checking for cancel request [2026-08-21 02:02:54,790][ INFO][PID:1585404] Checking for cancel request [2026-08-21 02:02:59,811][ INFO][PID:1585404] Checking for cancel request [2026-08-21 02:03:04,817][ INFO][PID:1585404] Checking for cancel request [2026-08-21 02:03:09,821][ INFO][PID:1585404] Checking for cancel request [2026-08-21 02:03:14,828][ INFO][PID:1585404] Checking for cancel request [2026-08-21 02:03:19,830][ INFO][PID:1585404] Checking for cancel request [2026-08-21 02:03:24,832][ INFO][PID:1585404] Checking for cancel request [2026-08-21 02:03:29,834][ INFO][PID:1585404] Checking for cancel request [2026-08-21 02:03:34,842][ INFO][PID:1585404] Checking for cancel request [2026-08-21 02:03:39,845][ INFO][PID:1585404] Checking for cancel request [2026-08-21 02:03:44,853][ INFO][PID:1585404] Checking for cancel request [2026-08-21 02:03:49,858][ INFO][PID:1585404] Checking for cancel request [2026-08-21 02:03:54,864][ INFO][PID:1585404] Checking for cancel request [2026-08-21 02:03:59,869][ INFO][PID:1585404] Checking for cancel request [2026-08-21 02:04:04,909][ INFO][PID:1585404] Periodic builder liveness probe: alive [2026-08-21 02:04:04,910][ INFO][PID:1585404] Checking for cancel request [2026-08-21 02:04:09,911][ INFO][PID:1585404] Checking for cancel request [2026-08-21 02:04:14,913][ INFO][PID:1585404] Checking for cancel request [2026-08-21 02:04:19,915][ INFO][PID:1585404] Checking for cancel request [2026-08-21 02:04:24,919][ INFO][PID:1585404] Checking for cancel request [2026-08-21 02:04:29,923][ INFO][PID:1585404] Checking for cancel request [2026-08-21 02:04:34,941][ INFO][PID:1585404] Checking for cancel request [2026-08-21 02:04:39,943][ INFO][PID:1585404] Checking for cancel request [2026-08-21 02:04:44,945][ INFO][PID:1585404] Checking for cancel request [2026-08-21 02:04:49,946][ INFO][PID:1585404] Checking for cancel request [2026-08-21 02:04:54,948][ INFO][PID:1585404] Checking for cancel request [2026-08-21 02:04:59,953][ INFO][PID:1585404] Checking for cancel request [2026-08-21 02:05:04,957][ INFO][PID:1585404] Checking for cancel request [2026-08-21 02:05:09,550][ INFO][PID:1585404] Downloading results from builder [2026-08-21 02:05:09,552][ INFO][PID:1585404] rsyncing of mockbuilder@18.205.96.37:/var/lib/copr-rpmbuild/results/ to /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5150/srpm-builds/10886904 started [2026-08-21 02:05:09,553][ INFO][PID:1585404] Popen command started: /usr/bin/rsync -rltDvH --chmod=D755,F644 -e 'ssh -F /home/copr/.ssh/config' mockbuilder@18.205.96.37:/var/lib/copr-rpmbuild/results/ /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5150/srpm-builds/10886904/ &> /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5150/srpm-builds/10886904/build-10886904.rsync.log [2026-08-21 02:05:18,449][ INFO][PID:1585404] rsyncing finished. [2026-08-21 02:05:18,451][ INFO][PID:1585404] VM Release request [2026-08-21 02:05:18,490][ INFO][PID:1585404] Searching for 'success' file in resultdir [2026-08-21 02:05:18,492][ INFO][PID:1585404] Getting build details [2026-08-21 02:05:18,494][ INFO][PID:1585404] Retrieving SRPM info from /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5150/srpm-builds/10886904 [2026-08-21 02:05:18,496][ INFO][PID:1585404] SRPM URL: https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5150/srpm-builds/10886904/Sunshine-0.0.5150-1.src.rpm [2026-08-21 02:05:18,500][ INFO][PID:1585404] build details: {'srpm_url': 'https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5150/srpm-builds/10886904/Sunshine-0.0.5150-1.src.rpm', 'pkg_name': 'Sunshine', 'pkg_version': '0.0.5150-1'} [2026-08-21 02:05:18,501][ INFO][PID:1585404] Finished build: id=10886904 failed=False timeout=108000 destdir=/var/lib/copr/public_html/results/lizardbyte/pulls:pr:5150 chroot=srpm-builds [2026-08-21 02:05:18,503][ INFO][PID:1585404] Worker succeeded build, took 681.5581252574921 [2026-08-21 02:05:18,507][ INFO][PID:1585404] 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:5150", "submitter": null, "ended_on": 1787277918.5038953, "started_on": 1787277236.94577, "submitted_on": null, "status": 1, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10886904", "build_id": 10886904, "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\": \"tmp29jt1pcz\", \"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:5150/srpm-builds/10886904/Sunshine-0.0.5150-1.src.rpm", "uses_devel_repo": null, "sandbox": "lizardbyte/pulls--ac1e99f8-1aca-4169-bc33-a51ce90b6bc4", "results": { "architecture_specific_tags": { "fedora-43": {}, "fedora-44": {}, "fedora-45": {}, "fedora-rawhide": {} }, "name": "Sunshine", "epoch": null, "version": "0.0.5150", "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:5150", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5150", "result_dir": "10886904", "built_packages": "", "tags": [ "arch_x86_64" ], "rpmeta_prediction": null, "pkg_version": "0.0.5150-1", "id": 10886904, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2026-08-21 02:05:18,607][ INFO][PID:1585404] Sending fedora-messaging bus message in build.end [2026-08-21 02:05:18,645][ INFO][PID:1585404] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5150/srpm-builds/10886904/builder-live.log by gzip [2026-08-21 02:05:18,650][ INFO][PID:1585404] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5150/srpm-builds/10886904/builder-live.log' as PID 1698528 [2026-08-21 02:05:18,680][ INFO][PID:1585404] Finished after 0 seconds with exit code 0 (gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5150/srpm-builds/10886904/builder-live.log) [2026-08-21 02:05:18,682][ INFO][PID:1585404] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5150/srpm-builds/10886904/backend.log by gzip [2026-08-21 02:05:18,685][ INFO][PID:1585404] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5150/srpm-builds/10886904/backend.log' as PID 1698539