[2025-10-01 07:06:05,195][ INFO][PID:1871617] Marking build as starting [2025-10-01 07:06:05,236][ INFO][PID:1871617] Checking for cancel request [2025-10-01 07:06:05,239][ INFO][PID:1871617] VM allocation process starts [2025-10-01 07:06:05,277][ INFO][PID:1871617] Trying to allocate VM: ResallocHost, ticket_id=5413276, requested_tags=['copr_builder', 'arch_x86_64'] [2025-10-01 07:06:10,281][ INFO][PID:1871617] Checking for cancel request [2025-10-01 07:06:15,282][ INFO][PID:1871617] Checking for cancel request [2025-10-01 07:06:20,288][ INFO][PID:1871617] Checking for cancel request [2025-10-01 07:06:25,294][ INFO][PID:1871617] Checking for cancel request [2025-10-01 07:06:30,295][ INFO][PID:1871617] Checking for cancel request [2025-10-01 07:06:35,297][ INFO][PID:1871617] Checking for cancel request [2025-10-01 07:06:40,300][ INFO][PID:1871617] Checking for cancel request [2025-10-01 07:06:45,302][ INFO][PID:1871617] Checking for cancel request [2025-10-01 07:06:50,304][ INFO][PID:1871617] Checking for cancel request [2025-10-01 07:06:55,306][ INFO][PID:1871617] Checking for cancel request [2025-10-01 07:07:00,309][ INFO][PID:1871617] Checking for cancel request [2025-10-01 07:07:05,310][ INFO][PID:1871617] Checking for cancel request [2025-10-01 07:07:10,311][ INFO][PID:1871617] Checking for cancel request [2025-10-01 07:07:15,313][ INFO][PID:1871617] Checking for cancel request [2025-10-01 07:07:20,314][ INFO][PID:1871617] Checking for cancel request [2025-10-01 07:07:25,317][ INFO][PID:1871617] Checking for cancel request [2025-10-01 07:07:30,319][ INFO][PID:1871617] Checking for cancel request [2025-10-01 07:07:35,323][ INFO][PID:1871617] Checking for cancel request [2025-10-01 07:07:40,325][ INFO][PID:1871617] Checking for cancel request [2025-10-01 07:07:45,327][ INFO][PID:1871617] Checking for cancel request [2025-10-01 07:07:50,329][ INFO][PID:1871617] Checking for cancel request [2025-10-01 07:07:53,475][ INFO][PID:1871617] Allocated host ResallocHost, ticket_id=5413276, hostname=13.222.177.252, name=aws_x86_64_normalreserved_prod_07037868_20251001_070609, requested_tags=['copr_builder', 'arch_x86_64'] [2025-10-01 07:07:53,476][ INFO][PID:1871617] Allocating ssh connection to builder [2025-10-01 07:07:53,477][ INFO][PID:1871617] Checking that builder machine is OK [2025-10-01 07:07:53,845][ INFO][PID:1871617] Running remote command: copr-builder-ready srpm-builds [2025-10-01 07:07:54,064][ INFO][PID:1871617] Red Hat subscription not needed for srpm-builds Builder is ready to be used [2025-10-01 07:07:54,065][ INFO][PID:1871617] Filling build.info file with builder info [2025-10-01 07:07:54,066][ INFO][PID:1871617] Checking for cancel request [2025-10-01 07:07:54,067][ INFO][PID:1871617] 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:4306", "submitter": null, "ended_on": null, "started_on": 1759302474.067397, "submitted_on": null, "status": 3, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "9635541", "build_id": 9635541, "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\": \"tmp57x2jwhb\", \"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--ae66078a-aa8f-47ff-bfec-d08c838e2d49", "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:4306", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:4306", "result_dir": "09635541", "built_packages": "", "tags": [ "arch_x86_64" ], "id": 9635541, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2025-10-01 07:07:54,091][ INFO][PID:1871617] Sending fedora-messaging bus message in build.start [2025-10-01 07:07:55,021][ INFO][PID:1871617] Sending fedora-messaging bus message in chroot.start [2025-10-01 07:07:55,051][ INFO][PID:1871617] Starting remote build: copr-rpmbuild --verbose --drop-resultdir --srpm --task-url https://copr.fedorainfracloud.org/backend/get-srpm-build-task/9635541 --detached [2025-10-01 07:07:55,428][ INFO][PID:1871617] The copr-rpmbuild seems started, per: stdout: stderr: Warning: Permanently added '13.222.177.252' (ED25519) to the list of known hosts. [2025-10-01 07:07:55,429][ INFO][PID:1871617] Downloading the builder-live.log file, attempt 1 [2025-10-01 07:07:55,438][ INFO][PID:1871617] Popen command started: ssh -F /home/copr/.ssh/config mockbuilder@13.222.177.252 copr-rpmbuild-log [2025-10-01 07:08:00,444][ INFO][PID:1871617] Periodic builder liveness probe: alive [2025-10-01 07:08:00,445][ INFO][PID:1871617] Checking for cancel request [2025-10-01 07:08:05,446][ INFO][PID:1871617] Checking for cancel request [2025-10-01 07:08:10,448][ INFO][PID:1871617] Checking for cancel request [2025-10-01 07:08:15,450][ INFO][PID:1871617] Checking for cancel request [2025-10-01 07:08:20,455][ INFO][PID:1871617] Checking for cancel request [2025-10-01 07:08:25,456][ INFO][PID:1871617] Checking for cancel request [2025-10-01 07:08:30,460][ INFO][PID:1871617] Checking for cancel request [2025-10-01 07:08:35,461][ INFO][PID:1871617] Checking for cancel request [2025-10-01 07:08:40,463][ INFO][PID:1871617] Checking for cancel request [2025-10-01 07:08:45,464][ INFO][PID:1871617] Checking for cancel request [2025-10-01 07:08:50,466][ INFO][PID:1871617] Checking for cancel request [2025-10-01 07:08:55,472][ INFO][PID:1871617] Checking for cancel request [2025-10-01 07:09:00,473][ INFO][PID:1871617] Checking for cancel request [2025-10-01 07:09:05,476][ INFO][PID:1871617] Checking for cancel request [2025-10-01 07:09:10,478][ INFO][PID:1871617] Checking for cancel request [2025-10-01 07:09:15,479][ INFO][PID:1871617] Checking for cancel request [2025-10-01 07:09:20,482][ INFO][PID:1871617] Checking for cancel request [2025-10-01 07:09:25,485][ INFO][PID:1871617] Checking for cancel request [2025-10-01 07:09:30,488][ INFO][PID:1871617] Checking for cancel request [2025-10-01 07:09:35,493][ INFO][PID:1871617] Checking for cancel request [2025-10-01 07:09:40,500][ INFO][PID:1871617] Checking for cancel request [2025-10-01 07:09:45,501][ INFO][PID:1871617] Checking for cancel request [2025-10-01 07:09:50,503][ INFO][PID:1871617] Checking for cancel request [2025-10-01 07:09:55,504][ INFO][PID:1871617] Checking for cancel request [2025-10-01 07:10:00,507][ INFO][PID:1871617] Checking for cancel request [2025-10-01 07:10:05,512][ INFO][PID:1871617] Checking for cancel request [2025-10-01 07:10:10,517][ INFO][PID:1871617] Checking for cancel request [2025-10-01 07:10:15,520][ INFO][PID:1871617] Checking for cancel request [2025-10-01 07:10:20,522][ INFO][PID:1871617] Checking for cancel request [2025-10-01 07:10:25,530][ INFO][PID:1871617] Checking for cancel request [2025-10-01 07:10:30,537][ INFO][PID:1871617] Checking for cancel request [2025-10-01 07:10:35,540][ INFO][PID:1871617] Checking for cancel request [2025-10-01 07:10:40,541][ INFO][PID:1871617] Checking for cancel request [2025-10-01 07:10:45,547][ INFO][PID:1871617] Checking for cancel request [2025-10-01 07:10:50,550][ INFO][PID:1871617] Checking for cancel request [2025-10-01 07:10:55,561][ INFO][PID:1871617] Checking for cancel request [2025-10-01 07:11:00,563][ INFO][PID:1871617] Checking for cancel request [2025-10-01 07:11:05,566][ INFO][PID:1871617] Checking for cancel request [2025-10-01 07:11:10,571][ INFO][PID:1871617] Checking for cancel request [2025-10-01 07:11:15,573][ INFO][PID:1871617] Checking for cancel request [2025-10-01 07:11:20,577][ INFO][PID:1871617] Checking for cancel request [2025-10-01 07:11:25,582][ INFO][PID:1871617] Checking for cancel request [2025-10-01 07:11:30,584][ INFO][PID:1871617] Checking for cancel request [2025-10-01 07:11:35,585][ INFO][PID:1871617] Checking for cancel request [2025-10-01 07:11:40,587][ INFO][PID:1871617] Checking for cancel request [2025-10-01 07:11:45,588][ INFO][PID:1871617] Checking for cancel request [2025-10-01 07:11:50,589][ INFO][PID:1871617] Checking for cancel request [2025-10-01 07:11:55,596][ INFO][PID:1871617] Checking for cancel request [2025-10-01 07:12:00,599][ INFO][PID:1871617] Checking for cancel request [2025-10-01 07:12:05,603][ INFO][PID:1871617] Checking for cancel request [2025-10-01 07:12:10,605][ INFO][PID:1871617] Checking for cancel request [2025-10-01 07:12:15,612][ INFO][PID:1871617] Checking for cancel request [2025-10-01 07:12:20,617][ INFO][PID:1871617] Checking for cancel request [2025-10-01 07:12:25,620][ INFO][PID:1871617] Checking for cancel request [2025-10-01 07:12:30,621][ INFO][PID:1871617] Checking for cancel request [2025-10-01 07:12:35,623][ INFO][PID:1871617] Checking for cancel request [2025-10-01 07:12:40,625][ INFO][PID:1871617] Checking for cancel request [2025-10-01 07:12:45,630][ INFO][PID:1871617] Checking for cancel request [2025-10-01 07:12:50,631][ INFO][PID:1871617] Checking for cancel request [2025-10-01 07:12:55,634][ INFO][PID:1871617] Checking for cancel request [2025-10-01 07:13:00,637][ INFO][PID:1871617] Checking for cancel request [2025-10-01 07:13:05,642][ INFO][PID:1871617] Checking for cancel request [2025-10-01 07:13:10,645][ INFO][PID:1871617] Checking for cancel request [2025-10-01 07:13:15,647][ INFO][PID:1871617] Checking for cancel request [2025-10-01 07:13:20,652][ INFO][PID:1871617] Checking for cancel request [2025-10-01 07:13:25,654][ INFO][PID:1871617] Checking for cancel request [2025-10-01 07:13:30,658][ INFO][PID:1871617] Checking for cancel request [2025-10-01 07:13:35,663][ INFO][PID:1871617] Checking for cancel request [2025-10-01 07:13:40,666][ INFO][PID:1871617] Checking for cancel request [2025-10-01 07:13:45,671][ INFO][PID:1871617] Checking for cancel request [2025-10-01 07:13:50,674][ INFO][PID:1871617] Checking for cancel request [2025-10-01 07:13:55,678][ INFO][PID:1871617] Checking for cancel request [2025-10-01 07:14:00,684][ INFO][PID:1871617] Checking for cancel request [2025-10-01 07:14:05,690][ INFO][PID:1871617] Checking for cancel request [2025-10-01 07:14:10,702][ INFO][PID:1871617] Checking for cancel request [2025-10-01 07:14:15,708][ INFO][PID:1871617] Checking for cancel request [2025-10-01 07:14:20,709][ INFO][PID:1871617] Checking for cancel request [2025-10-01 07:14:25,710][ INFO][PID:1871617] Checking for cancel request [2025-10-01 07:14:30,711][ INFO][PID:1871617] Checking for cancel request [2025-10-01 07:14:35,713][ INFO][PID:1871617] Checking for cancel request [2025-10-01 07:14:40,716][ INFO][PID:1871617] Checking for cancel request [2025-10-01 07:14:45,720][ INFO][PID:1871617] Checking for cancel request [2025-10-01 07:14:50,726][ INFO][PID:1871617] Checking for cancel request [2025-10-01 07:14:55,730][ INFO][PID:1871617] Checking for cancel request [2025-10-01 07:15:00,741][ INFO][PID:1871617] Checking for cancel request [2025-10-01 07:15:05,746][ INFO][PID:1871617] Checking for cancel request [2025-10-01 07:15:10,750][ INFO][PID:1871617] Checking for cancel request [2025-10-01 07:15:15,756][ INFO][PID:1871617] Checking for cancel request [2025-10-01 07:15:20,760][ INFO][PID:1871617] Checking for cancel request [2025-10-01 07:15:25,766][ INFO][PID:1871617] Checking for cancel request [2025-10-01 07:15:30,773][ INFO][PID:1871617] Checking for cancel request [2025-10-01 07:15:32,683][ INFO][PID:1871617] Downloading results from builder [2025-10-01 07:15:32,687][ INFO][PID:1871617] rsyncing of mockbuilder@13.222.177.252:/var/lib/copr-rpmbuild/results/ to /var/lib/copr/public_html/results/lizardbyte/pulls:pr:4306/srpm-builds/09635541 started [2025-10-01 07:15:32,692][ INFO][PID:1871617] Popen command started: /usr/bin/rsync -rltDvH --chmod=D755,F644 -e 'ssh -F /home/copr/.ssh/config' mockbuilder@13.222.177.252:/var/lib/copr-rpmbuild/results/ /var/lib/copr/public_html/results/lizardbyte/pulls:pr:4306/srpm-builds/09635541/ &> /var/lib/copr/public_html/results/lizardbyte/pulls:pr:4306/srpm-builds/09635541/build-09635541.rsync.log [2025-10-01 07:16:00,696][ INFO][PID:1871617] rsyncing finished. [2025-10-01 07:16:00,696][ INFO][PID:1871617] Releasing VM back to pool [2025-10-01 07:16:00,728][ INFO][PID:1871617] Searching for 'success' file in resultdir [2025-10-01 07:16:00,731][ INFO][PID:1871617] Getting build details [2025-10-01 07:16:00,739][ INFO][PID:1871617] Retrieving SRPM info from /var/lib/copr/public_html/results/lizardbyte/pulls:pr:4306/srpm-builds/09635541 [2025-10-01 07:16:00,740][ INFO][PID:1871617] SRPM URL: https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:4306/srpm-builds/09635541/Sunshine-0.0.4306-1.src.rpm [2025-10-01 07:16:00,741][ INFO][PID:1871617] build details: {'srpm_url': 'https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:4306/srpm-builds/09635541/Sunshine-0.0.4306-1.src.rpm', 'pkg_name': 'Sunshine', 'pkg_version': '0.0.4306-1'} [2025-10-01 07:16:00,741][ INFO][PID:1871617] Finished build: id=9635541 failed=False timeout=108000 destdir=/var/lib/copr/public_html/results/lizardbyte/pulls:pr:4306 chroot=srpm-builds [2025-10-01 07:16:00,750][ INFO][PID:1871617] Worker succeeded build, took 486.68266129493713 [2025-10-01 07:16:00,752][ INFO][PID:1871617] 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:4306", "submitter": null, "ended_on": 1759302960.7500584, "started_on": 1759302474.067397, "submitted_on": null, "status": 1, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "9635541", "build_id": 9635541, "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\": \"tmp57x2jwhb\", \"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:4306/srpm-builds/09635541/Sunshine-0.0.4306-1.src.rpm", "uses_devel_repo": null, "sandbox": "lizardbyte/pulls--ae66078a-aa8f-47ff-bfec-d08c838e2d49", "results": { "name": "Sunshine", "epoch": null, "version": "0.0.4306", "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:4306", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:4306", "result_dir": "09635541", "built_packages": "", "tags": [ "arch_x86_64" ], "pkg_version": "0.0.4306-1", "id": 9635541, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2025-10-01 07:16:00,793][ INFO][PID:1871617] Sending fedora-messaging bus message in build.end [2025-10-01 07:16:00,866][ INFO][PID:1871617] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:4306/srpm-builds/09635541/builder-live.log by gzip [2025-10-01 07:16:00,868][ INFO][PID:1871617] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:4306/srpm-builds/09635541/builder-live.log' as PID 1984668 [2025-10-01 07:16:00,895][ INFO][PID:1871617] Finished after 0 seconds with exit code 0 (gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:4306/srpm-builds/09635541/builder-live.log) [2025-10-01 07:16:00,897][ INFO][PID:1871617] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:4306/srpm-builds/09635541/backend.log by gzip [2025-10-01 07:16:00,907][ INFO][PID:1871617] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:4306/srpm-builds/09635541/backend.log' as PID 1984675