[2025-12-09 22:32:42,608][ INFO][PID:1381705] Marking build as starting [2025-12-09 22:32:42,641][ INFO][PID:1381705] Checking for cancel request [2025-12-09 22:32:42,644][ INFO][PID:1381705] VM allocation process starts [2025-12-09 22:32:42,657][ INFO][PID:1381705] Trying to allocate VM: ResallocHost, ticket_id=247818, requested_tags=['copr_builder', 'arch_x86_64'] [2025-12-09 22:32:47,659][ INFO][PID:1381705] Checking for cancel request [2025-12-09 22:32:52,660][ INFO][PID:1381705] Checking for cancel request [2025-12-09 22:32:57,661][ INFO][PID:1381705] Checking for cancel request [2025-12-09 22:33:02,662][ INFO][PID:1381705] Checking for cancel request [2025-12-09 22:33:07,666][ INFO][PID:1381705] Checking for cancel request [2025-12-09 22:33:12,667][ INFO][PID:1381705] Checking for cancel request [2025-12-09 22:33:17,668][ INFO][PID:1381705] Checking for cancel request [2025-12-09 22:33:22,669][ INFO][PID:1381705] Checking for cancel request [2025-12-09 22:33:27,670][ INFO][PID:1381705] Checking for cancel request [2025-12-09 22:33:32,671][ INFO][PID:1381705] Checking for cancel request [2025-12-09 22:33:37,672][ INFO][PID:1381705] Checking for cancel request [2025-12-09 22:33:42,673][ INFO][PID:1381705] Checking for cancel request [2025-12-09 22:33:47,674][ INFO][PID:1381705] Checking for cancel request [2025-12-09 22:33:52,675][ INFO][PID:1381705] Checking for cancel request [2025-12-09 22:33:57,677][ INFO][PID:1381705] Checking for cancel request [2025-12-09 22:34:02,678][ INFO][PID:1381705] Checking for cancel request [2025-12-09 22:34:07,679][ INFO][PID:1381705] Checking for cancel request [2025-12-09 22:34:12,683][ INFO][PID:1381705] Checking for cancel request [2025-12-09 22:34:17,684][ INFO][PID:1381705] Checking for cancel request [2025-12-09 22:34:22,685][ INFO][PID:1381705] Checking for cancel request [2025-12-09 22:34:27,686][ INFO][PID:1381705] Checking for cancel request [2025-12-09 22:34:32,688][ INFO][PID:1381705] Checking for cancel request [2025-12-09 22:34:37,690][ INFO][PID:1381705] Checking for cancel request [2025-12-09 22:34:42,692][ INFO][PID:1381705] Checking for cancel request [2025-12-09 22:34:47,696][ INFO][PID:1381705] Checking for cancel request [2025-12-09 22:34:52,697][ INFO][PID:1381705] Checking for cancel request [2025-12-09 22:34:57,705][ INFO][PID:1381705] Checking for cancel request [2025-12-09 22:35:00,757][ INFO][PID:1381705] Allocated host ResallocHost, ticket_id=247818, hostname=18.234.244.87, name=aws_x86_64_normal_prod_00290949_20251209_223318, requested_tags=['copr_builder', 'arch_x86_64'] [2025-12-09 22:35:00,758][ INFO][PID:1381705] Allocating ssh connection to builder [2025-12-09 22:35:00,759][ INFO][PID:1381705] Checking that builder machine is OK [2025-12-09 22:35:01,136][ INFO][PID:1381705] Running remote command: copr-builder-ready srpm-builds [2025-12-09 22:35:01,346][ INFO][PID:1381705] Red Hat subscription not needed for srpm-builds Builder is ready to be used [2025-12-09 22:35:01,347][ INFO][PID:1381705] Filling build.info file with builder info [2025-12-09 22:35:01,348][ INFO][PID:1381705] Checking for cancel request [2025-12-09 22:35:01,349][ INFO][PID:1381705] 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:4491", "submitter": null, "ended_on": null, "started_on": 1765319701.349634, "submitted_on": null, "status": 3, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "9892503", "build_id": 9892503, "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 [[ -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 [[ -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/copr\\\"\\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\\\" >&2\\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\": \"tmpcti1m1si\", \"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--caa3b006-fe28-4e5d-99e7-2a6669d16494", "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:4491", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:4491", "result_dir": "09892503", "built_packages": "", "tags": [ "arch_x86_64" ], "id": 9892503, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2025-12-09 22:35:01,388][ INFO][PID:1381705] Sending fedora-messaging bus message in build.start [2025-12-09 22:35:02,109][ INFO][PID:1381705] Sending fedora-messaging bus message in chroot.start [2025-12-09 22:35:02,154][ INFO][PID:1381705] Starting remote build: copr-rpmbuild --verbose --drop-resultdir --srpm --task-url https://copr.fedorainfracloud.org/backend/get-srpm-build-task/9892503 --detached [2025-12-09 22:35:02,499][ INFO][PID:1381705] The copr-rpmbuild seems started, per: stdout: stderr: Warning: Permanently added '18.234.244.87' (ED25519) to the list of known hosts. [2025-12-09 22:35:02,501][ INFO][PID:1381705] Downloading the builder-live.log file, attempt 1 [2025-12-09 22:35:02,505][ INFO][PID:1381705] Popen command started: ssh -F /home/copr/.ssh/config mockbuilder@18.234.244.87 copr-rpmbuild-log [2025-12-09 22:35:07,516][ INFO][PID:1381705] Periodic builder liveness probe: alive [2025-12-09 22:35:07,517][ INFO][PID:1381705] Checking for cancel request [2025-12-09 22:35:12,518][ INFO][PID:1381705] Checking for cancel request [2025-12-09 22:35:17,519][ INFO][PID:1381705] Checking for cancel request [2025-12-09 22:35:22,522][ INFO][PID:1381705] Checking for cancel request [2025-12-09 22:35:27,523][ INFO][PID:1381705] Checking for cancel request [2025-12-09 22:35:32,528][ INFO][PID:1381705] Checking for cancel request [2025-12-09 22:35:37,529][ INFO][PID:1381705] Checking for cancel request [2025-12-09 22:35:42,530][ INFO][PID:1381705] Checking for cancel request [2025-12-09 22:35:47,532][ INFO][PID:1381705] Checking for cancel request [2025-12-09 22:35:52,536][ INFO][PID:1381705] Checking for cancel request [2025-12-09 22:35:57,537][ INFO][PID:1381705] Checking for cancel request [2025-12-09 22:36:02,539][ INFO][PID:1381705] Checking for cancel request [2025-12-09 22:36:07,542][ INFO][PID:1381705] Checking for cancel request [2025-12-09 22:36:12,543][ INFO][PID:1381705] Checking for cancel request [2025-12-09 22:36:17,544][ INFO][PID:1381705] Checking for cancel request [2025-12-09 22:36:22,546][ INFO][PID:1381705] Checking for cancel request [2025-12-09 22:36:27,547][ INFO][PID:1381705] Checking for cancel request [2025-12-09 22:36:32,548][ INFO][PID:1381705] Checking for cancel request [2025-12-09 22:36:37,549][ INFO][PID:1381705] Checking for cancel request [2025-12-09 22:36:42,550][ INFO][PID:1381705] Checking for cancel request [2025-12-09 22:36:47,554][ INFO][PID:1381705] Checking for cancel request [2025-12-09 22:36:52,556][ INFO][PID:1381705] Checking for cancel request [2025-12-09 22:36:57,558][ INFO][PID:1381705] Checking for cancel request [2025-12-09 22:37:02,560][ INFO][PID:1381705] Checking for cancel request [2025-12-09 22:37:07,562][ INFO][PID:1381705] Checking for cancel request [2025-12-09 22:37:12,563][ INFO][PID:1381705] Checking for cancel request [2025-12-09 22:37:17,565][ INFO][PID:1381705] Checking for cancel request [2025-12-09 22:37:22,567][ INFO][PID:1381705] Checking for cancel request [2025-12-09 22:37:27,568][ INFO][PID:1381705] Checking for cancel request [2025-12-09 22:37:32,569][ INFO][PID:1381705] Checking for cancel request [2025-12-09 22:37:37,570][ INFO][PID:1381705] Checking for cancel request [2025-12-09 22:37:42,572][ INFO][PID:1381705] Checking for cancel request [2025-12-09 22:37:47,573][ INFO][PID:1381705] Checking for cancel request [2025-12-09 22:37:52,575][ INFO][PID:1381705] Checking for cancel request [2025-12-09 22:37:57,576][ INFO][PID:1381705] Checking for cancel request [2025-12-09 22:38:02,577][ INFO][PID:1381705] Checking for cancel request [2025-12-09 22:38:07,578][ INFO][PID:1381705] Checking for cancel request [2025-12-09 22:38:12,579][ INFO][PID:1381705] Checking for cancel request [2025-12-09 22:38:17,580][ INFO][PID:1381705] Checking for cancel request [2025-12-09 22:38:22,582][ INFO][PID:1381705] Checking for cancel request [2025-12-09 22:38:27,583][ INFO][PID:1381705] Checking for cancel request [2025-12-09 22:38:32,584][ INFO][PID:1381705] Checking for cancel request [2025-12-09 22:38:37,585][ INFO][PID:1381705] Checking for cancel request [2025-12-09 22:38:42,586][ INFO][PID:1381705] Checking for cancel request [2025-12-09 22:38:47,587][ INFO][PID:1381705] Checking for cancel request [2025-12-09 22:38:52,588][ INFO][PID:1381705] Checking for cancel request [2025-12-09 22:38:57,589][ INFO][PID:1381705] Checking for cancel request [2025-12-09 22:39:02,590][ INFO][PID:1381705] Checking for cancel request [2025-12-09 22:39:07,592][ INFO][PID:1381705] Checking for cancel request [2025-12-09 22:39:12,593][ INFO][PID:1381705] Checking for cancel request [2025-12-09 22:39:17,594][ INFO][PID:1381705] Checking for cancel request [2025-12-09 22:39:22,596][ INFO][PID:1381705] Checking for cancel request [2025-12-09 22:39:27,597][ INFO][PID:1381705] Checking for cancel request [2025-12-09 22:39:32,598][ INFO][PID:1381705] Checking for cancel request [2025-12-09 22:39:37,599][ INFO][PID:1381705] Checking for cancel request [2025-12-09 22:39:42,600][ INFO][PID:1381705] Checking for cancel request [2025-12-09 22:39:47,601][ INFO][PID:1381705] Checking for cancel request [2025-12-09 22:39:52,602][ INFO][PID:1381705] Checking for cancel request [2025-12-09 22:39:57,603][ INFO][PID:1381705] Checking for cancel request [2025-12-09 22:40:02,604][ INFO][PID:1381705] Checking for cancel request [2025-12-09 22:40:07,605][ INFO][PID:1381705] Checking for cancel request [2025-12-09 22:40:12,606][ INFO][PID:1381705] Checking for cancel request [2025-12-09 22:40:17,611][ INFO][PID:1381705] Checking for cancel request [2025-12-09 22:40:22,613][ INFO][PID:1381705] Checking for cancel request [2025-12-09 22:40:27,614][ INFO][PID:1381705] Checking for cancel request [2025-12-09 22:40:32,615][ INFO][PID:1381705] Checking for cancel request [2025-12-09 22:40:37,616][ INFO][PID:1381705] Checking for cancel request [2025-12-09 22:40:42,617][ INFO][PID:1381705] Checking for cancel request [2025-12-09 22:40:47,618][ INFO][PID:1381705] Checking for cancel request [2025-12-09 22:40:52,619][ INFO][PID:1381705] Checking for cancel request [2025-12-09 22:40:57,620][ INFO][PID:1381705] Checking for cancel request [2025-12-09 22:41:02,621][ INFO][PID:1381705] Checking for cancel request [2025-12-09 22:41:07,622][ INFO][PID:1381705] Checking for cancel request [2025-12-09 22:41:12,623][ INFO][PID:1381705] Checking for cancel request [2025-12-09 22:41:17,624][ INFO][PID:1381705] Checking for cancel request [2025-12-09 22:41:22,626][ INFO][PID:1381705] Checking for cancel request [2025-12-09 22:41:27,627][ INFO][PID:1381705] Checking for cancel request [2025-12-09 22:41:32,628][ INFO][PID:1381705] Checking for cancel request [2025-12-09 22:41:37,629][ INFO][PID:1381705] Checking for cancel request [2025-12-09 22:41:42,630][ INFO][PID:1381705] Checking for cancel request [2025-12-09 22:41:47,631][ INFO][PID:1381705] Checking for cancel request [2025-12-09 22:41:52,632][ INFO][PID:1381705] Checking for cancel request [2025-12-09 22:41:57,633][ INFO][PID:1381705] Checking for cancel request [2025-12-09 22:42:02,635][ INFO][PID:1381705] Checking for cancel request [2025-12-09 22:42:07,636][ INFO][PID:1381705] Checking for cancel request [2025-12-09 22:42:12,637][ INFO][PID:1381705] Checking for cancel request [2025-12-09 22:42:17,638][ INFO][PID:1381705] Checking for cancel request [2025-12-09 22:42:22,639][ INFO][PID:1381705] Checking for cancel request [2025-12-09 22:42:27,640][ INFO][PID:1381705] Checking for cancel request [2025-12-09 22:42:32,642][ INFO][PID:1381705] Checking for cancel request [2025-12-09 22:42:37,644][ INFO][PID:1381705] Checking for cancel request [2025-12-09 22:42:42,645][ INFO][PID:1381705] Checking for cancel request [2025-12-09 22:42:47,648][ INFO][PID:1381705] Checking for cancel request [2025-12-09 22:42:52,649][ INFO][PID:1381705] Checking for cancel request [2025-12-09 22:42:57,652][ INFO][PID:1381705] Checking for cancel request [2025-12-09 22:43:02,654][ INFO][PID:1381705] Checking for cancel request [2025-12-09 22:43:07,658][ INFO][PID:1381705] Checking for cancel request [2025-12-09 22:43:12,660][ INFO][PID:1381705] Checking for cancel request [2025-12-09 22:43:17,663][ INFO][PID:1381705] Checking for cancel request [2025-12-09 22:43:22,664][ INFO][PID:1381705] Checking for cancel request [2025-12-09 22:43:27,665][ INFO][PID:1381705] Checking for cancel request [2025-12-09 22:43:32,667][ INFO][PID:1381705] Checking for cancel request [2025-12-09 22:43:37,669][ INFO][PID:1381705] Checking for cancel request [2025-12-09 22:43:42,670][ INFO][PID:1381705] Checking for cancel request [2025-12-09 22:43:47,672][ INFO][PID:1381705] Checking for cancel request [2025-12-09 22:43:50,229][ INFO][PID:1381705] Downloading results from builder [2025-12-09 22:43:50,230][ INFO][PID:1381705] rsyncing of mockbuilder@18.234.244.87:/var/lib/copr-rpmbuild/results/ to /var/lib/copr/public_html/results/lizardbyte/pulls:pr:4491/srpm-builds/09892503 started [2025-12-09 22:43:50,232][ INFO][PID:1381705] Popen command started: /usr/bin/rsync -rltDvH --chmod=D755,F644 -e 'ssh -F /home/copr/.ssh/config' mockbuilder@18.234.244.87:/var/lib/copr-rpmbuild/results/ /var/lib/copr/public_html/results/lizardbyte/pulls:pr:4491/srpm-builds/09892503/ &> /var/lib/copr/public_html/results/lizardbyte/pulls:pr:4491/srpm-builds/09892503/build-09892503.rsync.log [2025-12-09 22:43:59,329][ INFO][PID:1381705] rsyncing finished. [2025-12-09 22:43:59,329][ INFO][PID:1381705] Releasing VM back to pool [2025-12-09 22:43:59,339][ INFO][PID:1381705] Searching for 'success' file in resultdir [2025-12-09 22:43:59,340][ INFO][PID:1381705] Getting build details [2025-12-09 22:43:59,340][ INFO][PID:1381705] Retrieving SRPM info from /var/lib/copr/public_html/results/lizardbyte/pulls:pr:4491/srpm-builds/09892503 [2025-12-09 22:43:59,341][ INFO][PID:1381705] SRPM URL: https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:4491/srpm-builds/09892503/Sunshine-0.0.4491-1.src.rpm [2025-12-09 22:43:59,342][ INFO][PID:1381705] build details: {'srpm_url': 'https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:4491/srpm-builds/09892503/Sunshine-0.0.4491-1.src.rpm', 'pkg_name': 'Sunshine', 'pkg_version': '0.0.4491-1'} [2025-12-09 22:43:59,342][ INFO][PID:1381705] Finished build: id=9892503 failed=False timeout=108000 destdir=/var/lib/copr/public_html/results/lizardbyte/pulls:pr:4491 chroot=srpm-builds [2025-12-09 22:43:59,344][ INFO][PID:1381705] Worker succeeded build, took 537.9946463108063 [2025-12-09 22:43:59,345][ INFO][PID:1381705] 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:4491", "submitter": null, "ended_on": 1765320239.3442802, "started_on": 1765319701.349634, "submitted_on": null, "status": 1, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "9892503", "build_id": 9892503, "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 [[ -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 [[ -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/copr\\\"\\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\\\" >&2\\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\": \"tmpcti1m1si\", \"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:4491/srpm-builds/09892503/Sunshine-0.0.4491-1.src.rpm", "uses_devel_repo": null, "sandbox": "lizardbyte/pulls--caa3b006-fe28-4e5d-99e7-2a6669d16494", "results": { "name": "Sunshine", "epoch": null, "version": "0.0.4491", "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:4491", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:4491", "result_dir": "09892503", "built_packages": "", "tags": [ "arch_x86_64" ], "pkg_version": "0.0.4491-1", "id": 9892503, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2025-12-09 22:43:59,389][ INFO][PID:1381705] Sending fedora-messaging bus message in build.end [2025-12-09 22:43:59,421][ INFO][PID:1381705] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:4491/srpm-builds/09892503/builder-live.log by gzip [2025-12-09 22:43:59,422][ INFO][PID:1381705] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:4491/srpm-builds/09892503/builder-live.log' as PID 1454648 [2025-12-09 22:43:59,445][ INFO][PID:1381705] Finished after 0 seconds with exit code 0 (gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:4491/srpm-builds/09892503/builder-live.log) [2025-12-09 22:43:59,445][ INFO][PID:1381705] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:4491/srpm-builds/09892503/backend.log by gzip [2025-12-09 22:43:59,447][ INFO][PID:1381705] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:4491/srpm-builds/09892503/backend.log' as PID 1454649