[2025-09-20 05:19:03,691][ INFO][PID:3919488] Marking build as starting [2025-09-20 05:19:03,767][ INFO][PID:3919488] Checking for cancel request [2025-09-20 05:19:03,777][ INFO][PID:3919488] VM allocation process starts [2025-09-20 05:19:03,852][ INFO][PID:3919488] Trying to allocate VM: ResallocHost, ticket_id=5176169, requested_tags=['copr_builder', 'arch_x86_64'] [2025-09-20 05:19:08,873][ INFO][PID:3919488] Checking for cancel request [2025-09-20 05:19:13,876][ INFO][PID:3919488] Checking for cancel request [2025-09-20 05:19:18,882][ INFO][PID:3919488] Checking for cancel request [2025-09-20 05:19:23,884][ INFO][PID:3919488] Checking for cancel request [2025-09-20 05:19:28,885][ INFO][PID:3919488] Checking for cancel request [2025-09-20 05:19:33,900][ INFO][PID:3919488] Checking for cancel request [2025-09-20 05:19:38,922][ INFO][PID:3919488] Checking for cancel request [2025-09-20 05:19:43,934][ INFO][PID:3919488] Checking for cancel request [2025-09-20 05:19:48,936][ INFO][PID:3919488] Checking for cancel request [2025-09-20 05:19:53,941][ INFO][PID:3919488] Checking for cancel request [2025-09-20 05:19:58,947][ INFO][PID:3919488] Checking for cancel request [2025-09-20 05:20:03,953][ INFO][PID:3919488] Checking for cancel request [2025-09-20 05:20:08,960][ INFO][PID:3919488] Checking for cancel request [2025-09-20 05:20:12,312][ INFO][PID:3919488] Allocated host ResallocHost, ticket_id=5176169, hostname=54.167.61.109, name=aws_x86_64_normal_prod_06844045_20250920_051647, requested_tags=['copr_builder', 'arch_x86_64'] [2025-09-20 05:20:12,313][ INFO][PID:3919488] Allocating ssh connection to builder [2025-09-20 05:20:12,313][ INFO][PID:3919488] Checking that builder machine is OK [2025-09-20 05:20:12,797][ INFO][PID:3919488] Running remote command: copr-builder-ready srpm-builds [2025-09-20 05:20:13,127][ INFO][PID:3919488] Red Hat subscription not needed for srpm-builds Builder is ready to be used [2025-09-20 05:20:13,128][ INFO][PID:3919488] Filling build.info file with builder info [2025-09-20 05:20:13,128][ INFO][PID:3919488] Checking for cancel request [2025-09-20 05:20:13,134][ INFO][PID:3919488] 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": 1758345613.1340547, "submitted_on": null, "status": 3, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "9585273", "build_id": 9585273, "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\": \"tmp_tmyr131\", \"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--5004b067-2243-4a6e-b804-c6950e5da2ae", "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": "09585273", "built_packages": "", "tags": [ "arch_x86_64" ], "id": 9585273, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2025-09-20 05:20:13,180][ INFO][PID:3919488] Sending fedora-messaging bus message in build.start [2025-09-20 05:20:17,062][ INFO][PID:3919488] Sending fedora-messaging bus message in chroot.start [2025-09-20 05:20:17,141][ INFO][PID:3919488] Starting remote build: copr-rpmbuild --verbose --drop-resultdir --srpm --task-url https://copr.fedorainfracloud.org/backend/get-srpm-build-task/9585273 --detached [2025-09-20 05:20:17,548][ INFO][PID:3919488] The copr-rpmbuild seems started, per: stdout: stderr: Warning: Permanently added '54.167.61.109' (ED25519) to the list of known hosts. [2025-09-20 05:20:17,552][ INFO][PID:3919488] Downloading the builder-live.log file, attempt 1 [2025-09-20 05:20:17,553][ INFO][PID:3919488] Popen command started: ssh -F /home/copr/.ssh/config mockbuilder@54.167.61.109 copr-rpmbuild-log [2025-09-20 05:20:22,618][ INFO][PID:3919488] Periodic builder liveness probe: alive [2025-09-20 05:20:22,619][ INFO][PID:3919488] Checking for cancel request [2025-09-20 05:20:27,676][ INFO][PID:3919488] Checking for cancel request [2025-09-20 05:20:32,683][ INFO][PID:3919488] Checking for cancel request [2025-09-20 05:20:37,690][ INFO][PID:3919488] Checking for cancel request [2025-09-20 05:20:42,693][ INFO][PID:3919488] Checking for cancel request [2025-09-20 05:20:47,694][ INFO][PID:3919488] Checking for cancel request [2025-09-20 05:20:52,699][ INFO][PID:3919488] Checking for cancel request [2025-09-20 05:20:57,705][ INFO][PID:3919488] Checking for cancel request [2025-09-20 05:21:02,722][ INFO][PID:3919488] Checking for cancel request [2025-09-20 05:21:07,733][ INFO][PID:3919488] Checking for cancel request [2025-09-20 05:21:12,736][ INFO][PID:3919488] Checking for cancel request [2025-09-20 05:21:17,744][ INFO][PID:3919488] Checking for cancel request [2025-09-20 05:21:22,753][ INFO][PID:3919488] Checking for cancel request [2025-09-20 05:21:27,759][ INFO][PID:3919488] Checking for cancel request [2025-09-20 05:21:32,768][ INFO][PID:3919488] Checking for cancel request [2025-09-20 05:21:37,779][ INFO][PID:3919488] Checking for cancel request [2025-09-20 05:21:42,781][ INFO][PID:3919488] Checking for cancel request [2025-09-20 05:21:47,788][ INFO][PID:3919488] Checking for cancel request [2025-09-20 05:21:52,792][ INFO][PID:3919488] Checking for cancel request [2025-09-20 05:21:57,797][ INFO][PID:3919488] Checking for cancel request [2025-09-20 05:22:02,801][ INFO][PID:3919488] Checking for cancel request [2025-09-20 05:22:07,817][ INFO][PID:3919488] Checking for cancel request [2025-09-20 05:22:12,819][ INFO][PID:3919488] Checking for cancel request [2025-09-20 05:22:17,825][ INFO][PID:3919488] Checking for cancel request [2025-09-20 05:22:22,827][ INFO][PID:3919488] Checking for cancel request [2025-09-20 05:22:27,831][ INFO][PID:3919488] Checking for cancel request [2025-09-20 05:22:32,835][ INFO][PID:3919488] Checking for cancel request [2025-09-20 05:22:37,836][ INFO][PID:3919488] Checking for cancel request [2025-09-20 05:22:42,839][ INFO][PID:3919488] Checking for cancel request [2025-09-20 05:22:47,858][ INFO][PID:3919488] Checking for cancel request [2025-09-20 05:22:52,864][ INFO][PID:3919488] Checking for cancel request [2025-09-20 05:22:57,872][ INFO][PID:3919488] Checking for cancel request [2025-09-20 05:23:02,876][ INFO][PID:3919488] Checking for cancel request [2025-09-20 05:23:07,882][ INFO][PID:3919488] Checking for cancel request [2025-09-20 05:23:12,895][ INFO][PID:3919488] Checking for cancel request [2025-09-20 05:23:17,904][ INFO][PID:3919488] Checking for cancel request [2025-09-20 05:23:22,909][ INFO][PID:3919488] Checking for cancel request [2025-09-20 05:23:27,911][ INFO][PID:3919488] Checking for cancel request [2025-09-20 05:23:32,912][ INFO][PID:3919488] Checking for cancel request [2025-09-20 05:23:37,925][ INFO][PID:3919488] Checking for cancel request [2025-09-20 05:23:42,931][ INFO][PID:3919488] Checking for cancel request [2025-09-20 05:23:47,933][ INFO][PID:3919488] Checking for cancel request [2025-09-20 05:23:52,939][ INFO][PID:3919488] Checking for cancel request [2025-09-20 05:23:57,948][ INFO][PID:3919488] Checking for cancel request [2025-09-20 05:24:02,954][ INFO][PID:3919488] Checking for cancel request [2025-09-20 05:24:07,959][ INFO][PID:3919488] Checking for cancel request [2025-09-20 05:24:12,963][ INFO][PID:3919488] Checking for cancel request [2025-09-20 05:24:17,964][ INFO][PID:3919488] Checking for cancel request [2025-09-20 05:24:22,976][ INFO][PID:3919488] Checking for cancel request [2025-09-20 05:24:27,978][ INFO][PID:3919488] Checking for cancel request [2025-09-20 05:24:32,987][ INFO][PID:3919488] Checking for cancel request [2025-09-20 05:24:37,996][ INFO][PID:3919488] Checking for cancel request [2025-09-20 05:24:43,008][ INFO][PID:3919488] Checking for cancel request [2025-09-20 05:24:48,020][ INFO][PID:3919488] Checking for cancel request [2025-09-20 05:24:53,026][ INFO][PID:3919488] Checking for cancel request [2025-09-20 05:24:58,030][ INFO][PID:3919488] Checking for cancel request [2025-09-20 05:25:03,035][ INFO][PID:3919488] Checking for cancel request [2025-09-20 05:25:08,052][ INFO][PID:3919488] Checking for cancel request [2025-09-20 05:25:13,063][ INFO][PID:3919488] Checking for cancel request [2025-09-20 05:25:18,067][ INFO][PID:3919488] Checking for cancel request [2025-09-20 05:25:23,102][ INFO][PID:3919488] Checking for cancel request [2025-09-20 05:25:28,104][ INFO][PID:3919488] Checking for cancel request [2025-09-20 05:25:33,115][ INFO][PID:3919488] Checking for cancel request [2025-09-20 05:25:38,121][ INFO][PID:3919488] Checking for cancel request [2025-09-20 05:25:43,136][ INFO][PID:3919488] Checking for cancel request [2025-09-20 05:25:48,138][ INFO][PID:3919488] Checking for cancel request [2025-09-20 05:25:53,141][ INFO][PID:3919488] Checking for cancel request [2025-09-20 05:25:58,151][ INFO][PID:3919488] Checking for cancel request [2025-09-20 05:26:03,155][ INFO][PID:3919488] Checking for cancel request [2025-09-20 05:26:08,163][ INFO][PID:3919488] Checking for cancel request [2025-09-20 05:26:13,165][ INFO][PID:3919488] Checking for cancel request [2025-09-20 05:26:18,173][ INFO][PID:3919488] Checking for cancel request [2025-09-20 05:26:23,177][ INFO][PID:3919488] Checking for cancel request [2025-09-20 05:26:28,181][ INFO][PID:3919488] Checking for cancel request [2025-09-20 05:26:33,183][ INFO][PID:3919488] Checking for cancel request [2025-09-20 05:26:38,225][ INFO][PID:3919488] Checking for cancel request [2025-09-20 05:26:43,228][ INFO][PID:3919488] Checking for cancel request [2025-09-20 05:26:48,239][ INFO][PID:3919488] Checking for cancel request [2025-09-20 05:26:53,246][ INFO][PID:3919488] Checking for cancel request [2025-09-20 05:26:58,248][ INFO][PID:3919488] Checking for cancel request [2025-09-20 05:27:03,255][ INFO][PID:3919488] Checking for cancel request [2025-09-20 05:27:08,264][ INFO][PID:3919488] Checking for cancel request [2025-09-20 05:27:13,283][ INFO][PID:3919488] Checking for cancel request [2025-09-20 05:27:18,286][ INFO][PID:3919488] Checking for cancel request [2025-09-20 05:27:23,292][ INFO][PID:3919488] Checking for cancel request [2025-09-20 05:27:28,294][ INFO][PID:3919488] Checking for cancel request [2025-09-20 05:27:30,834][ INFO][PID:3919488] Downloading results from builder [2025-09-20 05:27:30,835][ INFO][PID:3919488] rsyncing of mockbuilder@54.167.61.109:/var/lib/copr-rpmbuild/results/ to /var/lib/copr/public_html/results/lizardbyte/pulls:pr:4277/srpm-builds/09585273 started [2025-09-20 05:27:30,838][ INFO][PID:3919488] Popen command started: /usr/bin/rsync -rltDvH --chmod=D755,F644 -e 'ssh -F /home/copr/.ssh/config' mockbuilder@54.167.61.109:/var/lib/copr-rpmbuild/results/ /var/lib/copr/public_html/results/lizardbyte/pulls:pr:4277/srpm-builds/09585273/ &> /var/lib/copr/public_html/results/lizardbyte/pulls:pr:4277/srpm-builds/09585273/build-09585273.rsync.log [2025-09-20 05:27:58,506][ INFO][PID:3919488] rsyncing finished. [2025-09-20 05:27:58,506][ INFO][PID:3919488] Releasing VM back to pool [2025-09-20 05:27:58,528][ INFO][PID:3919488] Searching for 'success' file in resultdir [2025-09-20 05:27:58,530][ INFO][PID:3919488] Getting build details [2025-09-20 05:27:58,531][ INFO][PID:3919488] Retrieving SRPM info from /var/lib/copr/public_html/results/lizardbyte/pulls:pr:4277/srpm-builds/09585273 [2025-09-20 05:27:58,533][ INFO][PID:3919488] SRPM URL: https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:4277/srpm-builds/09585273/Sunshine-0.0.4277-1.src.rpm [2025-09-20 05:27:58,534][ INFO][PID:3919488] build details: {'srpm_url': 'https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:4277/srpm-builds/09585273/Sunshine-0.0.4277-1.src.rpm', 'pkg_name': 'Sunshine', 'pkg_version': '0.0.4277-1'} [2025-09-20 05:27:58,535][ INFO][PID:3919488] Finished build: id=9585273 failed=False timeout=108000 destdir=/var/lib/copr/public_html/results/lizardbyte/pulls:pr:4277 chroot=srpm-builds [2025-09-20 05:27:58,539][ INFO][PID:3919488] Worker succeeded build, took 465.4055640697479 [2025-09-20 05:27:58,541][ INFO][PID:3919488] 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": 1758346078.5396187, "started_on": 1758345613.1340547, "submitted_on": null, "status": 1, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "9585273", "build_id": 9585273, "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\": \"tmp_tmyr131\", \"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/09585273/Sunshine-0.0.4277-1.src.rpm", "uses_devel_repo": null, "sandbox": "lizardbyte/pulls--5004b067-2243-4a6e-b804-c6950e5da2ae", "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": "09585273", "built_packages": "", "tags": [ "arch_x86_64" ], "pkg_version": "0.0.4277-1", "id": 9585273, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2025-09-20 05:27:58,602][ INFO][PID:3919488] Sending fedora-messaging bus message in build.end [2025-09-20 05:27:58,667][ INFO][PID:3919488] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:4277/srpm-builds/09585273/builder-live.log by gzip [2025-09-20 05:27:58,669][ INFO][PID:3919488] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:4277/srpm-builds/09585273/builder-live.log' as PID 4009142 [2025-09-20 05:27:58,696][ INFO][PID:3919488] Finished after 0 seconds with exit code 0 (gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:4277/srpm-builds/09585273/builder-live.log) [2025-09-20 05:27:58,700][ INFO][PID:3919488] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:4277/srpm-builds/09585273/backend.log by gzip [2025-09-20 05:27:58,707][ INFO][PID:3919488] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:4277/srpm-builds/09585273/backend.log' as PID 4009143