[2025-10-07 14:24:07,738][ INFO][PID:1233047] Marking build as starting [2025-10-07 14:24:07,770][ INFO][PID:1233047] Checking for cancel request [2025-10-07 14:24:07,771][ INFO][PID:1233047] VM allocation process starts [2025-10-07 14:24:07,784][ INFO][PID:1233047] Trying to allocate VM: ResallocHost, ticket_id=5519641, requested_tags=['copr_builder', 'arch_x86_64'] [2025-10-07 14:24:12,786][ INFO][PID:1233047] Checking for cancel request [2025-10-07 14:24:17,787][ INFO][PID:1233047] Checking for cancel request [2025-10-07 14:24:22,788][ INFO][PID:1233047] Checking for cancel request [2025-10-07 14:24:27,789][ INFO][PID:1233047] Checking for cancel request [2025-10-07 14:24:32,790][ INFO][PID:1233047] Checking for cancel request [2025-10-07 14:24:37,792][ INFO][PID:1233047] Checking for cancel request [2025-10-07 14:24:42,793][ INFO][PID:1233047] Checking for cancel request [2025-10-07 14:24:47,794][ INFO][PID:1233047] Checking for cancel request [2025-10-07 14:24:52,795][ INFO][PID:1233047] Checking for cancel request [2025-10-07 14:24:57,797][ INFO][PID:1233047] Checking for cancel request [2025-10-07 14:25:02,798][ INFO][PID:1233047] Checking for cancel request [2025-10-07 14:25:07,800][ INFO][PID:1233047] Checking for cancel request [2025-10-07 14:25:12,801][ INFO][PID:1233047] Checking for cancel request [2025-10-07 14:25:15,885][ INFO][PID:1233047] Allocated host ResallocHost, ticket_id=5519641, hostname=54.242.87.93, name=aws_x86_64_normalreserved_prod_07261978_20251007_142342, requested_tags=['copr_builder', 'arch_x86_64'] [2025-10-07 14:25:15,886][ INFO][PID:1233047] Allocating ssh connection to builder [2025-10-07 14:25:15,886][ INFO][PID:1233047] Checking that builder machine is OK [2025-10-07 14:25:16,209][ INFO][PID:1233047] Running remote command: copr-builder-ready srpm-builds [2025-10-07 14:25:16,412][ INFO][PID:1233047] Red Hat subscription not needed for srpm-builds Builder is ready to be used [2025-10-07 14:25:16,412][ INFO][PID:1233047] Filling build.info file with builder info [2025-10-07 14:25:16,413][ INFO][PID:1233047] Checking for cancel request [2025-10-07 14:25:16,414][ INFO][PID:1233047] 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:4321", "submitter": null, "ended_on": null, "started_on": 1759847116.414259, "submitted_on": null, "status": 3, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "9661167", "build_id": 9661167, "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\": \"tmpwi2liunf\", \"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--9144f555-d9e3-4e77-a8f1-c1bd22ad8427", "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:4321", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:4321", "result_dir": "09661167", "built_packages": "", "tags": [ "arch_x86_64" ], "id": 9661167, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2025-10-07 14:25:16,433][ INFO][PID:1233047] Sending fedora-messaging bus message in build.start [2025-10-07 14:25:17,152][ INFO][PID:1233047] Sending fedora-messaging bus message in chroot.start [2025-10-07 14:25:17,177][ INFO][PID:1233047] Starting remote build: copr-rpmbuild --verbose --drop-resultdir --srpm --task-url https://copr.fedorainfracloud.org/backend/get-srpm-build-task/9661167 --detached [2025-10-07 14:25:17,505][ INFO][PID:1233047] The copr-rpmbuild seems started, per: stdout: stderr: Warning: Permanently added '54.242.87.93' (ED25519) to the list of known hosts. [2025-10-07 14:25:17,506][ INFO][PID:1233047] Downloading the builder-live.log file, attempt 1 [2025-10-07 14:25:17,509][ INFO][PID:1233047] Popen command started: ssh -F /home/copr/.ssh/config mockbuilder@54.242.87.93 copr-rpmbuild-log [2025-10-07 14:25:22,514][ INFO][PID:1233047] Periodic builder liveness probe: alive [2025-10-07 14:25:22,515][ INFO][PID:1233047] Checking for cancel request [2025-10-07 14:25:27,516][ INFO][PID:1233047] Checking for cancel request [2025-10-07 14:25:32,517][ INFO][PID:1233047] Checking for cancel request [2025-10-07 14:25:37,518][ INFO][PID:1233047] Checking for cancel request [2025-10-07 14:25:42,519][ INFO][PID:1233047] Checking for cancel request [2025-10-07 14:25:47,521][ INFO][PID:1233047] Checking for cancel request [2025-10-07 14:25:52,522][ INFO][PID:1233047] Checking for cancel request [2025-10-07 14:25:57,523][ INFO][PID:1233047] Checking for cancel request [2025-10-07 14:26:02,524][ INFO][PID:1233047] Checking for cancel request [2025-10-07 14:26:07,526][ INFO][PID:1233047] Checking for cancel request [2025-10-07 14:26:12,529][ INFO][PID:1233047] Checking for cancel request [2025-10-07 14:26:17,530][ INFO][PID:1233047] Checking for cancel request [2025-10-07 14:26:22,531][ INFO][PID:1233047] Checking for cancel request [2025-10-07 14:26:27,532][ INFO][PID:1233047] Checking for cancel request [2025-10-07 14:26:32,533][ INFO][PID:1233047] Checking for cancel request [2025-10-07 14:26:37,534][ INFO][PID:1233047] Checking for cancel request [2025-10-07 14:26:42,540][ INFO][PID:1233047] Checking for cancel request [2025-10-07 14:26:47,547][ INFO][PID:1233047] Checking for cancel request [2025-10-07 14:26:52,549][ INFO][PID:1233047] Checking for cancel request [2025-10-07 14:26:57,550][ INFO][PID:1233047] Checking for cancel request [2025-10-07 14:27:02,553][ INFO][PID:1233047] Checking for cancel request [2025-10-07 14:27:07,557][ INFO][PID:1233047] Checking for cancel request [2025-10-07 14:27:12,559][ INFO][PID:1233047] Checking for cancel request [2025-10-07 14:27:17,562][ INFO][PID:1233047] Checking for cancel request [2025-10-07 14:27:22,563][ INFO][PID:1233047] Checking for cancel request [2025-10-07 14:27:27,565][ INFO][PID:1233047] Checking for cancel request [2025-10-07 14:27:32,566][ INFO][PID:1233047] Checking for cancel request [2025-10-07 14:27:37,569][ INFO][PID:1233047] Checking for cancel request [2025-10-07 14:27:42,571][ INFO][PID:1233047] Checking for cancel request [2025-10-07 14:27:47,575][ INFO][PID:1233047] Checking for cancel request [2025-10-07 14:27:52,577][ INFO][PID:1233047] Checking for cancel request [2025-10-07 14:27:57,580][ INFO][PID:1233047] Checking for cancel request [2025-10-07 14:28:02,584][ INFO][PID:1233047] Checking for cancel request [2025-10-07 14:28:07,586][ INFO][PID:1233047] Checking for cancel request [2025-10-07 14:28:12,588][ INFO][PID:1233047] Checking for cancel request [2025-10-07 14:28:17,590][ INFO][PID:1233047] Checking for cancel request [2025-10-07 14:28:22,598][ INFO][PID:1233047] Checking for cancel request [2025-10-07 14:28:27,599][ INFO][PID:1233047] Checking for cancel request [2025-10-07 14:28:32,600][ INFO][PID:1233047] Checking for cancel request [2025-10-07 14:28:37,601][ INFO][PID:1233047] Checking for cancel request [2025-10-07 14:28:42,602][ INFO][PID:1233047] Checking for cancel request [2025-10-07 14:28:47,603][ INFO][PID:1233047] Checking for cancel request [2025-10-07 14:28:52,605][ INFO][PID:1233047] Checking for cancel request [2025-10-07 14:28:57,606][ INFO][PID:1233047] Checking for cancel request [2025-10-07 14:29:02,607][ INFO][PID:1233047] Checking for cancel request [2025-10-07 14:29:07,608][ INFO][PID:1233047] Checking for cancel request [2025-10-07 14:29:12,610][ INFO][PID:1233047] Checking for cancel request [2025-10-07 14:29:17,614][ INFO][PID:1233047] Checking for cancel request [2025-10-07 14:29:22,617][ INFO][PID:1233047] Checking for cancel request [2025-10-07 14:29:27,618][ INFO][PID:1233047] Checking for cancel request [2025-10-07 14:29:32,619][ INFO][PID:1233047] Checking for cancel request [2025-10-07 14:29:37,622][ INFO][PID:1233047] Checking for cancel request [2025-10-07 14:29:42,624][ INFO][PID:1233047] Checking for cancel request [2025-10-07 14:29:47,626][ INFO][PID:1233047] Checking for cancel request [2025-10-07 14:29:52,626][ INFO][PID:1233047] Checking for cancel request [2025-10-07 14:29:57,627][ INFO][PID:1233047] Checking for cancel request [2025-10-07 14:30:02,629][ INFO][PID:1233047] Checking for cancel request [2025-10-07 14:30:07,630][ INFO][PID:1233047] Checking for cancel request [2025-10-07 14:30:12,631][ INFO][PID:1233047] Checking for cancel request [2025-10-07 14:30:17,632][ INFO][PID:1233047] Checking for cancel request [2025-10-07 14:30:22,637][ INFO][PID:1233047] Checking for cancel request [2025-10-07 14:30:27,638][ INFO][PID:1233047] Checking for cancel request [2025-10-07 14:30:32,640][ INFO][PID:1233047] Checking for cancel request [2025-10-07 14:30:37,641][ INFO][PID:1233047] Checking for cancel request [2025-10-07 14:30:42,642][ INFO][PID:1233047] Checking for cancel request [2025-10-07 14:30:47,643][ INFO][PID:1233047] Checking for cancel request [2025-10-07 14:30:52,646][ INFO][PID:1233047] Checking for cancel request [2025-10-07 14:30:57,647][ INFO][PID:1233047] Checking for cancel request [2025-10-07 14:31:02,648][ INFO][PID:1233047] Checking for cancel request [2025-10-07 14:31:07,649][ INFO][PID:1233047] Checking for cancel request [2025-10-07 14:31:12,650][ INFO][PID:1233047] Checking for cancel request [2025-10-07 14:31:17,651][ INFO][PID:1233047] Checking for cancel request [2025-10-07 14:31:22,653][ INFO][PID:1233047] Checking for cancel request [2025-10-07 14:31:27,656][ INFO][PID:1233047] Checking for cancel request [2025-10-07 14:31:32,658][ INFO][PID:1233047] Checking for cancel request [2025-10-07 14:31:37,659][ INFO][PID:1233047] Checking for cancel request [2025-10-07 14:31:42,661][ INFO][PID:1233047] Checking for cancel request [2025-10-07 14:31:47,662][ INFO][PID:1233047] Checking for cancel request [2025-10-07 14:31:52,663][ INFO][PID:1233047] Checking for cancel request [2025-10-07 14:31:57,664][ INFO][PID:1233047] Checking for cancel request [2025-10-07 14:32:02,665][ INFO][PID:1233047] Checking for cancel request [2025-10-07 14:32:07,666][ INFO][PID:1233047] Checking for cancel request [2025-10-07 14:32:12,667][ INFO][PID:1233047] Checking for cancel request [2025-10-07 14:32:17,668][ INFO][PID:1233047] Checking for cancel request [2025-10-07 14:32:22,670][ INFO][PID:1233047] Checking for cancel request [2025-10-07 14:32:26,978][ INFO][PID:1233047] Downloading results from builder [2025-10-07 14:32:26,979][ INFO][PID:1233047] rsyncing of mockbuilder@54.242.87.93:/var/lib/copr-rpmbuild/results/ to /var/lib/copr/public_html/results/lizardbyte/pulls:pr:4321/srpm-builds/09661167 started [2025-10-07 14:32:26,980][ INFO][PID:1233047] Popen command started: /usr/bin/rsync -rltDvH --chmod=D755,F644 -e 'ssh -F /home/copr/.ssh/config' mockbuilder@54.242.87.93:/var/lib/copr-rpmbuild/results/ /var/lib/copr/public_html/results/lizardbyte/pulls:pr:4321/srpm-builds/09661167/ &> /var/lib/copr/public_html/results/lizardbyte/pulls:pr:4321/srpm-builds/09661167/build-09661167.rsync.log [2025-10-07 14:32:35,509][ INFO][PID:1233047] rsyncing finished. [2025-10-07 14:32:35,510][ INFO][PID:1233047] Releasing VM back to pool [2025-10-07 14:32:35,523][ INFO][PID:1233047] Searching for 'success' file in resultdir [2025-10-07 14:32:35,524][ INFO][PID:1233047] Getting build details [2025-10-07 14:32:35,525][ INFO][PID:1233047] Retrieving SRPM info from /var/lib/copr/public_html/results/lizardbyte/pulls:pr:4321/srpm-builds/09661167 [2025-10-07 14:32:35,526][ INFO][PID:1233047] SRPM URL: https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:4321/srpm-builds/09661167/Sunshine-0.0.4321-1.src.rpm [2025-10-07 14:32:35,527][ INFO][PID:1233047] build details: {'srpm_url': 'https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:4321/srpm-builds/09661167/Sunshine-0.0.4321-1.src.rpm', 'pkg_name': 'Sunshine', 'pkg_version': '0.0.4321-1'} [2025-10-07 14:32:35,528][ INFO][PID:1233047] Finished build: id=9661167 failed=False timeout=108000 destdir=/var/lib/copr/public_html/results/lizardbyte/pulls:pr:4321 chroot=srpm-builds [2025-10-07 14:32:35,530][ INFO][PID:1233047] Worker succeeded build, took 439.11648535728455 [2025-10-07 14:32:35,531][ INFO][PID:1233047] 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:4321", "submitter": null, "ended_on": 1759847555.5307443, "started_on": 1759847116.414259, "submitted_on": null, "status": 1, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "9661167", "build_id": 9661167, "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\": \"tmpwi2liunf\", \"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:4321/srpm-builds/09661167/Sunshine-0.0.4321-1.src.rpm", "uses_devel_repo": null, "sandbox": "lizardbyte/pulls--9144f555-d9e3-4e77-a8f1-c1bd22ad8427", "results": { "name": "Sunshine", "epoch": null, "version": "0.0.4321", "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:4321", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:4321", "result_dir": "09661167", "built_packages": "", "tags": [ "arch_x86_64" ], "pkg_version": "0.0.4321-1", "id": 9661167, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2025-10-07 14:32:35,568][ INFO][PID:1233047] Sending fedora-messaging bus message in build.end [2025-10-07 14:32:35,595][ INFO][PID:1233047] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:4321/srpm-builds/09661167/builder-live.log by gzip [2025-10-07 14:32:35,596][ INFO][PID:1233047] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:4321/srpm-builds/09661167/builder-live.log' as PID 1316506 [2025-10-07 14:32:35,603][ INFO][PID:1233047] Finished after 0 seconds with exit code 0 (gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:4321/srpm-builds/09661167/builder-live.log) [2025-10-07 14:32:35,606][ INFO][PID:1233047] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:4321/srpm-builds/09661167/backend.log by gzip [2025-10-07 14:32:35,607][ INFO][PID:1233047] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:4321/srpm-builds/09661167/backend.log' as PID 1316508