[2025-09-20 05:03:40,659][ INFO][PID:3790139] Marking build as starting [2025-09-20 05:03:40,789][ INFO][PID:3790139] Checking for cancel request [2025-09-20 05:03:40,803][ INFO][PID:3790139] VM allocation process starts [2025-09-20 05:03:40,908][ INFO][PID:3790139] Trying to allocate VM: ResallocHost, ticket_id=5175401, requested_tags=['copr_builder', 'arch_x86_64'] [2025-09-20 05:03:45,914][ INFO][PID:3790139] Checking for cancel request [2025-09-20 05:03:50,917][ INFO][PID:3790139] Checking for cancel request [2025-09-20 05:03:55,925][ INFO][PID:3790139] Checking for cancel request [2025-09-20 05:04:00,938][ INFO][PID:3790139] Checking for cancel request [2025-09-20 05:04:05,952][ INFO][PID:3790139] Checking for cancel request [2025-09-20 05:04:10,958][ INFO][PID:3790139] Checking for cancel request [2025-09-20 05:04:15,962][ INFO][PID:3790139] Checking for cancel request [2025-09-20 05:04:20,965][ INFO][PID:3790139] Checking for cancel request [2025-09-20 05:04:25,973][ INFO][PID:3790139] Checking for cancel request [2025-09-20 05:04:30,993][ INFO][PID:3790139] Checking for cancel request [2025-09-20 05:04:36,008][ INFO][PID:3790139] Checking for cancel request [2025-09-20 05:04:41,013][ INFO][PID:3790139] Checking for cancel request [2025-09-20 05:04:46,019][ INFO][PID:3790139] Checking for cancel request [2025-09-20 05:04:51,032][ INFO][PID:3790139] Checking for cancel request [2025-09-20 05:04:56,052][ INFO][PID:3790139] Checking for cancel request [2025-09-20 05:05:01,058][ INFO][PID:3790139] Checking for cancel request [2025-09-20 05:05:06,061][ INFO][PID:3790139] Checking for cancel request [2025-09-20 05:05:11,068][ INFO][PID:3790139] Checking for cancel request [2025-09-20 05:05:16,184][ INFO][PID:3790139] Checking for cancel request [2025-09-20 05:05:21,187][ INFO][PID:3790139] Checking for cancel request [2025-09-20 05:05:26,207][ INFO][PID:3790139] Checking for cancel request [2025-09-20 05:05:29,440][ INFO][PID:3790139] Allocated host ResallocHost, ticket_id=5175401, hostname=2620:52:3:1:dead:beef:cafe:c19a, name=copr_hv_x86_64_03_prod_06843856_20250920_050222, requested_tags=['copr_builder', 'arch_x86_64'] [2025-09-20 05:05:29,443][ INFO][PID:3790139] Allocating ssh connection to builder [2025-09-20 05:05:29,446][ INFO][PID:3790139] Checking that builder machine is OK [2025-09-20 05:05:30,260][ INFO][PID:3790139] Running remote command: copr-builder-ready srpm-builds [2025-09-20 05:05:30,702][ INFO][PID:3790139] Red Hat subscription not needed for srpm-builds Builder is ready to be used [2025-09-20 05:05:30,703][ INFO][PID:3790139] Filling build.info file with builder info [2025-09-20 05:05:30,705][ INFO][PID:3790139] Checking for cancel request [2025-09-20 05:05:30,709][ INFO][PID:3790139] 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": 1758344730.709061, "submitted_on": null, "status": 3, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "9585223", "build_id": 9585223, "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\": \"tmpqp30fo2t\", \"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--3f0e95c8-390a-4b08-9f0c-6c2bc8fcb54e", "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": "09585223", "built_packages": "", "tags": [ "arch_x86_64" ], "id": 9585223, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2025-09-20 05:05:30,757][ INFO][PID:3790139] Sending fedora-messaging bus message in build.start [2025-09-20 05:05:32,052][ INFO][PID:3790139] Sending fedora-messaging bus message in chroot.start [2025-09-20 05:05:32,095][ INFO][PID:3790139] Starting remote build: copr-rpmbuild --verbose --drop-resultdir --srpm --task-url https://copr.fedorainfracloud.org/backend/get-srpm-build-task/9585223 --detached [2025-09-20 05:05:32,745][ INFO][PID:3790139] The copr-rpmbuild seems started, per: stdout: stderr: Warning: Permanently added '2620:52:3:1:dead:beef:cafe:c19a' (ED25519) to the list of known hosts. [2025-09-20 05:05:32,747][ INFO][PID:3790139] Downloading the builder-live.log file, attempt 1 [2025-09-20 05:05:32,759][ INFO][PID:3790139] Popen command started: ssh -F /home/copr/.ssh/config mockbuilder@2620:52:3:1:dead:beef:cafe:c19a copr-rpmbuild-log [2025-09-20 05:05:37,765][ INFO][PID:3790139] Periodic builder liveness probe: alive [2025-09-20 05:05:37,770][ INFO][PID:3790139] Checking for cancel request [2025-09-20 05:05:42,785][ INFO][PID:3790139] Checking for cancel request [2025-09-20 05:05:47,790][ INFO][PID:3790139] Checking for cancel request [2025-09-20 05:05:52,812][ INFO][PID:3790139] Checking for cancel request [2025-09-20 05:05:57,819][ INFO][PID:3790139] Checking for cancel request [2025-09-20 05:06:02,827][ INFO][PID:3790139] Checking for cancel request [2025-09-20 05:06:07,831][ INFO][PID:3790139] Checking for cancel request [2025-09-20 05:06:12,839][ INFO][PID:3790139] Checking for cancel request [2025-09-20 05:06:17,849][ INFO][PID:3790139] Checking for cancel request [2025-09-20 05:06:22,854][ INFO][PID:3790139] Checking for cancel request [2025-09-20 05:06:27,862][ INFO][PID:3790139] Checking for cancel request [2025-09-20 05:06:32,882][ INFO][PID:3790139] Checking for cancel request [2025-09-20 05:06:37,894][ INFO][PID:3790139] Checking for cancel request [2025-09-20 05:06:42,896][ INFO][PID:3790139] Checking for cancel request [2025-09-20 05:06:47,898][ INFO][PID:3790139] Checking for cancel request [2025-09-20 05:06:52,902][ INFO][PID:3790139] Checking for cancel request [2025-09-20 05:06:57,908][ INFO][PID:3790139] Checking for cancel request [2025-09-20 05:07:02,925][ INFO][PID:3790139] Checking for cancel request [2025-09-20 05:07:07,928][ INFO][PID:3790139] Checking for cancel request [2025-09-20 05:07:12,934][ INFO][PID:3790139] Checking for cancel request [2025-09-20 05:07:17,938][ INFO][PID:3790139] Checking for cancel request [2025-09-20 05:07:22,975][ INFO][PID:3790139] Checking for cancel request [2025-09-20 05:07:28,057][ INFO][PID:3790139] Checking for cancel request [2025-09-20 05:07:33,150][ INFO][PID:3790139] Checking for cancel request [2025-09-20 05:07:38,163][ INFO][PID:3790139] Checking for cancel request [2025-09-20 05:07:43,177][ INFO][PID:3790139] Checking for cancel request [2025-09-20 05:07:48,193][ INFO][PID:3790139] Checking for cancel request [2025-09-20 05:07:53,249][ INFO][PID:3790139] Checking for cancel request [2025-09-20 05:07:58,264][ INFO][PID:3790139] Checking for cancel request [2025-09-20 05:08:03,279][ INFO][PID:3790139] Checking for cancel request [2025-09-20 05:08:08,293][ INFO][PID:3790139] Checking for cancel request [2025-09-20 05:08:13,323][ INFO][PID:3790139] Checking for cancel request [2025-09-20 05:08:18,343][ INFO][PID:3790139] Checking for cancel request [2025-09-20 05:08:23,348][ INFO][PID:3790139] Checking for cancel request [2025-09-20 05:08:28,357][ INFO][PID:3790139] Checking for cancel request [2025-09-20 05:08:33,363][ INFO][PID:3790139] Checking for cancel request [2025-09-20 05:08:38,382][ INFO][PID:3790139] Checking for cancel request [2025-09-20 05:08:43,396][ INFO][PID:3790139] Checking for cancel request [2025-09-20 05:08:48,397][ INFO][PID:3790139] Checking for cancel request [2025-09-20 05:08:53,408][ INFO][PID:3790139] Checking for cancel request [2025-09-20 05:08:58,411][ INFO][PID:3790139] Checking for cancel request [2025-09-20 05:09:03,427][ INFO][PID:3790139] Checking for cancel request [2025-09-20 05:09:08,435][ INFO][PID:3790139] Checking for cancel request [2025-09-20 05:09:13,440][ INFO][PID:3790139] Checking for cancel request [2025-09-20 05:09:18,451][ INFO][PID:3790139] Checking for cancel request [2025-09-20 05:09:23,460][ INFO][PID:3790139] Checking for cancel request [2025-09-20 05:09:28,465][ INFO][PID:3790139] Checking for cancel request [2025-09-20 05:09:33,470][ INFO][PID:3790139] Checking for cancel request [2025-09-20 05:09:38,480][ INFO][PID:3790139] Checking for cancel request [2025-09-20 05:09:43,487][ INFO][PID:3790139] Checking for cancel request [2025-09-20 05:09:48,506][ INFO][PID:3790139] Checking for cancel request [2025-09-20 05:09:53,517][ INFO][PID:3790139] Checking for cancel request [2025-09-20 05:09:58,521][ INFO][PID:3790139] Checking for cancel request [2025-09-20 05:10:03,581][ INFO][PID:3790139] Checking for cancel request [2025-09-20 05:10:08,601][ INFO][PID:3790139] Checking for cancel request [2025-09-20 05:10:13,614][ INFO][PID:3790139] Checking for cancel request [2025-09-20 05:10:18,630][ INFO][PID:3790139] Checking for cancel request [2025-09-20 05:10:23,676][ INFO][PID:3790139] Checking for cancel request [2025-09-20 05:10:28,683][ INFO][PID:3790139] Checking for cancel request [2025-09-20 05:10:33,685][ INFO][PID:3790139] Checking for cancel request [2025-09-20 05:10:38,687][ INFO][PID:3790139] Checking for cancel request [2025-09-20 05:10:43,699][ INFO][PID:3790139] Checking for cancel request [2025-09-20 05:10:48,703][ INFO][PID:3790139] Checking for cancel request [2025-09-20 05:10:53,708][ INFO][PID:3790139] Checking for cancel request [2025-09-20 05:10:58,712][ INFO][PID:3790139] Checking for cancel request [2025-09-20 05:11:03,723][ INFO][PID:3790139] Checking for cancel request [2025-09-20 05:11:08,743][ INFO][PID:3790139] Checking for cancel request [2025-09-20 05:11:13,758][ INFO][PID:3790139] Checking for cancel request [2025-09-20 05:11:18,764][ INFO][PID:3790139] Checking for cancel request [2025-09-20 05:11:23,769][ INFO][PID:3790139] Checking for cancel request [2025-09-20 05:11:28,777][ INFO][PID:3790139] Checking for cancel request [2025-09-20 05:11:33,784][ INFO][PID:3790139] Checking for cancel request [2025-09-20 05:11:38,787][ INFO][PID:3790139] Checking for cancel request [2025-09-20 05:11:43,792][ INFO][PID:3790139] Checking for cancel request [2025-09-20 05:11:48,799][ INFO][PID:3790139] Checking for cancel request [2025-09-20 05:11:53,805][ INFO][PID:3790139] Checking for cancel request [2025-09-20 05:11:58,815][ INFO][PID:3790139] Checking for cancel request [2025-09-20 05:12:03,829][ INFO][PID:3790139] Checking for cancel request [2025-09-20 05:12:08,831][ INFO][PID:3790139] Checking for cancel request [2025-09-20 05:12:13,841][ INFO][PID:3790139] Checking for cancel request [2025-09-20 05:12:18,855][ INFO][PID:3790139] Checking for cancel request [2025-09-20 05:12:23,869][ INFO][PID:3790139] Checking for cancel request [2025-09-20 05:12:28,883][ INFO][PID:3790139] Checking for cancel request [2025-09-20 05:12:34,031][ INFO][PID:3790139] Checking for cancel request [2025-09-20 05:12:39,054][ INFO][PID:3790139] Checking for cancel request [2025-09-20 05:12:44,059][ INFO][PID:3790139] Checking for cancel request [2025-09-20 05:12:49,064][ INFO][PID:3790139] Checking for cancel request [2025-09-20 05:12:54,073][ INFO][PID:3790139] Checking for cancel request [2025-09-20 05:12:59,080][ INFO][PID:3790139] Checking for cancel request [2025-09-20 05:13:04,085][ INFO][PID:3790139] Checking for cancel request [2025-09-20 05:13:09,097][ INFO][PID:3790139] Checking for cancel request [2025-09-20 05:13:14,109][ INFO][PID:3790139] Checking for cancel request [2025-09-20 05:13:19,115][ INFO][PID:3790139] Checking for cancel request [2025-09-20 05:13:24,133][ INFO][PID:3790139] Checking for cancel request [2025-09-20 05:13:29,179][ INFO][PID:3790139] Checking for cancel request [2025-09-20 05:13:34,195][ INFO][PID:3790139] Checking for cancel request [2025-09-20 05:13:39,234][ INFO][PID:3790139] Checking for cancel request [2025-09-20 05:13:42,394][ INFO][PID:3790139] Downloading results from builder [2025-09-20 05:13:42,394][ INFO][PID:3790139] rsyncing of mockbuilder@[2620:52:3:1:dead:beef:cafe:c19a]:/var/lib/copr-rpmbuild/results/ to /var/lib/copr/public_html/results/lizardbyte/pulls:pr:4277/srpm-builds/09585223 started [2025-09-20 05:13:42,398][ INFO][PID:3790139] 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:c19a]:/var/lib/copr-rpmbuild/results/ /var/lib/copr/public_html/results/lizardbyte/pulls:pr:4277/srpm-builds/09585223/ &> /var/lib/copr/public_html/results/lizardbyte/pulls:pr:4277/srpm-builds/09585223/build-09585223.rsync.log [2025-09-20 05:14:25,139][ INFO][PID:3790139] rsyncing finished. [2025-09-20 05:14:25,139][ INFO][PID:3790139] Releasing VM back to pool [2025-09-20 05:14:25,187][ INFO][PID:3790139] Searching for 'success' file in resultdir [2025-09-20 05:14:25,190][ INFO][PID:3790139] Getting build details [2025-09-20 05:14:25,194][ INFO][PID:3790139] Retrieving SRPM info from /var/lib/copr/public_html/results/lizardbyte/pulls:pr:4277/srpm-builds/09585223 [2025-09-20 05:14:25,196][ INFO][PID:3790139] SRPM URL: https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:4277/srpm-builds/09585223/Sunshine-0.0.4277-1.src.rpm [2025-09-20 05:14:25,199][ INFO][PID:3790139] build details: {'srpm_url': 'https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:4277/srpm-builds/09585223/Sunshine-0.0.4277-1.src.rpm', 'pkg_name': 'Sunshine', 'pkg_version': '0.0.4277-1'} [2025-09-20 05:14:25,201][ INFO][PID:3790139] Finished build: id=9585223 failed=False timeout=108000 destdir=/var/lib/copr/public_html/results/lizardbyte/pulls:pr:4277 chroot=srpm-builds [2025-09-20 05:14:25,208][ INFO][PID:3790139] Worker succeeded build, took 534.4992227554321 [2025-09-20 05:14:25,209][ INFO][PID:3790139] 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": 1758345265.2082837, "started_on": 1758344730.709061, "submitted_on": null, "status": 1, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "9585223", "build_id": 9585223, "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\": \"tmpqp30fo2t\", \"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/09585223/Sunshine-0.0.4277-1.src.rpm", "uses_devel_repo": null, "sandbox": "lizardbyte/pulls--3f0e95c8-390a-4b08-9f0c-6c2bc8fcb54e", "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": "09585223", "built_packages": "", "tags": [ "arch_x86_64" ], "pkg_version": "0.0.4277-1", "id": 9585223, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2025-09-20 05:14:25,265][ INFO][PID:3790139] Sending fedora-messaging bus message in build.end [2025-09-20 05:14:25,306][ INFO][PID:3790139] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:4277/srpm-builds/09585223/builder-live.log by gzip [2025-09-20 05:14:25,308][ INFO][PID:3790139] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:4277/srpm-builds/09585223/builder-live.log' as PID 3885276 [2025-09-20 05:14:25,381][ INFO][PID:3790139] Finished after 0 seconds with exit code 0 (gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:4277/srpm-builds/09585223/builder-live.log) [2025-09-20 05:14:25,385][ INFO][PID:3790139] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:4277/srpm-builds/09585223/backend.log by gzip [2025-09-20 05:14:25,391][ INFO][PID:3790139] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:4277/srpm-builds/09585223/backend.log' as PID 3885286