[2025-10-20 20:28:35,253][ INFO][PID:1053718] Marking build as starting [2025-10-20 20:28:35,283][ INFO][PID:1053718] Checking for cancel request [2025-10-20 20:28:35,284][ INFO][PID:1053718] VM allocation process starts [2025-10-20 20:28:35,305][ INFO][PID:1053718] Trying to allocate VM: ResallocHost, ticket_id=5748257, requested_tags=['copr_builder', 'arch_x86_64'] [2025-10-20 20:28:40,310][ INFO][PID:1053718] Checking for cancel request [2025-10-20 20:28:45,311][ INFO][PID:1053718] Checking for cancel request [2025-10-20 20:28:50,314][ INFO][PID:1053718] Checking for cancel request [2025-10-20 20:28:55,317][ INFO][PID:1053718] Checking for cancel request [2025-10-20 20:29:00,318][ INFO][PID:1053718] Checking for cancel request [2025-10-20 20:29:05,321][ INFO][PID:1053718] Checking for cancel request [2025-10-20 20:29:10,325][ INFO][PID:1053718] Checking for cancel request [2025-10-20 20:29:15,329][ INFO][PID:1053718] Checking for cancel request [2025-10-20 20:29:20,330][ INFO][PID:1053718] Checking for cancel request [2025-10-20 20:29:25,332][ INFO][PID:1053718] Checking for cancel request [2025-10-20 20:29:30,337][ INFO][PID:1053718] Checking for cancel request [2025-10-20 20:29:35,338][ INFO][PID:1053718] Checking for cancel request [2025-10-20 20:29:40,341][ INFO][PID:1053718] Checking for cancel request [2025-10-20 20:29:45,342][ INFO][PID:1053718] Checking for cancel request [2025-10-20 20:29:50,343][ INFO][PID:1053718] Checking for cancel request [2025-10-20 20:29:55,345][ INFO][PID:1053718] Checking for cancel request [2025-10-20 20:30:00,347][ INFO][PID:1053718] Checking for cancel request [2025-10-20 20:30:05,348][ INFO][PID:1053718] Checking for cancel request [2025-10-20 20:30:10,349][ INFO][PID:1053718] Checking for cancel request [2025-10-20 20:30:15,353][ INFO][PID:1053718] Checking for cancel request [2025-10-20 20:30:20,355][ INFO][PID:1053718] Checking for cancel request [2025-10-20 20:30:23,437][ INFO][PID:1053718] Allocated host ResallocHost, ticket_id=5748257, hostname=2620:52:3:1:dead:beef:cafe:c109, name=copr_hv_x86_64_01_prod_07560244_20251020_202817, requested_tags=['copr_builder', 'arch_x86_64'] [2025-10-20 20:30:23,438][ INFO][PID:1053718] Allocating ssh connection to builder [2025-10-20 20:30:23,439][ INFO][PID:1053718] Checking that builder machine is OK [2025-10-20 20:30:24,199][ INFO][PID:1053718] Running remote command: copr-builder-ready srpm-builds [2025-10-20 20:30:24,605][ INFO][PID:1053718] Red Hat subscription not needed for srpm-builds Builder is ready to be used [2025-10-20 20:30:24,607][ INFO][PID:1053718] Filling build.info file with builder info [2025-10-20 20:30:24,610][ INFO][PID:1053718] Checking for cancel request [2025-10-20 20:30:24,613][ INFO][PID:1053718] 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:4345", "submitter": null, "ended_on": null, "started_on": 1760992224.612364, "submitted_on": null, "status": 3, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "9707415", "build_id": 9707415, "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\": \"tmpa2ar742t\", \"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--a9666f5e-b8b0-4a49-90cc-bf807b165050", "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:4345", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:4345", "result_dir": "09707415", "built_packages": "", "tags": [ "arch_x86_64" ], "id": 9707415, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2025-10-20 20:30:24,651][ INFO][PID:1053718] Sending fedora-messaging bus message in build.start [2025-10-20 20:30:26,070][ INFO][PID:1053718] Sending fedora-messaging bus message in chroot.start [2025-10-20 20:30:26,103][ INFO][PID:1053718] Starting remote build: copr-rpmbuild --verbose --drop-resultdir --srpm --task-url https://copr.fedorainfracloud.org/backend/get-srpm-build-task/9707415 --detached [2025-10-20 20:30:26,792][ INFO][PID:1053718] The copr-rpmbuild seems started, per: stdout: stderr: Warning: Permanently added '2620:52:3:1:dead:beef:cafe:c109' (ED25519) to the list of known hosts. [2025-10-20 20:30:26,792][ INFO][PID:1053718] Downloading the builder-live.log file, attempt 1 [2025-10-20 20:30:26,796][ INFO][PID:1053718] Popen command started: ssh -F /home/copr/.ssh/config mockbuilder@2620:52:3:1:dead:beef:cafe:c109 copr-rpmbuild-log [2025-10-20 20:30:31,800][ INFO][PID:1053718] Periodic builder liveness probe: alive [2025-10-20 20:30:31,801][ INFO][PID:1053718] Checking for cancel request [2025-10-20 20:30:36,802][ INFO][PID:1053718] Checking for cancel request [2025-10-20 20:30:41,803][ INFO][PID:1053718] Checking for cancel request [2025-10-20 20:30:46,805][ INFO][PID:1053718] Checking for cancel request [2025-10-20 20:30:51,820][ INFO][PID:1053718] Checking for cancel request [2025-10-20 20:30:56,823][ INFO][PID:1053718] Checking for cancel request [2025-10-20 20:31:01,826][ INFO][PID:1053718] Checking for cancel request [2025-10-20 20:31:06,829][ INFO][PID:1053718] Checking for cancel request [2025-10-20 20:31:11,830][ INFO][PID:1053718] Checking for cancel request [2025-10-20 20:31:16,833][ INFO][PID:1053718] Checking for cancel request [2025-10-20 20:31:21,838][ INFO][PID:1053718] Checking for cancel request [2025-10-20 20:31:26,845][ INFO][PID:1053718] Checking for cancel request [2025-10-20 20:31:31,850][ INFO][PID:1053718] Checking for cancel request [2025-10-20 20:31:36,851][ INFO][PID:1053718] Checking for cancel request [2025-10-20 20:31:41,857][ INFO][PID:1053718] Checking for cancel request [2025-10-20 20:31:46,859][ INFO][PID:1053718] Checking for cancel request [2025-10-20 20:31:51,863][ INFO][PID:1053718] Checking for cancel request [2025-10-20 20:31:56,866][ INFO][PID:1053718] Checking for cancel request [2025-10-20 20:32:01,868][ INFO][PID:1053718] Checking for cancel request [2025-10-20 20:32:06,872][ INFO][PID:1053718] Checking for cancel request [2025-10-20 20:32:11,873][ INFO][PID:1053718] Checking for cancel request [2025-10-20 20:32:16,875][ INFO][PID:1053718] Checking for cancel request [2025-10-20 20:32:21,876][ INFO][PID:1053718] Checking for cancel request [2025-10-20 20:32:26,877][ INFO][PID:1053718] Checking for cancel request [2025-10-20 20:32:31,878][ INFO][PID:1053718] Checking for cancel request [2025-10-20 20:32:36,880][ INFO][PID:1053718] Checking for cancel request [2025-10-20 20:32:41,881][ INFO][PID:1053718] Checking for cancel request [2025-10-20 20:32:46,882][ INFO][PID:1053718] Checking for cancel request [2025-10-20 20:32:51,883][ INFO][PID:1053718] Checking for cancel request [2025-10-20 20:32:56,885][ INFO][PID:1053718] Checking for cancel request [2025-10-20 20:33:01,888][ INFO][PID:1053718] Checking for cancel request [2025-10-20 20:33:06,890][ INFO][PID:1053718] Checking for cancel request [2025-10-20 20:33:11,891][ INFO][PID:1053718] Checking for cancel request [2025-10-20 20:33:16,892][ INFO][PID:1053718] Checking for cancel request [2025-10-20 20:33:21,895][ INFO][PID:1053718] Checking for cancel request [2025-10-20 20:33:26,897][ INFO][PID:1053718] Checking for cancel request [2025-10-20 20:33:31,899][ INFO][PID:1053718] Checking for cancel request [2025-10-20 20:33:36,900][ INFO][PID:1053718] Checking for cancel request [2025-10-20 20:33:41,901][ INFO][PID:1053718] Checking for cancel request [2025-10-20 20:33:46,906][ INFO][PID:1053718] Checking for cancel request [2025-10-20 20:33:51,907][ INFO][PID:1053718] Checking for cancel request [2025-10-20 20:33:56,909][ INFO][PID:1053718] Checking for cancel request [2025-10-20 20:34:01,910][ INFO][PID:1053718] Checking for cancel request [2025-10-20 20:34:06,911][ INFO][PID:1053718] Checking for cancel request [2025-10-20 20:34:11,915][ INFO][PID:1053718] Checking for cancel request [2025-10-20 20:34:16,916][ INFO][PID:1053718] Checking for cancel request [2025-10-20 20:34:21,917][ INFO][PID:1053718] Checking for cancel request [2025-10-20 20:34:26,919][ INFO][PID:1053718] Checking for cancel request [2025-10-20 20:34:31,922][ INFO][PID:1053718] Checking for cancel request [2025-10-20 20:34:36,923][ INFO][PID:1053718] Checking for cancel request [2025-10-20 20:34:41,925][ INFO][PID:1053718] Checking for cancel request [2025-10-20 20:34:46,926][ INFO][PID:1053718] Checking for cancel request [2025-10-20 20:34:51,927][ INFO][PID:1053718] Checking for cancel request [2025-10-20 20:34:56,930][ INFO][PID:1053718] Checking for cancel request [2025-10-20 20:35:01,932][ INFO][PID:1053718] Checking for cancel request [2025-10-20 20:35:06,936][ INFO][PID:1053718] Checking for cancel request [2025-10-20 20:35:11,938][ INFO][PID:1053718] Checking for cancel request [2025-10-20 20:35:16,941][ INFO][PID:1053718] Checking for cancel request [2025-10-20 20:35:21,942][ INFO][PID:1053718] Checking for cancel request [2025-10-20 20:35:26,943][ INFO][PID:1053718] Checking for cancel request [2025-10-20 20:35:31,945][ INFO][PID:1053718] Checking for cancel request [2025-10-20 20:35:36,947][ INFO][PID:1053718] Checking for cancel request [2025-10-20 20:35:41,948][ INFO][PID:1053718] Checking for cancel request [2025-10-20 20:35:46,949][ INFO][PID:1053718] Checking for cancel request [2025-10-20 20:35:51,951][ INFO][PID:1053718] Checking for cancel request [2025-10-20 20:35:56,953][ INFO][PID:1053718] Checking for cancel request [2025-10-20 20:36:01,955][ INFO][PID:1053718] Checking for cancel request [2025-10-20 20:36:06,958][ INFO][PID:1053718] Checking for cancel request [2025-10-20 20:36:11,959][ INFO][PID:1053718] Checking for cancel request [2025-10-20 20:36:16,961][ INFO][PID:1053718] Checking for cancel request [2025-10-20 20:36:21,962][ INFO][PID:1053718] Checking for cancel request [2025-10-20 20:36:26,963][ INFO][PID:1053718] Checking for cancel request [2025-10-20 20:36:31,967][ INFO][PID:1053718] Checking for cancel request [2025-10-20 20:36:36,972][ INFO][PID:1053718] Checking for cancel request [2025-10-20 20:36:41,976][ INFO][PID:1053718] Checking for cancel request [2025-10-20 20:36:46,977][ INFO][PID:1053718] Checking for cancel request [2025-10-20 20:36:51,979][ INFO][PID:1053718] Checking for cancel request [2025-10-20 20:36:56,984][ INFO][PID:1053718] Checking for cancel request [2025-10-20 20:37:01,985][ INFO][PID:1053718] Checking for cancel request [2025-10-20 20:37:06,986][ INFO][PID:1053718] Checking for cancel request [2025-10-20 20:37:11,988][ INFO][PID:1053718] Checking for cancel request [2025-10-20 20:37:16,991][ INFO][PID:1053718] Checking for cancel request [2025-10-20 20:37:21,992][ INFO][PID:1053718] Checking for cancel request [2025-10-20 20:37:26,993][ INFO][PID:1053718] Checking for cancel request [2025-10-20 20:37:31,995][ INFO][PID:1053718] Checking for cancel request [2025-10-20 20:37:36,996][ INFO][PID:1053718] Checking for cancel request [2025-10-20 20:37:42,002][ INFO][PID:1053718] Checking for cancel request [2025-10-20 20:37:47,004][ INFO][PID:1053718] Checking for cancel request [2025-10-20 20:37:52,005][ INFO][PID:1053718] Checking for cancel request [2025-10-20 20:37:57,006][ INFO][PID:1053718] Checking for cancel request [2025-10-20 20:38:02,007][ INFO][PID:1053718] Checking for cancel request [2025-10-20 20:38:07,008][ INFO][PID:1053718] Checking for cancel request [2025-10-20 20:38:12,010][ INFO][PID:1053718] Checking for cancel request [2025-10-20 20:38:17,013][ INFO][PID:1053718] Checking for cancel request [2025-10-20 20:38:22,014][ INFO][PID:1053718] Checking for cancel request [2025-10-20 20:38:27,015][ INFO][PID:1053718] Checking for cancel request [2025-10-20 20:38:32,016][ INFO][PID:1053718] Checking for cancel request [2025-10-20 20:38:37,018][ INFO][PID:1053718] Checking for cancel request [2025-10-20 20:38:42,020][ INFO][PID:1053718] Checking for cancel request [2025-10-20 20:38:47,022][ INFO][PID:1053718] Checking for cancel request [2025-10-20 20:38:52,024][ INFO][PID:1053718] Checking for cancel request [2025-10-20 20:38:57,029][ INFO][PID:1053718] Checking for cancel request [2025-10-20 20:39:02,031][ INFO][PID:1053718] Checking for cancel request [2025-10-20 20:39:07,035][ INFO][PID:1053718] Checking for cancel request [2025-10-20 20:39:12,037][ INFO][PID:1053718] Checking for cancel request [2025-10-20 20:39:17,040][ INFO][PID:1053718] Checking for cancel request [2025-10-20 20:39:22,043][ INFO][PID:1053718] Checking for cancel request [2025-10-20 20:39:27,044][ INFO][PID:1053718] Checking for cancel request [2025-10-20 20:39:32,046][ INFO][PID:1053718] Checking for cancel request [2025-10-20 20:39:37,051][ INFO][PID:1053718] Checking for cancel request [2025-10-20 20:39:42,055][ INFO][PID:1053718] Checking for cancel request [2025-10-20 20:39:46,272][ INFO][PID:1053718] Downloading results from builder [2025-10-20 20:39:46,273][ INFO][PID:1053718] rsyncing of mockbuilder@[2620:52:3:1:dead:beef:cafe:c109]:/var/lib/copr-rpmbuild/results/ to /var/lib/copr/public_html/results/lizardbyte/pulls:pr:4345/srpm-builds/09707415 started [2025-10-20 20:39:46,277][ INFO][PID:1053718] Popen command started: /usr/bin/rsync -rltDvH --chmod=D755,F644 -e 'ssh -F /home/copr/.ssh/config' mockbuilder@[2620:52:3:1:dead:beef:cafe:c109]:/var/lib/copr-rpmbuild/results/ /var/lib/copr/public_html/results/lizardbyte/pulls:pr:4345/srpm-builds/09707415/ &> /var/lib/copr/public_html/results/lizardbyte/pulls:pr:4345/srpm-builds/09707415/build-09707415.rsync.log [2025-10-20 20:40:35,350][ INFO][PID:1053718] rsyncing finished. [2025-10-20 20:40:35,354][ INFO][PID:1053718] Releasing VM back to pool [2025-10-20 20:40:35,373][ INFO][PID:1053718] Searching for 'success' file in resultdir [2025-10-20 20:40:35,383][ INFO][PID:1053718] Getting build details [2025-10-20 20:40:35,387][ INFO][PID:1053718] Retrieving SRPM info from /var/lib/copr/public_html/results/lizardbyte/pulls:pr:4345/srpm-builds/09707415 [2025-10-20 20:40:35,389][ INFO][PID:1053718] SRPM URL: https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:4345/srpm-builds/09707415/Sunshine-0.0.4345-1.src.rpm [2025-10-20 20:40:35,391][ INFO][PID:1053718] build details: {'srpm_url': 'https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:4345/srpm-builds/09707415/Sunshine-0.0.4345-1.src.rpm', 'pkg_name': 'Sunshine', 'pkg_version': '0.0.4345-1'} [2025-10-20 20:40:35,393][ INFO][PID:1053718] Finished build: id=9707415 failed=False timeout=108000 destdir=/var/lib/copr/public_html/results/lizardbyte/pulls:pr:4345 chroot=srpm-builds [2025-10-20 20:40:35,395][ INFO][PID:1053718] Worker succeeded build, took 610.7830853462219 [2025-10-20 20:40:35,397][ INFO][PID:1053718] 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:4345", "submitter": null, "ended_on": 1760992835.3954494, "started_on": 1760992224.612364, "submitted_on": null, "status": 1, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "9707415", "build_id": 9707415, "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\": \"tmpa2ar742t\", \"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:4345/srpm-builds/09707415/Sunshine-0.0.4345-1.src.rpm", "uses_devel_repo": null, "sandbox": "lizardbyte/pulls--a9666f5e-b8b0-4a49-90cc-bf807b165050", "results": { "name": "Sunshine", "epoch": null, "version": "0.0.4345", "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:4345", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:4345", "result_dir": "09707415", "built_packages": "", "tags": [ "arch_x86_64" ], "pkg_version": "0.0.4345-1", "id": 9707415, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2025-10-20 20:40:35,438][ INFO][PID:1053718] Sending fedora-messaging bus message in build.end [2025-10-20 20:40:35,492][ INFO][PID:1053718] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:4345/srpm-builds/09707415/builder-live.log by gzip [2025-10-20 20:40:35,501][ INFO][PID:1053718] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:4345/srpm-builds/09707415/builder-live.log' as PID 1141128 [2025-10-20 20:40:35,512][ INFO][PID:1053718] Finished after 0 seconds with exit code 0 (gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:4345/srpm-builds/09707415/builder-live.log) [2025-10-20 20:40:35,514][ INFO][PID:1053718] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:4345/srpm-builds/09707415/backend.log by gzip [2025-10-20 20:40:35,516][ INFO][PID:1053718] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:4345/srpm-builds/09707415/backend.log' as PID 1141134