[2026-03-07 18:53:14,617][ INFO][PID:828940] Marking build as starting [2026-03-07 18:53:14,652][ INFO][PID:828940] Checking for cancel request [2026-03-07 18:53:14,653][ INFO][PID:828940] VM allocation process starts [2026-03-07 18:53:14,665][ INFO][PID:828940] Trying to allocate VM: ResallocHost, ticket_id=1757872, requested_tags=['copr_builder', 'arch_x86_64'] [2026-03-07 18:53:19,666][ INFO][PID:828940] Checking for cancel request [2026-03-07 18:53:24,667][ INFO][PID:828940] Checking for cancel request [2026-03-07 18:53:26,688][ INFO][PID:828940] Allocated host ResallocHost, ticket_id=1757872, hostname=54.227.7.216, name=aws_x86_64_normalreserved_prod_02893650_20260307_182328, requested_tags=['copr_builder', 'arch_x86_64'] [2026-03-07 18:53:26,689][ INFO][PID:828940] Allocating ssh connection to builder [2026-03-07 18:53:26,689][ INFO][PID:828940] Checking that builder machine is OK [2026-03-07 18:53:27,040][ INFO][PID:828940] Running remote command: copr-builder-ready srpm-builds [2026-03-07 18:53:27,254][ INFO][PID:828940] Red Hat subscription not needed for srpm-builds Builder is ready to be used [2026-03-07 18:53:27,254][ INFO][PID:828940] Filling build.info file with builder info [2026-03-07 18:53:27,255][ INFO][PID:828940] Checking for cancel request [2026-03-07 18:53:27,256][ INFO][PID:828940] 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": "beta", "project_dirname": "beta", "submitter": null, "ended_on": null, "started_on": 1772909607.2560358, "submitted_on": null, "status": 3, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10199874", "build_id": 10199874, "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# read optional exclusions from .copr-ci config file\\n# each non-empty, non-comment line is treated as a submodule path or directory\\n# to exclude (relative to the repo root, e.g. \\\"third-party/build-deps\\\")\\nEXCLUDED_PATHS=()\\nif [[ -f \\\".copr-ci\\\" ]]; then\\n echo \\\"Found .copr-ci config file, reading exclusions...\\\"\\n while IFS= read -r line || [[ -n \\\"$line\\\" ]]; do\\n # skip empty lines and comments\\n [[ -z \\\"$line\\\" || \\\"$line\\\" =~ ^# ]] && continue\\n EXCLUDED_PATHS+=(\\\"$line\\\")\\n echo \\\" Excluding: $line\\\"\\n done < \\\".copr-ci\\\"\\nfi\\n\\n# initialize the submodules, skipping any excluded paths\\nif [[ ${#EXCLUDED_PATHS[@]} -gt 0 ]]; then\\n # get all top-level submodule paths, then init only the ones not excluded\\n mapfile -t TOP_SUBMODULES < <(git submodule status | awk '{print $2}')\\n\\n for submodule in \\\"${TOP_SUBMODULES[@]}\\\"; do\\n skip=false\\n for excluded in \\\"${EXCLUDED_PATHS[@]}\\\"; do\\n # match exact path or any path that starts with the excluded prefix\\n if [[ \\\"$submodule\\\" == \\\"$excluded\\\" || \\\"$submodule\\\" == \\\"$excluded/\\\"* ]]; then\\n skip=true\\n break\\n fi\\n done\\n if [[ \\\"$skip\\\" == false ]]; then\\n git submodule update --init --recursive --depth 1 -- \\\"$submodule\\\"\\n else\\n echo \\\"Skipping submodule: $submodule\\\"\\n fi\\n done\\nelse\\n git submodule update --init --recursive --depth 1\\nfi\\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, excluding any configured paths\\nTAR_EXCLUDE_ARGS=()\\nfor path in \\\"${EXCLUDED_PATHS[@]}\\\"; do\\n TAR_EXCLUDE_ARGS+=(\\\"--exclude=./${path}\\\")\\ndone\\ntar -czf \\\"${resultdir}/tarball.tar.gz\\\" \\\"${TAR_EXCLUDE_ARGS[@]}\\\" .\\n\", \"chroot\": \"fedora-44-x86_64\", \"builddeps\": \"git jq python3 rpmlint\", \"resultdir\": \"\", \"repos\": \"\", \"tmp\": \"tmp_m3xp_jk\", \"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/beta--ebfbf847-999f-4a3c-90d7-faf7a524b008", "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/beta", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/lizardbyte/beta", "result_dir": "10199874", "built_packages": "", "tags": [ "arch_x86_64" ], "id": 10199874, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "beta", "vendor": "Fedora Project COPR (lizardbyte/beta)" } } ] } [2026-03-07 18:53:27,293][ INFO][PID:828940] Sending fedora-messaging bus message in build.start [2026-03-07 18:53:27,785][ INFO][PID:828940] Sending fedora-messaging bus message in chroot.start [2026-03-07 18:53:27,812][ INFO][PID:828940] Starting remote build: copr-rpmbuild --verbose --drop-resultdir --srpm --task-url https://copr.fedorainfracloud.org/backend/get-srpm-build-task/10199874 --detached [2026-03-07 18:53:28,184][ INFO][PID:828940] The copr-rpmbuild seems started, per: stdout: stderr: Warning: Permanently added '54.227.7.216' (ED25519) to the list of known hosts. [2026-03-07 18:53:28,184][ INFO][PID:828940] Downloading the builder-live.log file, attempt 1 [2026-03-07 18:53:28,186][ INFO][PID:828940] Popen command started: ssh -F /home/copr/.ssh/config mockbuilder@54.227.7.216 copr-rpmbuild-log [2026-03-07 18:53:33,192][ INFO][PID:828940] Periodic builder liveness probe: alive [2026-03-07 18:53:33,193][ INFO][PID:828940] Checking for cancel request [2026-03-07 18:53:38,193][ INFO][PID:828940] Checking for cancel request [2026-03-07 18:53:43,194][ INFO][PID:828940] Checking for cancel request [2026-03-07 18:53:48,195][ INFO][PID:828940] Checking for cancel request [2026-03-07 18:53:53,196][ INFO][PID:828940] Checking for cancel request [2026-03-07 18:53:58,197][ INFO][PID:828940] Checking for cancel request [2026-03-07 18:54:03,198][ INFO][PID:828940] Checking for cancel request [2026-03-07 18:54:08,199][ INFO][PID:828940] Checking for cancel request [2026-03-07 18:54:13,200][ INFO][PID:828940] Checking for cancel request [2026-03-07 18:54:18,201][ INFO][PID:828940] Checking for cancel request [2026-03-07 18:54:23,202][ INFO][PID:828940] Checking for cancel request [2026-03-07 18:54:28,203][ INFO][PID:828940] Checking for cancel request [2026-03-07 18:54:33,204][ INFO][PID:828940] Checking for cancel request [2026-03-07 18:54:38,205][ INFO][PID:828940] Checking for cancel request [2026-03-07 18:54:43,205][ INFO][PID:828940] Checking for cancel request [2026-03-07 18:54:48,206][ INFO][PID:828940] Checking for cancel request [2026-03-07 18:54:53,207][ INFO][PID:828940] Checking for cancel request [2026-03-07 18:54:58,208][ INFO][PID:828940] Checking for cancel request [2026-03-07 18:55:03,209][ INFO][PID:828940] Checking for cancel request [2026-03-07 18:55:08,210][ INFO][PID:828940] Checking for cancel request [2026-03-07 18:55:13,211][ INFO][PID:828940] Checking for cancel request [2026-03-07 18:55:18,212][ INFO][PID:828940] Checking for cancel request [2026-03-07 18:55:23,213][ INFO][PID:828940] Checking for cancel request [2026-03-07 18:55:28,214][ INFO][PID:828940] Checking for cancel request [2026-03-07 18:55:33,214][ INFO][PID:828940] Checking for cancel request [2026-03-07 18:55:38,215][ INFO][PID:828940] Checking for cancel request [2026-03-07 18:55:43,216][ INFO][PID:828940] Checking for cancel request [2026-03-07 18:55:48,217][ INFO][PID:828940] Checking for cancel request [2026-03-07 18:55:53,218][ INFO][PID:828940] Checking for cancel request [2026-03-07 18:55:58,219][ INFO][PID:828940] Checking for cancel request [2026-03-07 18:56:03,220][ INFO][PID:828940] Checking for cancel request [2026-03-07 18:56:08,221][ INFO][PID:828940] Checking for cancel request [2026-03-07 18:56:13,222][ INFO][PID:828940] Checking for cancel request [2026-03-07 18:56:18,223][ INFO][PID:828940] Checking for cancel request [2026-03-07 18:56:23,223][ INFO][PID:828940] Checking for cancel request [2026-03-07 18:56:28,224][ INFO][PID:828940] Checking for cancel request [2026-03-07 18:56:33,225][ INFO][PID:828940] Checking for cancel request [2026-03-07 18:56:38,226][ INFO][PID:828940] Checking for cancel request [2026-03-07 18:56:43,227][ INFO][PID:828940] Checking for cancel request [2026-03-07 18:56:48,228][ INFO][PID:828940] Checking for cancel request [2026-03-07 18:56:53,229][ INFO][PID:828940] Checking for cancel request [2026-03-07 18:56:58,230][ INFO][PID:828940] Checking for cancel request [2026-03-07 18:57:03,231][ INFO][PID:828940] Checking for cancel request [2026-03-07 18:57:08,232][ INFO][PID:828940] Checking for cancel request [2026-03-07 18:57:13,233][ INFO][PID:828940] Checking for cancel request [2026-03-07 18:57:18,234][ INFO][PID:828940] Checking for cancel request [2026-03-07 18:57:23,235][ INFO][PID:828940] Checking for cancel request [2026-03-07 18:57:28,236][ INFO][PID:828940] Checking for cancel request [2026-03-07 18:57:33,237][ INFO][PID:828940] Checking for cancel request [2026-03-07 18:57:38,238][ INFO][PID:828940] Checking for cancel request [2026-03-07 18:57:43,239][ INFO][PID:828940] Checking for cancel request [2026-03-07 18:57:48,240][ INFO][PID:828940] Checking for cancel request [2026-03-07 18:57:53,241][ INFO][PID:828940] Checking for cancel request [2026-03-07 18:57:58,242][ INFO][PID:828940] Checking for cancel request [2026-03-07 18:58:03,243][ INFO][PID:828940] Checking for cancel request [2026-03-07 18:58:08,244][ INFO][PID:828940] Checking for cancel request [2026-03-07 18:58:13,244][ INFO][PID:828940] Checking for cancel request [2026-03-07 18:58:18,245][ INFO][PID:828940] Checking for cancel request [2026-03-07 18:58:23,246][ INFO][PID:828940] Checking for cancel request [2026-03-07 18:58:28,247][ INFO][PID:828940] Checking for cancel request [2026-03-07 18:58:33,248][ INFO][PID:828940] Checking for cancel request [2026-03-07 18:58:38,249][ INFO][PID:828940] Checking for cancel request [2026-03-07 18:58:43,250][ INFO][PID:828940] Checking for cancel request [2026-03-07 18:58:48,251][ INFO][PID:828940] Checking for cancel request [2026-03-07 18:58:53,252][ INFO][PID:828940] Checking for cancel request [2026-03-07 18:58:58,253][ INFO][PID:828940] Checking for cancel request [2026-03-07 18:59:03,254][ INFO][PID:828940] Checking for cancel request [2026-03-07 18:59:08,255][ INFO][PID:828940] Checking for cancel request [2026-03-07 18:59:13,256][ INFO][PID:828940] Checking for cancel request [2026-03-07 18:59:18,257][ INFO][PID:828940] Checking for cancel request [2026-03-07 18:59:23,258][ INFO][PID:828940] Checking for cancel request [2026-03-07 18:59:28,259][ INFO][PID:828940] Checking for cancel request [2026-03-07 18:59:33,260][ INFO][PID:828940] Checking for cancel request [2026-03-07 18:59:38,260][ INFO][PID:828940] Checking for cancel request [2026-03-07 18:59:43,261][ INFO][PID:828940] Checking for cancel request [2026-03-07 18:59:48,262][ INFO][PID:828940] Checking for cancel request [2026-03-07 18:59:53,263][ INFO][PID:828940] Checking for cancel request [2026-03-07 18:59:58,264][ INFO][PID:828940] Checking for cancel request [2026-03-07 19:00:03,265][ INFO][PID:828940] Checking for cancel request [2026-03-07 19:00:08,266][ INFO][PID:828940] Checking for cancel request [2026-03-07 19:00:08,909][ INFO][PID:828940] Downloading results from builder [2026-03-07 19:00:08,910][ INFO][PID:828940] rsyncing of mockbuilder@54.227.7.216:/var/lib/copr-rpmbuild/results/ to /var/lib/copr/public_html/results/lizardbyte/beta/srpm-builds/10199874 started [2026-03-07 19:00:08,911][ INFO][PID:828940] Popen command started: /usr/bin/rsync -rltDvH --chmod=D755,F644 -e 'ssh -F /home/copr/.ssh/config' mockbuilder@54.227.7.216:/var/lib/copr-rpmbuild/results/ /var/lib/copr/public_html/results/lizardbyte/beta/srpm-builds/10199874/ &> /var/lib/copr/public_html/results/lizardbyte/beta/srpm-builds/10199874/build-10199874.rsync.log [2026-03-07 19:00:11,706][ INFO][PID:828940] rsyncing finished. [2026-03-07 19:00:11,707][ INFO][PID:828940] Releasing VM back to pool [2026-03-07 19:00:11,716][ INFO][PID:828940] Searching for 'success' file in resultdir [2026-03-07 19:00:11,716][ INFO][PID:828940] Getting build details [2026-03-07 19:00:11,717][ INFO][PID:828940] Retrieving SRPM info from /var/lib/copr/public_html/results/lizardbyte/beta/srpm-builds/10199874 [2026-03-07 19:00:11,717][ INFO][PID:828940] SRPM URL: https://download.copr.fedorainfracloud.org/results/lizardbyte/beta/srpm-builds/10199874/Sunshine-2026.307.151903-1.src.rpm [2026-03-07 19:00:11,718][ INFO][PID:828940] build details: {'srpm_url': 'https://download.copr.fedorainfracloud.org/results/lizardbyte/beta/srpm-builds/10199874/Sunshine-2026.307.151903-1.src.rpm', 'pkg_name': 'Sunshine', 'pkg_version': '2026.307.151903-1'} [2026-03-07 19:00:11,718][ INFO][PID:828940] Finished build: id=10199874 failed=False timeout=108000 destdir=/var/lib/copr/public_html/results/lizardbyte/beta chroot=srpm-builds [2026-03-07 19:00:11,720][ INFO][PID:828940] Worker succeeded build, took 404.46395349502563 [2026-03-07 19:00:11,720][ INFO][PID:828940] 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": "beta", "project_dirname": "beta", "submitter": null, "ended_on": 1772910011.7199893, "started_on": 1772909607.2560358, "submitted_on": null, "status": 1, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10199874", "build_id": 10199874, "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# read optional exclusions from .copr-ci config file\\n# each non-empty, non-comment line is treated as a submodule path or directory\\n# to exclude (relative to the repo root, e.g. \\\"third-party/build-deps\\\")\\nEXCLUDED_PATHS=()\\nif [[ -f \\\".copr-ci\\\" ]]; then\\n echo \\\"Found .copr-ci config file, reading exclusions...\\\"\\n while IFS= read -r line || [[ -n \\\"$line\\\" ]]; do\\n # skip empty lines and comments\\n [[ -z \\\"$line\\\" || \\\"$line\\\" =~ ^# ]] && continue\\n EXCLUDED_PATHS+=(\\\"$line\\\")\\n echo \\\" Excluding: $line\\\"\\n done < \\\".copr-ci\\\"\\nfi\\n\\n# initialize the submodules, skipping any excluded paths\\nif [[ ${#EXCLUDED_PATHS[@]} -gt 0 ]]; then\\n # get all top-level submodule paths, then init only the ones not excluded\\n mapfile -t TOP_SUBMODULES < <(git submodule status | awk '{print $2}')\\n\\n for submodule in \\\"${TOP_SUBMODULES[@]}\\\"; do\\n skip=false\\n for excluded in \\\"${EXCLUDED_PATHS[@]}\\\"; do\\n # match exact path or any path that starts with the excluded prefix\\n if [[ \\\"$submodule\\\" == \\\"$excluded\\\" || \\\"$submodule\\\" == \\\"$excluded/\\\"* ]]; then\\n skip=true\\n break\\n fi\\n done\\n if [[ \\\"$skip\\\" == false ]]; then\\n git submodule update --init --recursive --depth 1 -- \\\"$submodule\\\"\\n else\\n echo \\\"Skipping submodule: $submodule\\\"\\n fi\\n done\\nelse\\n git submodule update --init --recursive --depth 1\\nfi\\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, excluding any configured paths\\nTAR_EXCLUDE_ARGS=()\\nfor path in \\\"${EXCLUDED_PATHS[@]}\\\"; do\\n TAR_EXCLUDE_ARGS+=(\\\"--exclude=./${path}\\\")\\ndone\\ntar -czf \\\"${resultdir}/tarball.tar.gz\\\" \\\"${TAR_EXCLUDE_ARGS[@]}\\\" .\\n\", \"chroot\": \"fedora-44-x86_64\", \"builddeps\": \"git jq python3 rpmlint\", \"resultdir\": \"\", \"repos\": \"\", \"tmp\": \"tmp_m3xp_jk\", \"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/beta/srpm-builds/10199874/Sunshine-2026.307.151903-1.src.rpm", "uses_devel_repo": null, "sandbox": "lizardbyte/beta--ebfbf847-999f-4a3c-90d7-faf7a524b008", "results": { "name": "Sunshine", "epoch": null, "version": "2026.307.151903", "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/beta", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/lizardbyte/beta", "result_dir": "10199874", "built_packages": "", "tags": [ "arch_x86_64" ], "pkg_version": "2026.307.151903-1", "id": 10199874, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "beta", "vendor": "Fedora Project COPR (lizardbyte/beta)" } } ] } [2026-03-07 19:00:11,767][ INFO][PID:828940] Sending fedora-messaging bus message in build.end [2026-03-07 19:00:11,792][ INFO][PID:828940] Compressing /var/lib/copr/public_html/results/lizardbyte/beta/srpm-builds/10199874/builder-live.log by gzip [2026-03-07 19:00:11,793][ INFO][PID:828940] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/beta/srpm-builds/10199874/builder-live.log' as PID 844152 [2026-03-07 19:00:11,847][ INFO][PID:828940] Finished after 0 seconds with exit code 0 (gzip /var/lib/copr/public_html/results/lizardbyte/beta/srpm-builds/10199874/builder-live.log) [2026-03-07 19:00:11,848][ INFO][PID:828940] Compressing /var/lib/copr/public_html/results/lizardbyte/beta/srpm-builds/10199874/backend.log by gzip [2026-03-07 19:00:11,849][ INFO][PID:828940] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/beta/srpm-builds/10199874/backend.log' as PID 844154