[2025-09-20 01:56:51,952][ INFO][PID:2341657] Marking build as starting [2025-09-20 01:56:52,010][ INFO][PID:2341657] Checking for cancel request [2025-09-20 01:56:52,015][ INFO][PID:2341657] VM allocation process starts [2025-09-20 01:56:52,057][ INFO][PID:2341657] Trying to allocate VM: ResallocHost, ticket_id=5167950, requested_tags=['copr_builder', 'arch_x86_64'] [2025-09-20 01:56:57,060][ INFO][PID:2341657] Checking for cancel request [2025-09-20 01:57:02,068][ INFO][PID:2341657] Checking for cancel request [2025-09-20 01:57:07,071][ INFO][PID:2341657] Checking for cancel request [2025-09-20 01:57:12,074][ INFO][PID:2341657] Checking for cancel request [2025-09-20 01:57:17,079][ INFO][PID:2341657] Checking for cancel request [2025-09-20 01:57:22,087][ INFO][PID:2341657] Checking for cancel request [2025-09-20 01:57:27,088][ INFO][PID:2341657] Checking for cancel request [2025-09-20 01:57:32,093][ INFO][PID:2341657] Checking for cancel request [2025-09-20 01:57:37,095][ INFO][PID:2341657] Checking for cancel request [2025-09-20 01:57:42,097][ INFO][PID:2341657] Checking for cancel request [2025-09-20 01:57:47,101][ INFO][PID:2341657] Checking for cancel request [2025-09-20 01:57:52,110][ INFO][PID:2341657] Checking for cancel request [2025-09-20 01:57:57,111][ INFO][PID:2341657] Checking for cancel request [2025-09-20 01:58:02,114][ INFO][PID:2341657] Checking for cancel request [2025-09-20 01:58:07,118][ INFO][PID:2341657] Checking for cancel request [2025-09-20 01:58:12,122][ INFO][PID:2341657] Checking for cancel request [2025-09-20 01:58:17,124][ INFO][PID:2341657] Checking for cancel request [2025-09-20 01:58:22,126][ INFO][PID:2341657] Checking for cancel request [2025-09-20 01:58:27,137][ INFO][PID:2341657] Checking for cancel request [2025-09-20 01:58:32,139][ INFO][PID:2341657] Checking for cancel request [2025-09-20 01:58:37,143][ INFO][PID:2341657] Checking for cancel request [2025-09-20 01:58:42,148][ INFO][PID:2341657] Checking for cancel request [2025-09-20 01:58:47,154][ INFO][PID:2341657] Checking for cancel request [2025-09-20 01:58:52,157][ INFO][PID:2341657] Checking for cancel request [2025-09-20 01:58:57,160][ INFO][PID:2341657] Checking for cancel request [2025-09-20 01:59:02,167][ INFO][PID:2341657] Checking for cancel request [2025-09-20 01:59:07,169][ INFO][PID:2341657] Checking for cancel request [2025-09-20 01:59:10,255][ INFO][PID:2341657] Allocated host ResallocHost, ticket_id=5167950, hostname=107.22.14.86, name=aws_x86_64_normalreserved_prod_06841696_20250920_015739, requested_tags=['copr_builder', 'arch_x86_64'] [2025-09-20 01:59:10,256][ INFO][PID:2341657] Allocating ssh connection to builder [2025-09-20 01:59:10,263][ INFO][PID:2341657] Checking that builder machine is OK [2025-09-20 01:59:10,610][ INFO][PID:2341657] Running remote command: copr-builder-ready srpm-builds [2025-09-20 01:59:10,846][ INFO][PID:2341657] Red Hat subscription not needed for srpm-builds Builder is ready to be used [2025-09-20 01:59:10,848][ INFO][PID:2341657] Filling build.info file with builder info [2025-09-20 01:59:10,849][ INFO][PID:2341657] Checking for cancel request [2025-09-20 01:59:10,852][ INFO][PID:2341657] 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": 1758333550.8518808, "submitted_on": null, "status": 3, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "9584919", "build_id": 9584919, "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\": \"tmpmctbbapp\", \"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--4851277e-f1f8-4cc9-a082-ab374a2ba032", "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": "09584919", "built_packages": "", "tags": [ "arch_x86_64" ], "id": 9584919, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2025-09-20 01:59:10,895][ INFO][PID:2341657] Sending fedora-messaging bus message in build.start [2025-09-20 01:59:11,877][ INFO][PID:2341657] Sending fedora-messaging bus message in chroot.start [2025-09-20 01:59:11,904][ INFO][PID:2341657] Starting remote build: copr-rpmbuild --verbose --drop-resultdir --srpm --task-url https://copr.fedorainfracloud.org/backend/get-srpm-build-task/9584919 --detached [2025-09-20 01:59:12,247][ INFO][PID:2341657] The copr-rpmbuild seems started, per: stdout: stderr: Warning: Permanently added '107.22.14.86' (ED25519) to the list of known hosts. [2025-09-20 01:59:12,249][ INFO][PID:2341657] Downloading the builder-live.log file, attempt 1 [2025-09-20 01:59:12,252][ INFO][PID:2341657] Popen command started: ssh -F /home/copr/.ssh/config mockbuilder@107.22.14.86 copr-rpmbuild-log [2025-09-20 01:59:17,269][ INFO][PID:2341657] Periodic builder liveness probe: alive [2025-09-20 01:59:17,271][ INFO][PID:2341657] Checking for cancel request [2025-09-20 01:59:22,276][ INFO][PID:2341657] Checking for cancel request [2025-09-20 01:59:27,278][ INFO][PID:2341657] Checking for cancel request [2025-09-20 01:59:32,281][ INFO][PID:2341657] Checking for cancel request [2025-09-20 01:59:37,287][ INFO][PID:2341657] Checking for cancel request [2025-09-20 01:59:42,310][ INFO][PID:2341657] Checking for cancel request [2025-09-20 01:59:47,317][ INFO][PID:2341657] Checking for cancel request [2025-09-20 01:59:52,321][ INFO][PID:2341657] Checking for cancel request [2025-09-20 01:59:57,323][ INFO][PID:2341657] Checking for cancel request [2025-09-20 02:00:02,327][ INFO][PID:2341657] Checking for cancel request [2025-09-20 02:00:07,333][ INFO][PID:2341657] Checking for cancel request [2025-09-20 02:00:12,336][ INFO][PID:2341657] Checking for cancel request [2025-09-20 02:00:17,457][ INFO][PID:2341657] Checking for cancel request [2025-09-20 02:00:22,461][ INFO][PID:2341657] Checking for cancel request [2025-09-20 02:00:27,462][ INFO][PID:2341657] Checking for cancel request [2025-09-20 02:00:32,465][ INFO][PID:2341657] Checking for cancel request [2025-09-20 02:00:37,466][ INFO][PID:2341657] Checking for cancel request [2025-09-20 02:00:42,470][ INFO][PID:2341657] Checking for cancel request [2025-09-20 02:00:47,471][ INFO][PID:2341657] Checking for cancel request [2025-09-20 02:00:52,474][ INFO][PID:2341657] Checking for cancel request [2025-09-20 02:00:57,478][ INFO][PID:2341657] Checking for cancel request [2025-09-20 02:01:02,483][ INFO][PID:2341657] Checking for cancel request [2025-09-20 02:01:07,484][ INFO][PID:2341657] Checking for cancel request [2025-09-20 02:01:12,487][ INFO][PID:2341657] Checking for cancel request [2025-09-20 02:01:17,491][ INFO][PID:2341657] Checking for cancel request [2025-09-20 02:01:22,494][ INFO][PID:2341657] Checking for cancel request [2025-09-20 02:01:27,499][ INFO][PID:2341657] Checking for cancel request [2025-09-20 02:01:32,503][ INFO][PID:2341657] Checking for cancel request [2025-09-20 02:01:37,506][ INFO][PID:2341657] Checking for cancel request [2025-09-20 02:01:42,509][ INFO][PID:2341657] Checking for cancel request [2025-09-20 02:01:47,513][ INFO][PID:2341657] Checking for cancel request [2025-09-20 02:01:52,514][ INFO][PID:2341657] Checking for cancel request [2025-09-20 02:01:57,519][ INFO][PID:2341657] Checking for cancel request [2025-09-20 02:02:02,521][ INFO][PID:2341657] Checking for cancel request [2025-09-20 02:02:07,523][ INFO][PID:2341657] Checking for cancel request [2025-09-20 02:02:12,524][ INFO][PID:2341657] Checking for cancel request [2025-09-20 02:02:17,535][ INFO][PID:2341657] Checking for cancel request [2025-09-20 02:02:22,536][ INFO][PID:2341657] Checking for cancel request [2025-09-20 02:02:27,537][ INFO][PID:2341657] Checking for cancel request [2025-09-20 02:02:32,544][ INFO][PID:2341657] Checking for cancel request [2025-09-20 02:02:37,545][ INFO][PID:2341657] Checking for cancel request [2025-09-20 02:02:42,551][ INFO][PID:2341657] Checking for cancel request [2025-09-20 02:02:47,558][ INFO][PID:2341657] Checking for cancel request [2025-09-20 02:02:52,560][ INFO][PID:2341657] Checking for cancel request [2025-09-20 02:02:57,565][ INFO][PID:2341657] Checking for cancel request [2025-09-20 02:03:02,571][ INFO][PID:2341657] Checking for cancel request [2025-09-20 02:03:07,572][ INFO][PID:2341657] Checking for cancel request [2025-09-20 02:03:12,576][ INFO][PID:2341657] Checking for cancel request [2025-09-20 02:03:17,577][ INFO][PID:2341657] Checking for cancel request [2025-09-20 02:03:22,584][ INFO][PID:2341657] Checking for cancel request [2025-09-20 02:03:27,586][ INFO][PID:2341657] Checking for cancel request [2025-09-20 02:03:32,590][ INFO][PID:2341657] Checking for cancel request [2025-09-20 02:03:37,594][ INFO][PID:2341657] Checking for cancel request [2025-09-20 02:03:42,600][ INFO][PID:2341657] Checking for cancel request [2025-09-20 02:03:47,611][ INFO][PID:2341657] Checking for cancel request [2025-09-20 02:03:52,615][ INFO][PID:2341657] Checking for cancel request [2025-09-20 02:03:57,616][ INFO][PID:2341657] Checking for cancel request [2025-09-20 02:04:02,624][ INFO][PID:2341657] Checking for cancel request [2025-09-20 02:04:07,627][ INFO][PID:2341657] Checking for cancel request [2025-09-20 02:04:12,629][ INFO][PID:2341657] Checking for cancel request [2025-09-20 02:04:17,633][ INFO][PID:2341657] Checking for cancel request [2025-09-20 02:04:22,640][ INFO][PID:2341657] Checking for cancel request [2025-09-20 02:04:27,642][ INFO][PID:2341657] Checking for cancel request [2025-09-20 02:04:32,646][ INFO][PID:2341657] Checking for cancel request [2025-09-20 02:04:37,652][ INFO][PID:2341657] Checking for cancel request [2025-09-20 02:04:42,656][ INFO][PID:2341657] Checking for cancel request [2025-09-20 02:04:47,661][ INFO][PID:2341657] Checking for cancel request [2025-09-20 02:04:52,667][ INFO][PID:2341657] Checking for cancel request [2025-09-20 02:04:57,671][ INFO][PID:2341657] Checking for cancel request [2025-09-20 02:05:02,683][ INFO][PID:2341657] Checking for cancel request [2025-09-20 02:05:07,690][ INFO][PID:2341657] Checking for cancel request [2025-09-20 02:05:12,697][ INFO][PID:2341657] Checking for cancel request [2025-09-20 02:05:17,699][ INFO][PID:2341657] Checking for cancel request [2025-09-20 02:05:22,701][ INFO][PID:2341657] Checking for cancel request [2025-09-20 02:05:27,706][ INFO][PID:2341657] Checking for cancel request [2025-09-20 02:05:32,710][ INFO][PID:2341657] Checking for cancel request [2025-09-20 02:05:37,712][ INFO][PID:2341657] Checking for cancel request [2025-09-20 02:05:42,714][ INFO][PID:2341657] Checking for cancel request [2025-09-20 02:05:47,717][ INFO][PID:2341657] Checking for cancel request [2025-09-20 02:05:52,718][ INFO][PID:2341657] Checking for cancel request [2025-09-20 02:05:57,719][ INFO][PID:2341657] Checking for cancel request [2025-09-20 02:06:02,720][ INFO][PID:2341657] Checking for cancel request [2025-09-20 02:06:07,723][ INFO][PID:2341657] Checking for cancel request [2025-09-20 02:06:12,727][ INFO][PID:2341657] Checking for cancel request [2025-09-20 02:06:15,950][ INFO][PID:2341657] Downloading results from builder [2025-09-20 02:06:15,950][ INFO][PID:2341657] rsyncing of mockbuilder@107.22.14.86:/var/lib/copr-rpmbuild/results/ to /var/lib/copr/public_html/results/lizardbyte/pulls:pr:4277/srpm-builds/09584919 started [2025-09-20 02:06:15,952][ INFO][PID:2341657] Popen command started: /usr/bin/rsync -rltDvH --chmod=D755,F644 -e 'ssh -F /home/copr/.ssh/config' mockbuilder@107.22.14.86:/var/lib/copr-rpmbuild/results/ /var/lib/copr/public_html/results/lizardbyte/pulls:pr:4277/srpm-builds/09584919/ &> /var/lib/copr/public_html/results/lizardbyte/pulls:pr:4277/srpm-builds/09584919/build-09584919.rsync.log [2025-09-20 02:06:27,911][ INFO][PID:2341657] rsyncing finished. [2025-09-20 02:06:27,916][ INFO][PID:2341657] Releasing VM back to pool [2025-09-20 02:06:27,935][ INFO][PID:2341657] Searching for 'success' file in resultdir [2025-09-20 02:06:27,938][ INFO][PID:2341657] Getting build details [2025-09-20 02:06:27,942][ INFO][PID:2341657] Retrieving SRPM info from /var/lib/copr/public_html/results/lizardbyte/pulls:pr:4277/srpm-builds/09584919 [2025-09-20 02:06:27,943][ INFO][PID:2341657] SRPM URL: https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:4277/srpm-builds/09584919/Sunshine-0.0.4277-1.src.rpm [2025-09-20 02:06:27,945][ INFO][PID:2341657] build details: {'srpm_url': 'https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:4277/srpm-builds/09584919/Sunshine-0.0.4277-1.src.rpm', 'pkg_name': 'Sunshine', 'pkg_version': '0.0.4277-1'} [2025-09-20 02:06:27,947][ INFO][PID:2341657] Finished build: id=9584919 failed=False timeout=108000 destdir=/var/lib/copr/public_html/results/lizardbyte/pulls:pr:4277 chroot=srpm-builds [2025-09-20 02:06:27,954][ INFO][PID:2341657] Worker succeeded build, took 437.1028256416321 [2025-09-20 02:06:27,956][ INFO][PID:2341657] 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": 1758333987.9547064, "started_on": 1758333550.8518808, "submitted_on": null, "status": 1, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "9584919", "build_id": 9584919, "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\": \"tmpmctbbapp\", \"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/09584919/Sunshine-0.0.4277-1.src.rpm", "uses_devel_repo": null, "sandbox": "lizardbyte/pulls--4851277e-f1f8-4cc9-a082-ab374a2ba032", "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": "09584919", "built_packages": "", "tags": [ "arch_x86_64" ], "pkg_version": "0.0.4277-1", "id": 9584919, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2025-09-20 02:06:28,102][ INFO][PID:2341657] Sending fedora-messaging bus message in build.end [2025-09-20 02:06:28,145][ INFO][PID:2341657] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:4277/srpm-builds/09584919/builder-live.log by gzip [2025-09-20 02:06:28,149][ INFO][PID:2341657] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:4277/srpm-builds/09584919/builder-live.log' as PID 2404183 [2025-09-20 02:06:28,164][ INFO][PID:2341657] Finished after 0 seconds with exit code 0 (gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:4277/srpm-builds/09584919/builder-live.log) [2025-09-20 02:06:28,166][ INFO][PID:2341657] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:4277/srpm-builds/09584919/backend.log by gzip