[2026-04-11 08:30:30,680][ INFO][PID:1663970] Marking build as starting [2026-04-11 08:30:30,715][ INFO][PID:1663970] Checking for cancel request [2026-04-11 08:30:30,716][ INFO][PID:1663970] VM allocation process starts [2026-04-11 08:30:30,725][ INFO][PID:1663970] Trying to allocate VM: ResallocHost, ticket_id=2274889, requested_tags=['copr_builder', 'arch_x86_64'] [2026-04-11 08:30:33,738][ INFO][PID:1663970] Allocated host ResallocHost, ticket_id=2274889, hostname=13.223.175.195, name=aws_x86_64_normalreserved_prod_05991123_20260411_080505, requested_tags=['copr_builder', 'arch_x86_64'] [2026-04-11 08:30:33,739][ INFO][PID:1663970] Allocating ssh connection to builder [2026-04-11 08:30:33,739][ INFO][PID:1663970] Checking that builder machine is OK [2026-04-11 08:30:34,062][ INFO][PID:1663970] Running remote command: copr-builder-ready srpm-builds [2026-04-11 08:30:34,255][ INFO][PID:1663970] Red Hat subscription not needed for srpm-builds Builder is ready to be used [2026-04-11 08:30:34,255][ INFO][PID:1663970] Filling build.info file with builder info [2026-04-11 08:30:34,256][ INFO][PID:1663970] Checking for cancel request [2026-04-11 08:30:34,256][ INFO][PID:1663970] 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:4846", "submitter": null, "ended_on": null, "started_on": 1775896234.256641, "submitted_on": null, "status": 3, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10313546", "build_id": 10313546, "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\": \"tmp9zciead3\", \"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--e0c1a124-7338-4d71-b699-004263ed74be", "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:4846", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:4846", "result_dir": "10313546", "built_packages": "", "tags": [ "arch_x86_64" ], "id": 10313546, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2026-04-11 08:30:34,289][ INFO][PID:1663970] Sending fedora-messaging bus message in build.start [2026-04-11 08:30:34,903][ INFO][PID:1663970] Sending fedora-messaging bus message in chroot.start [2026-04-11 08:30:34,942][ INFO][PID:1663970] Starting remote build: copr-rpmbuild --verbose --drop-resultdir --srpm --task-url https://copr.fedorainfracloud.org/backend/get-srpm-build-task/10313546 --detached [2026-04-11 08:30:35,265][ INFO][PID:1663970] The copr-rpmbuild seems started, per: stdout: stderr: Warning: Permanently added '13.223.175.195' (ED25519) to the list of known hosts. [2026-04-11 08:30:35,266][ INFO][PID:1663970] Downloading the builder-live.log file, attempt 1 [2026-04-11 08:30:35,267][ INFO][PID:1663970] Popen command started: ssh -F /home/copr/.ssh/config mockbuilder@13.223.175.195 copr-rpmbuild-log [2026-04-11 08:30:40,270][ INFO][PID:1663970] Periodic builder liveness probe: alive [2026-04-11 08:30:40,271][ INFO][PID:1663970] Checking for cancel request [2026-04-11 08:30:45,272][ INFO][PID:1663970] Checking for cancel request [2026-04-11 08:30:50,273][ INFO][PID:1663970] Checking for cancel request [2026-04-11 08:30:55,274][ INFO][PID:1663970] Checking for cancel request [2026-04-11 08:31:00,274][ INFO][PID:1663970] Checking for cancel request [2026-04-11 08:31:05,275][ INFO][PID:1663970] Checking for cancel request [2026-04-11 08:31:10,276][ INFO][PID:1663970] Checking for cancel request [2026-04-11 08:31:15,277][ INFO][PID:1663970] Checking for cancel request [2026-04-11 08:31:20,278][ INFO][PID:1663970] Checking for cancel request [2026-04-11 08:31:25,279][ INFO][PID:1663970] Checking for cancel request [2026-04-11 08:31:30,280][ INFO][PID:1663970] Checking for cancel request [2026-04-11 08:31:35,281][ INFO][PID:1663970] Checking for cancel request [2026-04-11 08:31:40,282][ INFO][PID:1663970] Checking for cancel request [2026-04-11 08:31:45,283][ INFO][PID:1663970] Checking for cancel request [2026-04-11 08:31:50,284][ INFO][PID:1663970] Checking for cancel request [2026-04-11 08:31:55,285][ INFO][PID:1663970] Checking for cancel request [2026-04-11 08:32:00,285][ INFO][PID:1663970] Checking for cancel request [2026-04-11 08:32:05,286][ INFO][PID:1663970] Checking for cancel request [2026-04-11 08:32:10,287][ INFO][PID:1663970] Checking for cancel request [2026-04-11 08:32:15,288][ INFO][PID:1663970] Checking for cancel request [2026-04-11 08:32:20,289][ INFO][PID:1663970] Checking for cancel request [2026-04-11 08:32:25,290][ INFO][PID:1663970] Checking for cancel request [2026-04-11 08:32:30,291][ INFO][PID:1663970] Checking for cancel request [2026-04-11 08:32:35,292][ INFO][PID:1663970] Checking for cancel request [2026-04-11 08:32:40,293][ INFO][PID:1663970] Checking for cancel request [2026-04-11 08:32:45,294][ INFO][PID:1663970] Checking for cancel request [2026-04-11 08:32:50,295][ INFO][PID:1663970] Checking for cancel request [2026-04-11 08:32:55,296][ INFO][PID:1663970] Checking for cancel request [2026-04-11 08:33:00,297][ INFO][PID:1663970] Checking for cancel request [2026-04-11 08:33:05,297][ INFO][PID:1663970] Checking for cancel request [2026-04-11 08:33:10,298][ INFO][PID:1663970] Checking for cancel request [2026-04-11 08:33:15,299][ INFO][PID:1663970] Checking for cancel request [2026-04-11 08:33:20,300][ INFO][PID:1663970] Checking for cancel request [2026-04-11 08:33:25,301][ INFO][PID:1663970] Checking for cancel request [2026-04-11 08:33:30,302][ INFO][PID:1663970] Checking for cancel request [2026-04-11 08:33:35,303][ INFO][PID:1663970] Checking for cancel request [2026-04-11 08:33:40,304][ INFO][PID:1663970] Checking for cancel request [2026-04-11 08:33:45,305][ INFO][PID:1663970] Checking for cancel request [2026-04-11 08:33:50,306][ INFO][PID:1663970] Checking for cancel request [2026-04-11 08:33:55,307][ INFO][PID:1663970] Checking for cancel request [2026-04-11 08:34:00,307][ INFO][PID:1663970] Checking for cancel request [2026-04-11 08:34:05,308][ INFO][PID:1663970] Checking for cancel request [2026-04-11 08:34:10,309][ INFO][PID:1663970] Checking for cancel request [2026-04-11 08:34:15,310][ INFO][PID:1663970] Checking for cancel request [2026-04-11 08:34:20,311][ INFO][PID:1663970] Checking for cancel request [2026-04-11 08:34:25,312][ INFO][PID:1663970] Checking for cancel request [2026-04-11 08:34:30,313][ INFO][PID:1663970] Checking for cancel request [2026-04-11 08:34:35,314][ INFO][PID:1663970] Checking for cancel request [2026-04-11 08:34:40,315][ INFO][PID:1663970] Checking for cancel request [2026-04-11 08:34:45,316][ INFO][PID:1663970] Checking for cancel request [2026-04-11 08:34:50,317][ INFO][PID:1663970] Checking for cancel request [2026-04-11 08:34:55,318][ INFO][PID:1663970] Checking for cancel request [2026-04-11 08:35:00,319][ INFO][PID:1663970] Checking for cancel request [2026-04-11 08:35:05,320][ INFO][PID:1663970] Checking for cancel request [2026-04-11 08:35:10,321][ INFO][PID:1663970] Checking for cancel request [2026-04-11 08:35:15,322][ INFO][PID:1663970] Checking for cancel request [2026-04-11 08:35:20,323][ INFO][PID:1663970] Checking for cancel request [2026-04-11 08:35:25,324][ INFO][PID:1663970] Checking for cancel request [2026-04-11 08:35:30,325][ INFO][PID:1663970] Checking for cancel request [2026-04-11 08:35:35,326][ INFO][PID:1663970] Checking for cancel request [2026-04-11 08:35:40,327][ INFO][PID:1663970] Checking for cancel request [2026-04-11 08:35:45,328][ INFO][PID:1663970] Checking for cancel request [2026-04-11 08:35:50,328][ INFO][PID:1663970] Checking for cancel request [2026-04-11 08:35:55,329][ INFO][PID:1663970] Checking for cancel request [2026-04-11 08:36:00,330][ INFO][PID:1663970] Checking for cancel request [2026-04-11 08:36:05,331][ INFO][PID:1663970] Checking for cancel request [2026-04-11 08:36:10,332][ INFO][PID:1663970] Checking for cancel request [2026-04-11 08:36:15,333][ INFO][PID:1663970] Checking for cancel request [2026-04-11 08:36:20,334][ INFO][PID:1663970] Checking for cancel request [2026-04-11 08:36:25,335][ INFO][PID:1663970] Checking for cancel request [2026-04-11 08:36:30,335][ INFO][PID:1663970] Checking for cancel request [2026-04-11 08:36:35,336][ INFO][PID:1663970] Checking for cancel request [2026-04-11 08:36:40,337][ INFO][PID:1663970] Checking for cancel request [2026-04-11 08:36:45,338][ INFO][PID:1663970] Checking for cancel request [2026-04-11 08:36:50,339][ INFO][PID:1663970] Checking for cancel request [2026-04-11 08:36:55,340][ INFO][PID:1663970] Checking for cancel request [2026-04-11 08:37:00,341][ INFO][PID:1663970] Checking for cancel request [2026-04-11 08:37:05,342][ INFO][PID:1663970] Checking for cancel request [2026-04-11 08:37:10,343][ INFO][PID:1663970] Checking for cancel request [2026-04-11 08:37:15,343][ INFO][PID:1663970] Checking for cancel request [2026-04-11 08:37:20,344][ INFO][PID:1663970] Checking for cancel request [2026-04-11 08:37:25,345][ INFO][PID:1663970] Checking for cancel request [2026-04-11 08:37:28,335][ INFO][PID:1663970] Downloading results from builder [2026-04-11 08:37:28,335][ INFO][PID:1663970] rsyncing of mockbuilder@13.223.175.195:/var/lib/copr-rpmbuild/results/ to /var/lib/copr/public_html/results/lizardbyte/pulls:pr:4846/srpm-builds/10313546 started [2026-04-11 08:37:28,336][ INFO][PID:1663970] Popen command started: /usr/bin/rsync -rltDvH --chmod=D755,F644 -e 'ssh -F /home/copr/.ssh/config' mockbuilder@13.223.175.195:/var/lib/copr-rpmbuild/results/ /var/lib/copr/public_html/results/lizardbyte/pulls:pr:4846/srpm-builds/10313546/ &> /var/lib/copr/public_html/results/lizardbyte/pulls:pr:4846/srpm-builds/10313546/build-10313546.rsync.log [2026-04-11 08:37:30,813][ INFO][PID:1663970] rsyncing finished. [2026-04-11 08:37:30,814][ INFO][PID:1663970] Releasing VM back to pool [2026-04-11 08:37:30,822][ INFO][PID:1663970] Searching for 'success' file in resultdir [2026-04-11 08:37:30,823][ INFO][PID:1663970] Getting build details [2026-04-11 08:37:30,823][ INFO][PID:1663970] Retrieving SRPM info from /var/lib/copr/public_html/results/lizardbyte/pulls:pr:4846/srpm-builds/10313546 [2026-04-11 08:37:30,824][ INFO][PID:1663970] SRPM URL: https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:4846/srpm-builds/10313546/Sunshine-0.0.4846-1.src.rpm [2026-04-11 08:37:30,824][ INFO][PID:1663970] build details: {'srpm_url': 'https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:4846/srpm-builds/10313546/Sunshine-0.0.4846-1.src.rpm', 'pkg_name': 'Sunshine', 'pkg_version': '0.0.4846-1'} [2026-04-11 08:37:30,824][ INFO][PID:1663970] Finished build: id=10313546 failed=False timeout=108000 destdir=/var/lib/copr/public_html/results/lizardbyte/pulls:pr:4846 chroot=srpm-builds [2026-04-11 08:37:30,826][ INFO][PID:1663970] Worker succeeded build, took 416.56991839408875 [2026-04-11 08:37:30,827][ INFO][PID:1663970] 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:4846", "submitter": null, "ended_on": 1775896650.8265593, "started_on": 1775896234.256641, "submitted_on": null, "status": 1, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10313546", "build_id": 10313546, "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\": \"tmp9zciead3\", \"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:4846/srpm-builds/10313546/Sunshine-0.0.4846-1.src.rpm", "uses_devel_repo": null, "sandbox": "lizardbyte/pulls--e0c1a124-7338-4d71-b699-004263ed74be", "results": { "name": "Sunshine", "epoch": null, "version": "0.0.4846", "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:4846", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:4846", "result_dir": "10313546", "built_packages": "", "tags": [ "arch_x86_64" ], "pkg_version": "0.0.4846-1", "id": 10313546, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2026-04-11 08:37:30,875][ INFO][PID:1663970] Sending fedora-messaging bus message in build.end [2026-04-11 08:37:30,902][ INFO][PID:1663970] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:4846/srpm-builds/10313546/builder-live.log by gzip [2026-04-11 08:37:30,903][ INFO][PID:1663970] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:4846/srpm-builds/10313546/builder-live.log' as PID 1687171 [2026-04-11 08:37:30,909][ INFO][PID:1663970] Finished after 0 seconds with exit code 0 (gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:4846/srpm-builds/10313546/builder-live.log) [2026-04-11 08:37:30,910][ INFO][PID:1663970] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:4846/srpm-builds/10313546/backend.log by gzip [2026-04-11 08:37:30,911][ INFO][PID:1663970] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:4846/srpm-builds/10313546/backend.log' as PID 1687172