[2025-09-20 04:48:34,605][ INFO][PID:3660696] Marking build as starting [2025-09-20 04:48:34,654][ INFO][PID:3660696] Checking for cancel request [2025-09-20 04:48:34,662][ INFO][PID:3660696] VM allocation process starts [2025-09-20 04:48:34,748][ INFO][PID:3660696] Trying to allocate VM: ResallocHost, ticket_id=5174582, requested_tags=['copr_builder', 'arch_x86_64'] [2025-09-20 04:48:39,755][ INFO][PID:3660696] Checking for cancel request [2025-09-20 04:48:44,757][ INFO][PID:3660696] Checking for cancel request [2025-09-20 04:48:49,775][ INFO][PID:3660696] Checking for cancel request [2025-09-20 04:48:54,781][ INFO][PID:3660696] Checking for cancel request [2025-09-20 04:48:59,789][ INFO][PID:3660696] Checking for cancel request [2025-09-20 04:49:04,795][ INFO][PID:3660696] Checking for cancel request [2025-09-20 04:49:09,797][ INFO][PID:3660696] Checking for cancel request [2025-09-20 04:49:14,800][ INFO][PID:3660696] Checking for cancel request [2025-09-20 04:49:19,817][ INFO][PID:3660696] Checking for cancel request [2025-09-20 04:49:24,826][ INFO][PID:3660696] Checking for cancel request [2025-09-20 04:49:29,837][ INFO][PID:3660696] Checking for cancel request [2025-09-20 04:49:34,839][ INFO][PID:3660696] Checking for cancel request [2025-09-20 04:49:39,850][ INFO][PID:3660696] Checking for cancel request [2025-09-20 04:49:44,859][ INFO][PID:3660696] Checking for cancel request [2025-09-20 04:49:49,866][ INFO][PID:3660696] Checking for cancel request [2025-09-20 04:49:54,876][ INFO][PID:3660696] Checking for cancel request [2025-09-20 04:49:59,879][ INFO][PID:3660696] Checking for cancel request [2025-09-20 04:50:04,881][ INFO][PID:3660696] Checking for cancel request [2025-09-20 04:50:09,896][ INFO][PID:3660696] Checking for cancel request [2025-09-20 04:50:14,910][ INFO][PID:3660696] Checking for cancel request [2025-09-20 04:50:19,920][ INFO][PID:3660696] Checking for cancel request [2025-09-20 04:50:24,923][ INFO][PID:3660696] Checking for cancel request [2025-09-20 04:50:29,930][ INFO][PID:3660696] Checking for cancel request [2025-09-20 04:50:34,940][ INFO][PID:3660696] Checking for cancel request [2025-09-20 04:50:39,944][ INFO][PID:3660696] Checking for cancel request [2025-09-20 04:50:44,948][ INFO][PID:3660696] Checking for cancel request [2025-09-20 04:50:49,952][ INFO][PID:3660696] Checking for cancel request [2025-09-20 04:50:53,112][ INFO][PID:3660696] Allocated host ResallocHost, ticket_id=5174582, hostname=18.234.102.89, name=aws_x86_64_normalreserved_prod_06843694_20250920_044816, requested_tags=['copr_builder', 'arch_x86_64'] [2025-09-20 04:50:53,113][ INFO][PID:3660696] Allocating ssh connection to builder [2025-09-20 04:50:53,115][ INFO][PID:3660696] Checking that builder machine is OK [2025-09-20 04:50:53,483][ INFO][PID:3660696] Running remote command: copr-builder-ready srpm-builds [2025-09-20 04:50:53,793][ INFO][PID:3660696] Red Hat subscription not needed for srpm-builds Builder is ready to be used [2025-09-20 04:50:53,794][ INFO][PID:3660696] Filling build.info file with builder info [2025-09-20 04:50:53,801][ INFO][PID:3660696] Checking for cancel request [2025-09-20 04:50:53,805][ INFO][PID:3660696] 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:4279", "submitter": null, "ended_on": null, "started_on": 1758343853.804966, "submitted_on": null, "status": 3, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "9585117", "build_id": 9585117, "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\": \"tmpgbpdx_pn\", \"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--6c088f2d-6981-4a98-b903-918567a9138f", "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:4279", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:4279", "result_dir": "09585117", "built_packages": "", "tags": [ "arch_x86_64" ], "id": 9585117, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2025-09-20 04:50:53,846][ INFO][PID:3660696] Sending fedora-messaging bus message in build.start [2025-09-20 04:50:59,015][ INFO][PID:3660696] Sending fedora-messaging bus message in chroot.start [2025-09-20 04:50:59,051][ INFO][PID:3660696] Starting remote build: copr-rpmbuild --verbose --drop-resultdir --srpm --task-url https://copr.fedorainfracloud.org/backend/get-srpm-build-task/9585117 --detached [2025-09-20 04:50:59,456][ INFO][PID:3660696] The copr-rpmbuild seems started, per: stdout: stderr: Warning: Permanently added '18.234.102.89' (ED25519) to the list of known hosts. [2025-09-20 04:50:59,457][ INFO][PID:3660696] Downloading the builder-live.log file, attempt 1 [2025-09-20 04:50:59,462][ INFO][PID:3660696] Popen command started: ssh -F /home/copr/.ssh/config mockbuilder@18.234.102.89 copr-rpmbuild-log [2025-09-20 04:51:04,490][ INFO][PID:3660696] Periodic builder liveness probe: alive [2025-09-20 04:51:04,498][ INFO][PID:3660696] Checking for cancel request [2025-09-20 04:51:09,504][ INFO][PID:3660696] Checking for cancel request [2025-09-20 04:51:14,508][ INFO][PID:3660696] Checking for cancel request [2025-09-20 04:51:19,510][ INFO][PID:3660696] Checking for cancel request [2025-09-20 04:51:24,513][ INFO][PID:3660696] Checking for cancel request [2025-09-20 04:51:29,519][ INFO][PID:3660696] Checking for cancel request [2025-09-20 04:51:34,521][ INFO][PID:3660696] Checking for cancel request [2025-09-20 04:51:39,522][ INFO][PID:3660696] Checking for cancel request [2025-09-20 04:51:44,528][ INFO][PID:3660696] Checking for cancel request [2025-09-20 04:51:49,532][ INFO][PID:3660696] Checking for cancel request [2025-09-20 04:51:54,533][ INFO][PID:3660696] Checking for cancel request [2025-09-20 04:51:59,539][ INFO][PID:3660696] Checking for cancel request [2025-09-20 04:52:04,540][ INFO][PID:3660696] Checking for cancel request [2025-09-20 04:52:09,543][ INFO][PID:3660696] Checking for cancel request [2025-09-20 04:52:14,551][ INFO][PID:3660696] Checking for cancel request [2025-09-20 04:52:19,553][ INFO][PID:3660696] Checking for cancel request [2025-09-20 04:52:24,557][ INFO][PID:3660696] Checking for cancel request [2025-09-20 04:52:29,563][ INFO][PID:3660696] Checking for cancel request [2025-09-20 04:52:34,565][ INFO][PID:3660696] Checking for cancel request [2025-09-20 04:52:39,572][ INFO][PID:3660696] Checking for cancel request [2025-09-20 04:52:44,574][ INFO][PID:3660696] Checking for cancel request [2025-09-20 04:52:49,580][ INFO][PID:3660696] Checking for cancel request [2025-09-20 04:52:54,584][ INFO][PID:3660696] Checking for cancel request [2025-09-20 04:52:59,586][ INFO][PID:3660696] Checking for cancel request [2025-09-20 04:53:04,592][ INFO][PID:3660696] Checking for cancel request [2025-09-20 04:53:09,594][ INFO][PID:3660696] Checking for cancel request [2025-09-20 04:53:14,603][ INFO][PID:3660696] Checking for cancel request [2025-09-20 04:53:19,605][ INFO][PID:3660696] Checking for cancel request [2025-09-20 04:53:24,611][ INFO][PID:3660696] Checking for cancel request [2025-09-20 04:53:29,614][ INFO][PID:3660696] Checking for cancel request [2025-09-20 04:53:34,618][ INFO][PID:3660696] Checking for cancel request [2025-09-20 04:53:39,622][ INFO][PID:3660696] Checking for cancel request [2025-09-20 04:53:44,627][ INFO][PID:3660696] Checking for cancel request [2025-09-20 04:53:49,629][ INFO][PID:3660696] Checking for cancel request [2025-09-20 04:53:54,635][ INFO][PID:3660696] Checking for cancel request [2025-09-20 04:53:59,641][ INFO][PID:3660696] Checking for cancel request [2025-09-20 04:54:04,642][ INFO][PID:3660696] Checking for cancel request [2025-09-20 04:54:09,650][ INFO][PID:3660696] Checking for cancel request [2025-09-20 04:54:14,655][ INFO][PID:3660696] Checking for cancel request [2025-09-20 04:54:19,665][ INFO][PID:3660696] Checking for cancel request [2025-09-20 04:54:24,666][ INFO][PID:3660696] Checking for cancel request [2025-09-20 04:54:29,671][ INFO][PID:3660696] Checking for cancel request [2025-09-20 04:54:34,679][ INFO][PID:3660696] Checking for cancel request [2025-09-20 04:54:39,689][ INFO][PID:3660696] Checking for cancel request [2025-09-20 04:54:44,693][ INFO][PID:3660696] Checking for cancel request [2025-09-20 04:54:49,699][ INFO][PID:3660696] Checking for cancel request [2025-09-20 04:54:54,703][ INFO][PID:3660696] Checking for cancel request [2025-09-20 04:54:59,718][ INFO][PID:3660696] Checking for cancel request [2025-09-20 04:55:04,721][ INFO][PID:3660696] Checking for cancel request [2025-09-20 04:55:09,750][ INFO][PID:3660696] Checking for cancel request [2025-09-20 04:55:14,754][ INFO][PID:3660696] Checking for cancel request [2025-09-20 04:55:19,758][ INFO][PID:3660696] Checking for cancel request [2025-09-20 04:55:24,771][ INFO][PID:3660696] Checking for cancel request [2025-09-20 04:55:29,772][ INFO][PID:3660696] Checking for cancel request [2025-09-20 04:55:34,774][ INFO][PID:3660696] Checking for cancel request [2025-09-20 04:55:39,781][ INFO][PID:3660696] Checking for cancel request [2025-09-20 04:55:44,788][ INFO][PID:3660696] Checking for cancel request [2025-09-20 04:55:49,792][ INFO][PID:3660696] Checking for cancel request [2025-09-20 04:55:54,796][ INFO][PID:3660696] Checking for cancel request [2025-09-20 04:55:59,804][ INFO][PID:3660696] Checking for cancel request [2025-09-20 04:56:04,808][ INFO][PID:3660696] Checking for cancel request [2025-09-20 04:56:09,818][ INFO][PID:3660696] Checking for cancel request [2025-09-20 04:56:14,824][ INFO][PID:3660696] Checking for cancel request [2025-09-20 04:56:19,827][ INFO][PID:3660696] Checking for cancel request [2025-09-20 04:56:24,835][ INFO][PID:3660696] Checking for cancel request [2025-09-20 04:56:29,837][ INFO][PID:3660696] Checking for cancel request [2025-09-20 04:56:34,838][ INFO][PID:3660696] Checking for cancel request [2025-09-20 04:56:39,842][ INFO][PID:3660696] Checking for cancel request [2025-09-20 04:56:44,855][ INFO][PID:3660696] Checking for cancel request [2025-09-20 04:56:49,859][ INFO][PID:3660696] Checking for cancel request [2025-09-20 04:56:54,866][ INFO][PID:3660696] Checking for cancel request [2025-09-20 04:56:59,874][ INFO][PID:3660696] Checking for cancel request [2025-09-20 04:57:04,882][ INFO][PID:3660696] Checking for cancel request [2025-09-20 04:57:09,887][ INFO][PID:3660696] Checking for cancel request [2025-09-20 04:57:14,891][ INFO][PID:3660696] Checking for cancel request [2025-09-20 04:57:19,900][ INFO][PID:3660696] Checking for cancel request [2025-09-20 04:57:24,901][ INFO][PID:3660696] Checking for cancel request [2025-09-20 04:57:29,905][ INFO][PID:3660696] Checking for cancel request [2025-09-20 04:57:34,912][ INFO][PID:3660696] Checking for cancel request [2025-09-20 04:57:39,918][ INFO][PID:3660696] Checking for cancel request [2025-09-20 04:57:44,921][ INFO][PID:3660696] Checking for cancel request [2025-09-20 04:57:49,928][ INFO][PID:3660696] Checking for cancel request [2025-09-20 04:57:54,933][ INFO][PID:3660696] Checking for cancel request [2025-09-20 04:57:59,943][ INFO][PID:3660696] Checking for cancel request [2025-09-20 04:58:04,951][ INFO][PID:3660696] Checking for cancel request [2025-09-20 04:58:09,961][ INFO][PID:3660696] Checking for cancel request [2025-09-20 04:58:14,967][ INFO][PID:3660696] Checking for cancel request [2025-09-20 04:58:19,973][ INFO][PID:3660696] Checking for cancel request [2025-09-20 04:58:21,629][ INFO][PID:3660696] Downloading results from builder [2025-09-20 04:58:21,630][ INFO][PID:3660696] rsyncing of mockbuilder@18.234.102.89:/var/lib/copr-rpmbuild/results/ to /var/lib/copr/public_html/results/lizardbyte/pulls:pr:4279/srpm-builds/09585117 started [2025-09-20 04:58:21,637][ INFO][PID:3660696] Popen command started: /usr/bin/rsync -rltDvH --chmod=D755,F644 -e 'ssh -F /home/copr/.ssh/config' mockbuilder@18.234.102.89:/var/lib/copr-rpmbuild/results/ /var/lib/copr/public_html/results/lizardbyte/pulls:pr:4279/srpm-builds/09585117/ &> /var/lib/copr/public_html/results/lizardbyte/pulls:pr:4279/srpm-builds/09585117/build-09585117.rsync.log [2025-09-20 04:58:44,268][ INFO][PID:3660696] rsyncing finished. [2025-09-20 04:58:44,269][ INFO][PID:3660696] Releasing VM back to pool [2025-09-20 04:58:44,288][ INFO][PID:3660696] Searching for 'success' file in resultdir [2025-09-20 04:58:44,290][ INFO][PID:3660696] Getting build details [2025-09-20 04:58:44,293][ INFO][PID:3660696] Retrieving SRPM info from /var/lib/copr/public_html/results/lizardbyte/pulls:pr:4279/srpm-builds/09585117 [2025-09-20 04:58:44,297][ INFO][PID:3660696] SRPM URL: https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:4279/srpm-builds/09585117/Sunshine-0.0.4279-1.src.rpm [2025-09-20 04:58:44,298][ INFO][PID:3660696] build details: {'srpm_url': 'https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:4279/srpm-builds/09585117/Sunshine-0.0.4279-1.src.rpm', 'pkg_name': 'Sunshine', 'pkg_version': '0.0.4279-1'} [2025-09-20 04:58:44,300][ INFO][PID:3660696] Finished build: id=9585117 failed=False timeout=108000 destdir=/var/lib/copr/public_html/results/lizardbyte/pulls:pr:4279 chroot=srpm-builds [2025-09-20 04:58:44,311][ INFO][PID:3660696] Worker succeeded build, took 470.5063650608063 [2025-09-20 04:58:44,321][ INFO][PID:3660696] 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:4279", "submitter": null, "ended_on": 1758344324.311331, "started_on": 1758343853.804966, "submitted_on": null, "status": 1, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "9585117", "build_id": 9585117, "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\": \"tmpgbpdx_pn\", \"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:4279/srpm-builds/09585117/Sunshine-0.0.4279-1.src.rpm", "uses_devel_repo": null, "sandbox": "lizardbyte/pulls--6c088f2d-6981-4a98-b903-918567a9138f", "results": { "name": "Sunshine", "epoch": null, "version": "0.0.4279", "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:4279", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:4279", "result_dir": "09585117", "built_packages": "", "tags": [ "arch_x86_64" ], "pkg_version": "0.0.4279-1", "id": 9585117, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2025-09-20 04:58:44,394][ INFO][PID:3660696] Sending fedora-messaging bus message in build.end [2025-09-20 04:58:44,459][ INFO][PID:3660696] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:4279/srpm-builds/09585117/builder-live.log by gzip [2025-09-20 04:58:44,467][ INFO][PID:3660696] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:4279/srpm-builds/09585117/builder-live.log' as PID 3747195 [2025-09-20 04:58:44,491][ INFO][PID:3660696] Finished after 0 seconds with exit code 0 (gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:4279/srpm-builds/09585117/builder-live.log) [2025-09-20 04:58:44,495][ INFO][PID:3660696] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:4279/srpm-builds/09585117/backend.log by gzip [2025-09-20 04:58:44,509][ INFO][PID:3660696] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:4279/srpm-builds/09585117/backend.log' as PID 3747203