[2025-09-20 03:49:03,747][ INFO][PID:3166661] Marking build as starting [2025-09-20 03:49:03,799][ INFO][PID:3166661] Checking for cancel request [2025-09-20 03:49:03,807][ INFO][PID:3166661] VM allocation process starts [2025-09-20 03:49:03,855][ INFO][PID:3166661] Trying to allocate VM: ResallocHost, ticket_id=5171846, requested_tags=['copr_builder', 'arch_x86_64'] [2025-09-20 03:49:08,864][ INFO][PID:3166661] Checking for cancel request [2025-09-20 03:49:13,881][ INFO][PID:3166661] Checking for cancel request [2025-09-20 03:49:18,886][ INFO][PID:3166661] Checking for cancel request [2025-09-20 03:49:23,906][ INFO][PID:3166661] Checking for cancel request [2025-09-20 03:49:28,915][ INFO][PID:3166661] Checking for cancel request [2025-09-20 03:49:33,918][ INFO][PID:3166661] Checking for cancel request [2025-09-20 03:49:38,926][ INFO][PID:3166661] Checking for cancel request [2025-09-20 03:49:43,954][ INFO][PID:3166661] Checking for cancel request [2025-09-20 03:49:48,970][ INFO][PID:3166661] Checking for cancel request [2025-09-20 03:49:53,975][ INFO][PID:3166661] Checking for cancel request [2025-09-20 03:49:58,983][ INFO][PID:3166661] Checking for cancel request [2025-09-20 03:50:03,986][ INFO][PID:3166661] Checking for cancel request [2025-09-20 03:50:08,991][ INFO][PID:3166661] Checking for cancel request [2025-09-20 03:50:12,400][ INFO][PID:3166661] Allocated host ResallocHost, ticket_id=5171846, hostname=2620:52:3:1:dead:beef:cafe:c114, name=copr_hv_x86_64_01_prod_06843007_20250920_034712, requested_tags=['copr_builder', 'arch_x86_64'] [2025-09-20 03:50:12,409][ INFO][PID:3166661] Allocating ssh connection to builder [2025-09-20 03:50:12,410][ INFO][PID:3166661] Checking that builder machine is OK [2025-09-20 03:50:13,218][ INFO][PID:3166661] Running remote command: copr-builder-ready srpm-builds [2025-09-20 03:50:13,683][ INFO][PID:3166661] Red Hat subscription not needed for srpm-builds Builder is ready to be used [2025-09-20 03:50:13,686][ INFO][PID:3166661] Filling build.info file with builder info [2025-09-20 03:50:13,691][ INFO][PID:3166661] Checking for cancel request [2025-09-20 03:50:13,699][ INFO][PID:3166661] 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:4277", "submitter": null, "ended_on": null, "started_on": 1758340213.6988199, "submitted_on": null, "status": 3, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "9585044", "build_id": 9585044, "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 test -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 test -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# initialize the submodules\\ngit submodule update --init --recursive\\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/fedora\\\"\\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\\\"\\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\\ntar -czf \\\"${resultdir}/tarball.tar.gz\\\" .\\n\", \"chroot\": \"fedora-43-x86_64\", \"builddeps\": \"git jq python3 rpmlint\", \"resultdir\": \"\", \"repos\": \"\", \"tmp\": \"tmppt0obuho\", \"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--a9233d74-d584-44ee-9c4e-a4eb5c3c7068", "results": null, "appstream": false, "allow_user_ssh": null, "ssh_public_keys": null, "storage": null, "repos": [], "background": true, "destdir": "/var/lib/copr/public_html/results/lizardbyte/pulls:pr:4277", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:4277", "result_dir": "09585044", "built_packages": "", "tags": [ "arch_x86_64" ], "id": 9585044, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2025-09-20 03:50:13,748][ INFO][PID:3166661] Sending fedora-messaging bus message in build.start [2025-09-20 03:50:18,399][ INFO][PID:3166661] Sending fedora-messaging bus message in chroot.start [2025-09-20 03:50:18,492][ INFO][PID:3166661] Starting remote build: copr-rpmbuild --verbose --drop-resultdir --srpm --task-url https://copr.fedorainfracloud.org/backend/get-srpm-build-task/9585044 --detached [2025-09-20 03:50:19,263][ INFO][PID:3166661] The copr-rpmbuild seems started, per: stdout: stderr: Warning: Permanently added '2620:52:3:1:dead:beef:cafe:c114' (ED25519) to the list of known hosts. [2025-09-20 03:50:19,270][ INFO][PID:3166661] Downloading the builder-live.log file, attempt 1 [2025-09-20 03:50:19,279][ INFO][PID:3166661] Popen command started: ssh -F /home/copr/.ssh/config mockbuilder@2620:52:3:1:dead:beef:cafe:c114 copr-rpmbuild-log [2025-09-20 03:50:24,296][ INFO][PID:3166661] Periodic builder liveness probe: alive [2025-09-20 03:50:24,299][ INFO][PID:3166661] Checking for cancel request [2025-09-20 03:50:29,309][ INFO][PID:3166661] Checking for cancel request [2025-09-20 03:50:34,323][ INFO][PID:3166661] Checking for cancel request [2025-09-20 03:50:39,328][ INFO][PID:3166661] Checking for cancel request [2025-09-20 03:50:44,333][ INFO][PID:3166661] Checking for cancel request [2025-09-20 03:50:49,340][ INFO][PID:3166661] Checking for cancel request [2025-09-20 03:50:54,351][ INFO][PID:3166661] Checking for cancel request [2025-09-20 03:50:59,354][ INFO][PID:3166661] Checking for cancel request [2025-09-20 03:51:04,363][ INFO][PID:3166661] Checking for cancel request [2025-09-20 03:51:09,379][ INFO][PID:3166661] Checking for cancel request [2025-09-20 03:51:14,383][ INFO][PID:3166661] Checking for cancel request [2025-09-20 03:51:19,404][ INFO][PID:3166661] Checking for cancel request [2025-09-20 03:51:24,405][ INFO][PID:3166661] Checking for cancel request [2025-09-20 03:51:29,408][ INFO][PID:3166661] Checking for cancel request [2025-09-20 03:51:34,418][ INFO][PID:3166661] Checking for cancel request [2025-09-20 03:51:39,427][ INFO][PID:3166661] Checking for cancel request [2025-09-20 03:51:44,432][ INFO][PID:3166661] Checking for cancel request [2025-09-20 03:51:49,436][ INFO][PID:3166661] Checking for cancel request [2025-09-20 03:51:54,444][ INFO][PID:3166661] Checking for cancel request [2025-09-20 03:51:59,450][ INFO][PID:3166661] Checking for cancel request [2025-09-20 03:52:04,455][ INFO][PID:3166661] Checking for cancel request [2025-09-20 03:52:09,458][ INFO][PID:3166661] Checking for cancel request [2025-09-20 03:52:14,460][ INFO][PID:3166661] Checking for cancel request [2025-09-20 03:52:19,468][ INFO][PID:3166661] Checking for cancel request [2025-09-20 03:52:24,480][ INFO][PID:3166661] Checking for cancel request [2025-09-20 03:52:29,484][ INFO][PID:3166661] Checking for cancel request [2025-09-20 03:52:34,486][ INFO][PID:3166661] Checking for cancel request [2025-09-20 03:52:39,490][ INFO][PID:3166661] Checking for cancel request [2025-09-20 03:52:44,494][ INFO][PID:3166661] Checking for cancel request [2025-09-20 03:52:49,498][ INFO][PID:3166661] Checking for cancel request [2025-09-20 03:52:54,500][ INFO][PID:3166661] Checking for cancel request [2025-09-20 03:52:59,504][ INFO][PID:3166661] Checking for cancel request [2025-09-20 03:53:04,508][ INFO][PID:3166661] Checking for cancel request [2025-09-20 03:53:09,517][ INFO][PID:3166661] Checking for cancel request [2025-09-20 03:53:14,527][ INFO][PID:3166661] Checking for cancel request [2025-09-20 03:53:19,534][ INFO][PID:3166661] Checking for cancel request [2025-09-20 03:53:24,540][ INFO][PID:3166661] Checking for cancel request [2025-09-20 03:53:29,543][ INFO][PID:3166661] Checking for cancel request [2025-09-20 03:53:34,544][ INFO][PID:3166661] Checking for cancel request [2025-09-20 03:53:39,548][ INFO][PID:3166661] Checking for cancel request [2025-09-20 03:53:44,550][ INFO][PID:3166661] Checking for cancel request [2025-09-20 03:53:49,554][ INFO][PID:3166661] Checking for cancel request [2025-09-20 03:53:54,562][ INFO][PID:3166661] Checking for cancel request [2025-09-20 03:53:59,565][ INFO][PID:3166661] Checking for cancel request [2025-09-20 03:54:04,570][ INFO][PID:3166661] Checking for cancel request [2025-09-20 03:54:09,571][ INFO][PID:3166661] Checking for cancel request [2025-09-20 03:54:14,577][ INFO][PID:3166661] Checking for cancel request [2025-09-20 03:54:19,579][ INFO][PID:3166661] Checking for cancel request [2025-09-20 03:54:24,583][ INFO][PID:3166661] Checking for cancel request [2025-09-20 03:54:29,586][ INFO][PID:3166661] Checking for cancel request [2025-09-20 03:54:34,589][ INFO][PID:3166661] Checking for cancel request [2025-09-20 03:54:39,597][ INFO][PID:3166661] Checking for cancel request [2025-09-20 03:54:44,600][ INFO][PID:3166661] Checking for cancel request [2025-09-20 03:54:49,607][ INFO][PID:3166661] Checking for cancel request [2025-09-20 03:54:54,616][ INFO][PID:3166661] Checking for cancel request [2025-09-20 03:54:59,624][ INFO][PID:3166661] Checking for cancel request [2025-09-20 03:55:04,627][ INFO][PID:3166661] Checking for cancel request [2025-09-20 03:55:09,642][ INFO][PID:3166661] Checking for cancel request [2025-09-20 03:55:14,646][ INFO][PID:3166661] Checking for cancel request [2025-09-20 03:55:19,655][ INFO][PID:3166661] Checking for cancel request [2025-09-20 03:55:24,664][ INFO][PID:3166661] Checking for cancel request [2025-09-20 03:55:29,666][ INFO][PID:3166661] Checking for cancel request [2025-09-20 03:55:34,669][ INFO][PID:3166661] Checking for cancel request [2025-09-20 03:55:39,670][ INFO][PID:3166661] Checking for cancel request [2025-09-20 03:55:44,683][ INFO][PID:3166661] Checking for cancel request [2025-09-20 03:55:49,700][ INFO][PID:3166661] Checking for cancel request [2025-09-20 03:55:54,701][ INFO][PID:3166661] Checking for cancel request [2025-09-20 03:55:59,702][ INFO][PID:3166661] Checking for cancel request [2025-09-20 03:56:04,704][ INFO][PID:3166661] Checking for cancel request [2025-09-20 03:56:09,706][ INFO][PID:3166661] Checking for cancel request [2025-09-20 03:56:14,711][ INFO][PID:3166661] Checking for cancel request [2025-09-20 03:56:19,712][ INFO][PID:3166661] Checking for cancel request [2025-09-20 03:56:24,715][ INFO][PID:3166661] Checking for cancel request [2025-09-20 03:56:29,716][ INFO][PID:3166661] Checking for cancel request [2025-09-20 03:56:34,730][ INFO][PID:3166661] Checking for cancel request [2025-09-20 03:56:39,734][ INFO][PID:3166661] Checking for cancel request [2025-09-20 03:56:44,735][ INFO][PID:3166661] Checking for cancel request [2025-09-20 03:56:49,738][ INFO][PID:3166661] Checking for cancel request [2025-09-20 03:56:54,741][ INFO][PID:3166661] Checking for cancel request [2025-09-20 03:56:59,750][ INFO][PID:3166661] Checking for cancel request [2025-09-20 03:57:04,753][ INFO][PID:3166661] Checking for cancel request [2025-09-20 03:57:09,756][ INFO][PID:3166661] Checking for cancel request [2025-09-20 03:57:14,762][ INFO][PID:3166661] Checking for cancel request [2025-09-20 03:57:19,764][ INFO][PID:3166661] Checking for cancel request [2025-09-20 03:57:24,765][ INFO][PID:3166661] Checking for cancel request [2025-09-20 03:57:29,770][ INFO][PID:3166661] Checking for cancel request [2025-09-20 03:57:34,772][ INFO][PID:3166661] Checking for cancel request [2025-09-20 03:57:39,776][ INFO][PID:3166661] Checking for cancel request [2025-09-20 03:57:44,778][ INFO][PID:3166661] Checking for cancel request [2025-09-20 03:57:49,780][ INFO][PID:3166661] Checking for cancel request [2025-09-20 03:57:54,787][ INFO][PID:3166661] Checking for cancel request [2025-09-20 03:57:59,789][ INFO][PID:3166661] Checking for cancel request [2025-09-20 03:58:04,796][ INFO][PID:3166661] Checking for cancel request [2025-09-20 03:58:09,804][ INFO][PID:3166661] Checking for cancel request [2025-09-20 03:58:14,811][ INFO][PID:3166661] Checking for cancel request [2025-09-20 03:58:19,813][ INFO][PID:3166661] Checking for cancel request [2025-09-20 03:58:24,816][ INFO][PID:3166661] Checking for cancel request [2025-09-20 03:58:29,819][ INFO][PID:3166661] Checking for cancel request [2025-09-20 03:58:34,821][ INFO][PID:3166661] Checking for cancel request [2025-09-20 03:58:39,831][ INFO][PID:3166661] Checking for cancel request [2025-09-20 03:58:44,833][ INFO][PID:3166661] Checking for cancel request [2025-09-20 03:58:49,849][ INFO][PID:3166661] Checking for cancel request [2025-09-20 03:58:54,853][ INFO][PID:3166661] Checking for cancel request [2025-09-20 03:58:59,864][ INFO][PID:3166661] Checking for cancel request [2025-09-20 03:59:04,865][ INFO][PID:3166661] Checking for cancel request [2025-09-20 03:59:07,274][ INFO][PID:3166661] Downloading results from builder [2025-09-20 03:59:07,275][ INFO][PID:3166661] rsyncing of mockbuilder@[2620:52:3:1:dead:beef:cafe:c114]:/var/lib/copr-rpmbuild/results/ to /var/lib/copr/public_html/results/lizardbyte/pulls:pr:4277/srpm-builds/09585044 started [2025-09-20 03:59:07,277][ INFO][PID:3166661] Popen command started: /usr/bin/rsync -rltDvH --chmod=D755,F644 -e 'ssh -F /home/copr/.ssh/config' mockbuilder@[2620:52:3:1:dead:beef:cafe:c114]:/var/lib/copr-rpmbuild/results/ /var/lib/copr/public_html/results/lizardbyte/pulls:pr:4277/srpm-builds/09585044/ &> /var/lib/copr/public_html/results/lizardbyte/pulls:pr:4277/srpm-builds/09585044/build-09585044.rsync.log [2025-09-20 03:59:31,815][ INFO][PID:3166661] rsyncing finished. [2025-09-20 03:59:31,816][ INFO][PID:3166661] Releasing VM back to pool [2025-09-20 03:59:31,933][ INFO][PID:3166661] Searching for 'success' file in resultdir [2025-09-20 03:59:31,940][ INFO][PID:3166661] Getting build details [2025-09-20 03:59:31,943][ INFO][PID:3166661] Retrieving SRPM info from /var/lib/copr/public_html/results/lizardbyte/pulls:pr:4277/srpm-builds/09585044 [2025-09-20 03:59:31,944][ INFO][PID:3166661] SRPM URL: https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:4277/srpm-builds/09585044/Sunshine-0.0.4277-1.src.rpm [2025-09-20 03:59:31,946][ INFO][PID:3166661] build details: {'srpm_url': 'https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:4277/srpm-builds/09585044/Sunshine-0.0.4277-1.src.rpm', 'pkg_name': 'Sunshine', 'pkg_version': '0.0.4277-1'} [2025-09-20 03:59:31,950][ INFO][PID:3166661] Finished build: id=9585044 failed=False timeout=108000 destdir=/var/lib/copr/public_html/results/lizardbyte/pulls:pr:4277 chroot=srpm-builds [2025-09-20 03:59:31,960][ INFO][PID:3166661] Worker succeeded build, took 558.2621188163757 [2025-09-20 03:59:31,962][ INFO][PID:3166661] 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:4277", "submitter": null, "ended_on": 1758340771.9609387, "started_on": 1758340213.6988199, "submitted_on": null, "status": 1, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "9585044", "build_id": 9585044, "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 test -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 test -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# initialize the submodules\\ngit submodule update --init --recursive\\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/fedora\\\"\\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\\\"\\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\\ntar -czf \\\"${resultdir}/tarball.tar.gz\\\" .\\n\", \"chroot\": \"fedora-43-x86_64\", \"builddeps\": \"git jq python3 rpmlint\", \"resultdir\": \"\", \"repos\": \"\", \"tmp\": \"tmppt0obuho\", \"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:4277/srpm-builds/09585044/Sunshine-0.0.4277-1.src.rpm", "uses_devel_repo": null, "sandbox": "lizardbyte/pulls--a9233d74-d584-44ee-9c4e-a4eb5c3c7068", "results": { "name": "Sunshine", "epoch": null, "version": "0.0.4277", "release": "1", "exclusivearch": [], "excludearch": [] }, "appstream": false, "allow_user_ssh": null, "ssh_public_keys": null, "storage": null, "repos": [], "background": true, "destdir": "/var/lib/copr/public_html/results/lizardbyte/pulls:pr:4277", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:4277", "result_dir": "09585044", "built_packages": "", "tags": [ "arch_x86_64" ], "pkg_version": "0.0.4277-1", "id": 9585044, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2025-09-20 03:59:32,001][ INFO][PID:3166661] Sending fedora-messaging bus message in build.end [2025-09-20 03:59:32,076][ INFO][PID:3166661] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:4277/srpm-builds/09585044/builder-live.log by gzip [2025-09-20 03:59:32,083][ INFO][PID:3166661] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:4277/srpm-builds/09585044/builder-live.log' as PID 3252085 [2025-09-20 03:59:32,104][ INFO][PID:3166661] Finished after 0 seconds with exit code 0 (gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:4277/srpm-builds/09585044/builder-live.log) [2025-09-20 03:59:32,105][ INFO][PID:3166661] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:4277/srpm-builds/09585044/backend.log by gzip [2025-09-20 03:59:32,112][ INFO][PID:3166661] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:4277/srpm-builds/09585044/backend.log' as PID 3252086