[2025-09-20 04:28:32,692][ INFO][PID:3498001] Marking build as starting [2025-09-20 04:28:32,744][ INFO][PID:3498001] Checking for cancel request [2025-09-20 04:28:32,752][ INFO][PID:3498001] VM allocation process starts [2025-09-20 04:28:32,816][ INFO][PID:3498001] Trying to allocate VM: ResallocHost, ticket_id=5173672, requested_tags=['copr_builder', 'arch_x86_64'] [2025-09-20 04:28:37,822][ INFO][PID:3498001] Checking for cancel request [2025-09-20 04:28:42,825][ INFO][PID:3498001] Checking for cancel request [2025-09-20 04:28:47,828][ INFO][PID:3498001] Checking for cancel request [2025-09-20 04:28:52,831][ INFO][PID:3498001] Checking for cancel request [2025-09-20 04:28:57,836][ INFO][PID:3498001] Checking for cancel request [2025-09-20 04:29:02,837][ INFO][PID:3498001] Checking for cancel request [2025-09-20 04:29:07,844][ INFO][PID:3498001] Checking for cancel request [2025-09-20 04:29:12,846][ INFO][PID:3498001] Checking for cancel request [2025-09-20 04:29:17,853][ INFO][PID:3498001] Checking for cancel request [2025-09-20 04:29:22,858][ INFO][PID:3498001] Checking for cancel request [2025-09-20 04:29:27,859][ INFO][PID:3498001] Checking for cancel request [2025-09-20 04:29:32,863][ INFO][PID:3498001] Checking for cancel request [2025-09-20 04:29:37,865][ INFO][PID:3498001] Checking for cancel request [2025-09-20 04:29:42,869][ INFO][PID:3498001] Checking for cancel request [2025-09-20 04:29:47,885][ INFO][PID:3498001] Checking for cancel request [2025-09-20 04:29:52,886][ INFO][PID:3498001] Checking for cancel request [2025-09-20 04:29:57,889][ INFO][PID:3498001] Checking for cancel request [2025-09-20 04:30:02,897][ INFO][PID:3498001] Checking for cancel request [2025-09-20 04:30:07,920][ INFO][PID:3498001] Checking for cancel request [2025-09-20 04:30:12,931][ INFO][PID:3498001] Checking for cancel request [2025-09-20 04:30:17,937][ INFO][PID:3498001] Checking for cancel request [2025-09-20 04:30:21,135][ INFO][PID:3498001] Allocated host ResallocHost, ticket_id=5173672, hostname=2620:52:3:1:dead:beef:cafe:c149, name=copr_hv_x86_64_02_prod_06843448_20250920_042815, requested_tags=['copr_builder', 'arch_x86_64'] [2025-09-20 04:30:21,136][ INFO][PID:3498001] Allocating ssh connection to builder [2025-09-20 04:30:21,136][ INFO][PID:3498001] Checking that builder machine is OK [2025-09-20 04:30:21,755][ INFO][PID:3498001] Running remote command: copr-builder-ready srpm-builds [2025-09-20 04:30:22,150][ INFO][PID:3498001] Red Hat subscription not needed for srpm-builds Builder is ready to be used [2025-09-20 04:30:22,151][ INFO][PID:3498001] Filling build.info file with builder info [2025-09-20 04:30:22,152][ INFO][PID:3498001] Checking for cancel request [2025-09-20 04:30:22,153][ INFO][PID:3498001] 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": 1758342622.1528258, "submitted_on": null, "status": 3, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "9585094", "build_id": 9585094, "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\": \"tmpu42wdqb5\", \"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--ff06b122-806a-4963-952e-e224bbe0d86e", "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": "09585094", "built_packages": "", "tags": [ "arch_x86_64" ], "id": 9585094, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2025-09-20 04:30:22,208][ INFO][PID:3498001] Sending fedora-messaging bus message in build.start [2025-09-20 04:30:23,733][ INFO][PID:3498001] Sending fedora-messaging bus message in chroot.start [2025-09-20 04:30:23,822][ INFO][PID:3498001] Starting remote build: copr-rpmbuild --verbose --drop-resultdir --srpm --task-url https://copr.fedorainfracloud.org/backend/get-srpm-build-task/9585094 --detached [2025-09-20 04:30:24,522][ INFO][PID:3498001] The copr-rpmbuild seems started, per: stdout: stderr: Warning: Permanently added '2620:52:3:1:dead:beef:cafe:c149' (ED25519) to the list of known hosts. [2025-09-20 04:30:24,529][ INFO][PID:3498001] Downloading the builder-live.log file, attempt 1 [2025-09-20 04:30:24,534][ INFO][PID:3498001] Popen command started: ssh -F /home/copr/.ssh/config mockbuilder@2620:52:3:1:dead:beef:cafe:c149 copr-rpmbuild-log [2025-09-20 04:30:29,554][ INFO][PID:3498001] Periodic builder liveness probe: alive [2025-09-20 04:30:29,557][ INFO][PID:3498001] Checking for cancel request [2025-09-20 04:30:34,568][ INFO][PID:3498001] Checking for cancel request [2025-09-20 04:30:39,582][ INFO][PID:3498001] Checking for cancel request [2025-09-20 04:30:44,584][ INFO][PID:3498001] Checking for cancel request [2025-09-20 04:30:49,590][ INFO][PID:3498001] Checking for cancel request [2025-09-20 04:30:54,594][ INFO][PID:3498001] Checking for cancel request [2025-09-20 04:30:59,596][ INFO][PID:3498001] Checking for cancel request [2025-09-20 04:31:04,600][ INFO][PID:3498001] Checking for cancel request [2025-09-20 04:31:09,609][ INFO][PID:3498001] Checking for cancel request [2025-09-20 04:31:14,614][ INFO][PID:3498001] Checking for cancel request [2025-09-20 04:31:19,620][ INFO][PID:3498001] Checking for cancel request [2025-09-20 04:31:24,634][ INFO][PID:3498001] Checking for cancel request [2025-09-20 04:31:29,636][ INFO][PID:3498001] Checking for cancel request [2025-09-20 04:31:34,644][ INFO][PID:3498001] Checking for cancel request [2025-09-20 04:31:39,646][ INFO][PID:3498001] Checking for cancel request [2025-09-20 04:31:44,651][ INFO][PID:3498001] Checking for cancel request [2025-09-20 04:31:49,670][ INFO][PID:3498001] Checking for cancel request [2025-09-20 04:31:54,675][ INFO][PID:3498001] Checking for cancel request [2025-09-20 04:31:59,677][ INFO][PID:3498001] Checking for cancel request [2025-09-20 04:32:04,680][ INFO][PID:3498001] Checking for cancel request [2025-09-20 04:32:09,695][ INFO][PID:3498001] Checking for cancel request [2025-09-20 04:32:14,706][ INFO][PID:3498001] Checking for cancel request [2025-09-20 04:32:19,716][ INFO][PID:3498001] Checking for cancel request [2025-09-20 04:32:24,722][ INFO][PID:3498001] Checking for cancel request [2025-09-20 04:32:29,729][ INFO][PID:3498001] Checking for cancel request [2025-09-20 04:32:34,733][ INFO][PID:3498001] Checking for cancel request [2025-09-20 04:32:39,740][ INFO][PID:3498001] Checking for cancel request [2025-09-20 04:32:44,745][ INFO][PID:3498001] Checking for cancel request [2025-09-20 04:32:49,758][ INFO][PID:3498001] Checking for cancel request [2025-09-20 04:32:54,760][ INFO][PID:3498001] Checking for cancel request [2025-09-20 04:32:59,772][ INFO][PID:3498001] Checking for cancel request [2025-09-20 04:33:04,774][ INFO][PID:3498001] Checking for cancel request [2025-09-20 04:33:09,781][ INFO][PID:3498001] Checking for cancel request [2025-09-20 04:33:14,788][ INFO][PID:3498001] Checking for cancel request [2025-09-20 04:33:19,792][ INFO][PID:3498001] Checking for cancel request [2025-09-20 04:33:24,796][ INFO][PID:3498001] Checking for cancel request [2025-09-20 04:33:29,801][ INFO][PID:3498001] Checking for cancel request [2025-09-20 04:33:34,810][ INFO][PID:3498001] Checking for cancel request [2025-09-20 04:33:39,822][ INFO][PID:3498001] Checking for cancel request [2025-09-20 04:33:44,825][ INFO][PID:3498001] Checking for cancel request [2025-09-20 04:33:49,829][ INFO][PID:3498001] Checking for cancel request [2025-09-20 04:33:54,839][ INFO][PID:3498001] Checking for cancel request [2025-09-20 04:33:59,841][ INFO][PID:3498001] Checking for cancel request [2025-09-20 04:34:04,848][ INFO][PID:3498001] Checking for cancel request [2025-09-20 04:34:09,850][ INFO][PID:3498001] Checking for cancel request [2025-09-20 04:34:14,855][ INFO][PID:3498001] Checking for cancel request [2025-09-20 04:34:19,859][ INFO][PID:3498001] Checking for cancel request [2025-09-20 04:34:24,861][ INFO][PID:3498001] Checking for cancel request [2025-09-20 04:34:29,862][ INFO][PID:3498001] Checking for cancel request [2025-09-20 04:34:34,870][ INFO][PID:3498001] Checking for cancel request [2025-09-20 04:34:39,872][ INFO][PID:3498001] Checking for cancel request [2025-09-20 04:34:44,883][ INFO][PID:3498001] Checking for cancel request [2025-09-20 04:34:49,887][ INFO][PID:3498001] Checking for cancel request [2025-09-20 04:34:54,903][ INFO][PID:3498001] Checking for cancel request [2025-09-20 04:34:59,909][ INFO][PID:3498001] Checking for cancel request [2025-09-20 04:35:04,950][ INFO][PID:3498001] Checking for cancel request [2025-09-20 04:35:10,186][ INFO][PID:3498001] Checking for cancel request [2025-09-20 04:35:15,193][ INFO][PID:3498001] Checking for cancel request [2025-09-20 04:35:20,201][ INFO][PID:3498001] Checking for cancel request [2025-09-20 04:35:25,212][ INFO][PID:3498001] Checking for cancel request [2025-09-20 04:35:30,218][ INFO][PID:3498001] Checking for cancel request [2025-09-20 04:35:35,225][ INFO][PID:3498001] Checking for cancel request [2025-09-20 04:35:40,229][ INFO][PID:3498001] Checking for cancel request [2025-09-20 04:35:45,255][ INFO][PID:3498001] Checking for cancel request [2025-09-20 04:35:50,262][ INFO][PID:3498001] Checking for cancel request [2025-09-20 04:35:55,274][ INFO][PID:3498001] Checking for cancel request [2025-09-20 04:36:00,281][ INFO][PID:3498001] Checking for cancel request [2025-09-20 04:36:05,289][ INFO][PID:3498001] Checking for cancel request [2025-09-20 04:36:10,290][ INFO][PID:3498001] Checking for cancel request [2025-09-20 04:36:15,292][ INFO][PID:3498001] Checking for cancel request [2025-09-20 04:36:20,302][ INFO][PID:3498001] Checking for cancel request [2025-09-20 04:36:25,328][ INFO][PID:3498001] Checking for cancel request [2025-09-20 04:36:30,336][ INFO][PID:3498001] Checking for cancel request [2025-09-20 04:36:35,363][ INFO][PID:3498001] Checking for cancel request [2025-09-20 04:36:40,381][ INFO][PID:3498001] Checking for cancel request [2025-09-20 04:36:45,388][ INFO][PID:3498001] Checking for cancel request [2025-09-20 04:36:50,391][ INFO][PID:3498001] Checking for cancel request [2025-09-20 04:36:55,395][ INFO][PID:3498001] Checking for cancel request [2025-09-20 04:37:00,413][ INFO][PID:3498001] Checking for cancel request [2025-09-20 04:37:05,422][ INFO][PID:3498001] Checking for cancel request [2025-09-20 04:37:10,426][ INFO][PID:3498001] Checking for cancel request [2025-09-20 04:37:15,433][ INFO][PID:3498001] Checking for cancel request [2025-09-20 04:37:20,441][ INFO][PID:3498001] Checking for cancel request [2025-09-20 04:37:25,447][ INFO][PID:3498001] Checking for cancel request [2025-09-20 04:37:30,455][ INFO][PID:3498001] Checking for cancel request [2025-09-20 04:37:35,466][ INFO][PID:3498001] Checking for cancel request [2025-09-20 04:37:40,476][ INFO][PID:3498001] Checking for cancel request [2025-09-20 04:37:45,487][ INFO][PID:3498001] Checking for cancel request [2025-09-20 04:37:50,496][ INFO][PID:3498001] Checking for cancel request [2025-09-20 04:37:55,514][ INFO][PID:3498001] Checking for cancel request [2025-09-20 04:38:00,521][ INFO][PID:3498001] Checking for cancel request [2025-09-20 04:38:05,523][ INFO][PID:3498001] Checking for cancel request [2025-09-20 04:38:10,536][ INFO][PID:3498001] Checking for cancel request [2025-09-20 04:38:15,543][ INFO][PID:3498001] Checking for cancel request [2025-09-20 04:38:17,086][ INFO][PID:3498001] Downloading results from builder [2025-09-20 04:38:17,088][ INFO][PID:3498001] rsyncing of mockbuilder@[2620:52:3:1:dead:beef:cafe:c149]:/var/lib/copr-rpmbuild/results/ to /var/lib/copr/public_html/results/lizardbyte/pulls:pr:4277/srpm-builds/09585094 started [2025-09-20 04:38:17,092][ INFO][PID:3498001] 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:c149]:/var/lib/copr-rpmbuild/results/ /var/lib/copr/public_html/results/lizardbyte/pulls:pr:4277/srpm-builds/09585094/ &> /var/lib/copr/public_html/results/lizardbyte/pulls:pr:4277/srpm-builds/09585094/build-09585094.rsync.log [2025-09-20 04:38:50,579][ INFO][PID:3498001] rsyncing finished. [2025-09-20 04:38:50,579][ INFO][PID:3498001] Releasing VM back to pool [2025-09-20 04:38:50,674][ INFO][PID:3498001] Searching for 'success' file in resultdir [2025-09-20 04:38:50,675][ INFO][PID:3498001] Getting build details [2025-09-20 04:38:50,680][ INFO][PID:3498001] Retrieving SRPM info from /var/lib/copr/public_html/results/lizardbyte/pulls:pr:4277/srpm-builds/09585094 [2025-09-20 04:38:50,692][ INFO][PID:3498001] SRPM URL: https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:4277/srpm-builds/09585094/Sunshine-0.0.4277-1.src.rpm [2025-09-20 04:38:50,694][ INFO][PID:3498001] build details: {'srpm_url': 'https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:4277/srpm-builds/09585094/Sunshine-0.0.4277-1.src.rpm', 'pkg_name': 'Sunshine', 'pkg_version': '0.0.4277-1'} [2025-09-20 04:38:50,696][ INFO][PID:3498001] Finished build: id=9585094 failed=False timeout=108000 destdir=/var/lib/copr/public_html/results/lizardbyte/pulls:pr:4277 chroot=srpm-builds [2025-09-20 04:38:50,713][ INFO][PID:3498001] Worker succeeded build, took 508.5605745315552 [2025-09-20 04:38:50,717][ INFO][PID:3498001] 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": 1758343130.7134004, "started_on": 1758342622.1528258, "submitted_on": null, "status": 1, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "9585094", "build_id": 9585094, "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\": \"tmpu42wdqb5\", \"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/09585094/Sunshine-0.0.4277-1.src.rpm", "uses_devel_repo": null, "sandbox": "lizardbyte/pulls--ff06b122-806a-4963-952e-e224bbe0d86e", "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": "09585094", "built_packages": "", "tags": [ "arch_x86_64" ], "pkg_version": "0.0.4277-1", "id": 9585094, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2025-09-20 04:38:50,766][ INFO][PID:3498001] Sending fedora-messaging bus message in build.end [2025-09-20 04:38:50,828][ INFO][PID:3498001] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:4277/srpm-builds/09585094/builder-live.log by gzip [2025-09-20 04:38:50,837][ INFO][PID:3498001] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:4277/srpm-builds/09585094/builder-live.log' as PID 3583987 [2025-09-20 04:38:50,845][ INFO][PID:3498001] Finished after 0 seconds with exit code 0 (gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:4277/srpm-builds/09585094/builder-live.log) [2025-09-20 04:38:50,845][ INFO][PID:3498001] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:4277/srpm-builds/09585094/backend.log by gzip