[2025-09-20 04:13:30,088][ INFO][PID:3364320] Marking build as starting [2025-09-20 04:13:30,130][ INFO][PID:3364320] Checking for cancel request [2025-09-20 04:13:30,132][ INFO][PID:3364320] VM allocation process starts [2025-09-20 04:13:30,167][ INFO][PID:3364320] Trying to allocate VM: ResallocHost, ticket_id=5173043, requested_tags=['copr_builder', 'arch_x86_64'] [2025-09-20 04:13:35,180][ INFO][PID:3364320] Checking for cancel request [2025-09-20 04:13:40,182][ INFO][PID:3364320] Checking for cancel request [2025-09-20 04:13:45,183][ INFO][PID:3364320] Checking for cancel request [2025-09-20 04:13:50,184][ INFO][PID:3364320] Checking for cancel request [2025-09-20 04:13:55,192][ INFO][PID:3364320] Checking for cancel request [2025-09-20 04:14:00,194][ INFO][PID:3364320] Checking for cancel request [2025-09-20 04:14:05,199][ INFO][PID:3364320] Checking for cancel request [2025-09-20 04:14:10,202][ INFO][PID:3364320] Checking for cancel request [2025-09-20 04:14:15,204][ INFO][PID:3364320] Checking for cancel request [2025-09-20 04:14:20,208][ INFO][PID:3364320] Checking for cancel request [2025-09-20 04:14:25,211][ INFO][PID:3364320] Checking for cancel request [2025-09-20 04:14:30,213][ INFO][PID:3364320] Checking for cancel request [2025-09-20 04:14:35,221][ INFO][PID:3364320] Checking for cancel request [2025-09-20 04:14:40,237][ INFO][PID:3364320] Checking for cancel request [2025-09-20 04:14:45,241][ INFO][PID:3364320] Checking for cancel request [2025-09-20 04:14:50,248][ INFO][PID:3364320] Checking for cancel request [2025-09-20 04:14:55,249][ INFO][PID:3364320] Checking for cancel request [2025-09-20 04:14:58,455][ INFO][PID:3364320] Allocated host ResallocHost, ticket_id=5173043, hostname=204.236.206.140, name=aws_x86_64_normalreserved_prod_06843294_20250920_041252, requested_tags=['copr_builder', 'arch_x86_64'] [2025-09-20 04:14:58,459][ INFO][PID:3364320] Allocating ssh connection to builder [2025-09-20 04:14:58,461][ INFO][PID:3364320] Checking that builder machine is OK [2025-09-20 04:14:58,855][ INFO][PID:3364320] Running remote command: copr-builder-ready srpm-builds [2025-09-20 04:14:59,121][ INFO][PID:3364320] Red Hat subscription not needed for srpm-builds Builder is ready to be used [2025-09-20 04:14:59,122][ INFO][PID:3364320] Filling build.info file with builder info [2025-09-20 04:14:59,123][ INFO][PID:3364320] Checking for cancel request [2025-09-20 04:14:59,126][ INFO][PID:3364320] 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": 1758341699.1258757, "submitted_on": null, "status": 3, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "9585072", "build_id": 9585072, "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\": \"tmpmp9j0lbw\", \"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--38f09ae1-100c-403a-ace2-5d69d000343d", "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": "09585072", "built_packages": "", "tags": [ "arch_x86_64" ], "id": 9585072, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2025-09-20 04:14:59,175][ INFO][PID:3364320] Sending fedora-messaging bus message in build.start [2025-09-20 04:15:01,961][ INFO][PID:3364320] Sending fedora-messaging bus message in chroot.start [2025-09-20 04:15:02,018][ INFO][PID:3364320] Starting remote build: copr-rpmbuild --verbose --drop-resultdir --srpm --task-url https://copr.fedorainfracloud.org/backend/get-srpm-build-task/9585072 --detached [2025-09-20 04:15:02,445][ INFO][PID:3364320] The copr-rpmbuild seems started, per: stdout: stderr: Warning: Permanently added '204.236.206.140' (ED25519) to the list of known hosts. [2025-09-20 04:15:02,447][ INFO][PID:3364320] Downloading the builder-live.log file, attempt 1 [2025-09-20 04:15:02,456][ INFO][PID:3364320] Popen command started: ssh -F /home/copr/.ssh/config mockbuilder@204.236.206.140 copr-rpmbuild-log [2025-09-20 04:15:07,490][ INFO][PID:3364320] Periodic builder liveness probe: alive [2025-09-20 04:15:07,495][ INFO][PID:3364320] Checking for cancel request [2025-09-20 04:15:12,504][ INFO][PID:3364320] Checking for cancel request [2025-09-20 04:15:17,506][ INFO][PID:3364320] Checking for cancel request [2025-09-20 04:15:22,509][ INFO][PID:3364320] Checking for cancel request [2025-09-20 04:15:27,514][ INFO][PID:3364320] Checking for cancel request [2025-09-20 04:15:32,522][ INFO][PID:3364320] Checking for cancel request [2025-09-20 04:15:37,525][ INFO][PID:3364320] Checking for cancel request [2025-09-20 04:15:42,527][ INFO][PID:3364320] Checking for cancel request [2025-09-20 04:15:47,528][ INFO][PID:3364320] Checking for cancel request [2025-09-20 04:15:52,535][ INFO][PID:3364320] Checking for cancel request [2025-09-20 04:15:57,544][ INFO][PID:3364320] Checking for cancel request [2025-09-20 04:16:02,548][ INFO][PID:3364320] Checking for cancel request [2025-09-20 04:16:07,551][ INFO][PID:3364320] Checking for cancel request [2025-09-20 04:16:12,555][ INFO][PID:3364320] Checking for cancel request [2025-09-20 04:16:17,564][ INFO][PID:3364320] Checking for cancel request [2025-09-20 04:16:22,577][ INFO][PID:3364320] Checking for cancel request [2025-09-20 04:16:27,587][ INFO][PID:3364320] Checking for cancel request [2025-09-20 04:16:32,591][ INFO][PID:3364320] Checking for cancel request [2025-09-20 04:16:37,593][ INFO][PID:3364320] Checking for cancel request [2025-09-20 04:16:42,595][ INFO][PID:3364320] Checking for cancel request [2025-09-20 04:16:47,598][ INFO][PID:3364320] Checking for cancel request [2025-09-20 04:16:52,603][ INFO][PID:3364320] Checking for cancel request [2025-09-20 04:16:57,606][ INFO][PID:3364320] Checking for cancel request [2025-09-20 04:17:02,608][ INFO][PID:3364320] Checking for cancel request [2025-09-20 04:17:07,614][ INFO][PID:3364320] Checking for cancel request [2025-09-20 04:17:12,623][ INFO][PID:3364320] Checking for cancel request [2025-09-20 04:17:17,625][ INFO][PID:3364320] Checking for cancel request [2025-09-20 04:17:22,627][ INFO][PID:3364320] Checking for cancel request [2025-09-20 04:17:27,630][ INFO][PID:3364320] Checking for cancel request [2025-09-20 04:17:32,633][ INFO][PID:3364320] Checking for cancel request [2025-09-20 04:17:37,639][ INFO][PID:3364320] Checking for cancel request [2025-09-20 04:17:42,640][ INFO][PID:3364320] Checking for cancel request [2025-09-20 04:17:47,643][ INFO][PID:3364320] Checking for cancel request [2025-09-20 04:17:52,655][ INFO][PID:3364320] Checking for cancel request [2025-09-20 04:17:57,666][ INFO][PID:3364320] Checking for cancel request [2025-09-20 04:18:02,675][ INFO][PID:3364320] Checking for cancel request [2025-09-20 04:18:07,678][ INFO][PID:3364320] Checking for cancel request [2025-09-20 04:18:12,680][ INFO][PID:3364320] Checking for cancel request [2025-09-20 04:18:17,686][ INFO][PID:3364320] Checking for cancel request [2025-09-20 04:18:22,692][ INFO][PID:3364320] Checking for cancel request [2025-09-20 04:18:27,698][ INFO][PID:3364320] Checking for cancel request [2025-09-20 04:18:32,705][ INFO][PID:3364320] Checking for cancel request [2025-09-20 04:18:37,706][ INFO][PID:3364320] Checking for cancel request [2025-09-20 04:18:42,708][ INFO][PID:3364320] Checking for cancel request [2025-09-20 04:18:47,715][ INFO][PID:3364320] Checking for cancel request [2025-09-20 04:18:52,716][ INFO][PID:3364320] Checking for cancel request [2025-09-20 04:18:57,718][ INFO][PID:3364320] Checking for cancel request [2025-09-20 04:19:02,723][ INFO][PID:3364320] Checking for cancel request [2025-09-20 04:19:07,727][ INFO][PID:3364320] Checking for cancel request [2025-09-20 04:19:12,729][ INFO][PID:3364320] Checking for cancel request [2025-09-20 04:19:17,730][ INFO][PID:3364320] Checking for cancel request [2025-09-20 04:19:22,734][ INFO][PID:3364320] Checking for cancel request [2025-09-20 04:19:27,748][ INFO][PID:3364320] Checking for cancel request [2025-09-20 04:19:32,752][ INFO][PID:3364320] Checking for cancel request [2025-09-20 04:19:37,762][ INFO][PID:3364320] Checking for cancel request [2025-09-20 04:19:42,764][ INFO][PID:3364320] Checking for cancel request [2025-09-20 04:19:47,769][ INFO][PID:3364320] Checking for cancel request [2025-09-20 04:19:52,770][ INFO][PID:3364320] Checking for cancel request [2025-09-20 04:19:58,184][ INFO][PID:3364320] Checking for cancel request [2025-09-20 04:20:03,191][ INFO][PID:3364320] Checking for cancel request [2025-09-20 04:20:08,193][ INFO][PID:3364320] Checking for cancel request [2025-09-20 04:20:13,194][ INFO][PID:3364320] Checking for cancel request [2025-09-20 04:20:18,198][ INFO][PID:3364320] Checking for cancel request [2025-09-20 04:20:23,206][ INFO][PID:3364320] Checking for cancel request [2025-09-20 04:20:28,214][ INFO][PID:3364320] Checking for cancel request [2025-09-20 04:20:33,221][ INFO][PID:3364320] Checking for cancel request [2025-09-20 04:20:38,226][ INFO][PID:3364320] Checking for cancel request [2025-09-20 04:20:43,231][ INFO][PID:3364320] Checking for cancel request [2025-09-20 04:20:48,234][ INFO][PID:3364320] Checking for cancel request [2025-09-20 04:20:53,245][ INFO][PID:3364320] Checking for cancel request [2025-09-20 04:20:58,247][ INFO][PID:3364320] Checking for cancel request [2025-09-20 04:21:03,252][ INFO][PID:3364320] Checking for cancel request [2025-09-20 04:21:08,253][ INFO][PID:3364320] Checking for cancel request [2025-09-20 04:21:13,256][ INFO][PID:3364320] Checking for cancel request [2025-09-20 04:21:18,258][ INFO][PID:3364320] Checking for cancel request [2025-09-20 04:21:23,262][ INFO][PID:3364320] Checking for cancel request [2025-09-20 04:21:28,273][ INFO][PID:3364320] Checking for cancel request [2025-09-20 04:21:33,274][ INFO][PID:3364320] Checking for cancel request [2025-09-20 04:21:38,277][ INFO][PID:3364320] Checking for cancel request [2025-09-20 04:21:43,282][ INFO][PID:3364320] Checking for cancel request [2025-09-20 04:21:48,284][ INFO][PID:3364320] Checking for cancel request [2025-09-20 04:21:53,286][ INFO][PID:3364320] Checking for cancel request [2025-09-20 04:21:58,292][ INFO][PID:3364320] Checking for cancel request [2025-09-20 04:22:03,301][ INFO][PID:3364320] Checking for cancel request [2025-09-20 04:22:08,303][ INFO][PID:3364320] Checking for cancel request [2025-09-20 04:22:13,311][ INFO][PID:3364320] Checking for cancel request [2025-09-20 04:22:16,485][ INFO][PID:3364320] Downloading results from builder [2025-09-20 04:22:16,487][ INFO][PID:3364320] rsyncing of mockbuilder@204.236.206.140:/var/lib/copr-rpmbuild/results/ to /var/lib/copr/public_html/results/lizardbyte/pulls:pr:4277/srpm-builds/09585072 started [2025-09-20 04:22:16,488][ INFO][PID:3364320] Popen command started: /usr/bin/rsync -rltDvH --chmod=D755,F644 -e 'ssh -F /home/copr/.ssh/config' mockbuilder@204.236.206.140:/var/lib/copr-rpmbuild/results/ /var/lib/copr/public_html/results/lizardbyte/pulls:pr:4277/srpm-builds/09585072/ &> /var/lib/copr/public_html/results/lizardbyte/pulls:pr:4277/srpm-builds/09585072/build-09585072.rsync.log [2025-09-20 04:22:37,676][ INFO][PID:3364320] rsyncing finished. [2025-09-20 04:22:37,677][ INFO][PID:3364320] Releasing VM back to pool [2025-09-20 04:22:37,716][ INFO][PID:3364320] Searching for 'success' file in resultdir [2025-09-20 04:22:37,720][ INFO][PID:3364320] Getting build details [2025-09-20 04:22:37,721][ INFO][PID:3364320] Retrieving SRPM info from /var/lib/copr/public_html/results/lizardbyte/pulls:pr:4277/srpm-builds/09585072 [2025-09-20 04:22:37,724][ INFO][PID:3364320] SRPM URL: https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:4277/srpm-builds/09585072/Sunshine-0.0.4277-1.src.rpm [2025-09-20 04:22:37,729][ INFO][PID:3364320] build details: {'srpm_url': 'https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:4277/srpm-builds/09585072/Sunshine-0.0.4277-1.src.rpm', 'pkg_name': 'Sunshine', 'pkg_version': '0.0.4277-1'} [2025-09-20 04:22:37,731][ INFO][PID:3364320] Finished build: id=9585072 failed=False timeout=108000 destdir=/var/lib/copr/public_html/results/lizardbyte/pulls:pr:4277 chroot=srpm-builds [2025-09-20 04:22:37,740][ INFO][PID:3364320] Worker succeeded build, took 458.61435556411743 [2025-09-20 04:22:37,741][ INFO][PID:3364320] 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": 1758342157.7402313, "started_on": 1758341699.1258757, "submitted_on": null, "status": 1, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "9585072", "build_id": 9585072, "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\": \"tmpmp9j0lbw\", \"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/09585072/Sunshine-0.0.4277-1.src.rpm", "uses_devel_repo": null, "sandbox": "lizardbyte/pulls--38f09ae1-100c-403a-ace2-5d69d000343d", "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": "09585072", "built_packages": "", "tags": [ "arch_x86_64" ], "pkg_version": "0.0.4277-1", "id": 9585072, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2025-09-20 04:22:37,802][ INFO][PID:3364320] Sending fedora-messaging bus message in build.end [2025-09-20 04:22:37,834][ INFO][PID:3364320] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:4277/srpm-builds/09585072/builder-live.log by gzip [2025-09-20 04:22:37,837][ INFO][PID:3364320] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:4277/srpm-builds/09585072/builder-live.log' as PID 3442244 [2025-09-20 04:22:37,859][ INFO][PID:3364320] Finished after 0 seconds with exit code 0 (gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:4277/srpm-builds/09585072/builder-live.log) [2025-09-20 04:22:37,860][ INFO][PID:3364320] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:4277/srpm-builds/09585072/backend.log by gzip [2025-09-20 04:22:37,864][ INFO][PID:3364320] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:4277/srpm-builds/09585072/backend.log' as PID 3442252