[2026-06-15 15:49:39,964][ INFO][PID:3029326] Marking build as starting [2026-06-15 15:49:40,006][ INFO][PID:3029326] Checking for cancel request [2026-06-15 15:49:40,008][ INFO][PID:3029326] VM allocation process starts [2026-06-15 15:49:40,022][ INFO][PID:3029326] Trying to allocate VM: ResallocHost, ticket_id=3450602, requested_tags=['arch_x86_64', 'copr_builder'] [2026-06-15 15:49:43,037][ INFO][PID:3029326] Allocated host ResallocHost, ticket_id=3450602, hostname=3.89.135.69, name=aws_x86_64_reserved_prod_12138670_20260615_154732, requested_tags=['arch_x86_64', 'copr_builder'] [2026-06-15 15:49:43,038][ INFO][PID:3029326] Allocating ssh connection to builder [2026-06-15 15:49:43,038][ INFO][PID:3029326] Checking that builder machine is OK [2026-06-15 15:49:43,365][ INFO][PID:3029326] Installed copr-rpmbuild version: 1.8 [2026-06-15 15:49:43,366][ INFO][PID:3029326] Running remote command: copr-builder-ready srpm-builds [2026-06-15 15:49:43,589][ INFO][PID:3029326] Red Hat subscription not needed for srpm-builds Builder is ready to be used [2026-06-15 15:49:43,591][ INFO][PID:3029326] Filling build.info file with builder info [2026-06-15 15:49:43,592][ INFO][PID:3029326] Checking for cancel request [2026-06-15 15:49:43,593][ INFO][PID:3029326] 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:5295", "submitter": null, "ended_on": null, "started_on": 1781538583.5934014, "submitted_on": null, "status": 3, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10605763", "build_id": 10605763, "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\": \"tmpf34ba39t\", \"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--dd7e4153-8eb1-4071-884e-71198e25bea8", "results": null, "appstream": false, "allow_user_ssh": null, "ssh_public_keys": null, "storage": null, "repos": [], "background": true, "distributions_in_build": [ "fedora-42", "fedora-43", "fedora-44", "fedora-rawhide", "opensuse-leap-15.6" ], "distributions_in_project": [ "fedora-42", "fedora-43", "fedora-44", "fedora-rawhide", "opensuse-leap-15.6" ], "destdir": "/var/lib/copr/public_html/results/lizardbyte/pulls:pr:5295", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5295", "result_dir": "10605763", "built_packages": "", "tags": [ "arch_x86_64" ], "rpmeta_prediction": null, "id": 10605763, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2026-06-15 15:49:43,630][ INFO][PID:3029326] Sending fedora-messaging bus message in build.start [2026-06-15 15:49:44,263][ INFO][PID:3029326] Sending fedora-messaging bus message in chroot.start [2026-06-15 15:49:44,307][ INFO][PID:3029326] Starting remote build: copr-rpmbuild --verbose --drop-resultdir --srpm --task-url https://copr.fedorainfracloud.org/backend/get-srpm-build-task/10605763 --detached [2026-06-15 15:49:45,032][ INFO][PID:3029326] The copr-rpmbuild seems started, per: stdout: stderr: Warning: Permanently added '3.89.135.69' (ED25519) to the list of known hosts. [2026-06-15 15:49:45,043][ INFO][PID:3029326] Downloading the builder-live.log file, attempt 1 [2026-06-15 15:49:45,045][ INFO][PID:3029326] Popen command started: ssh -F /home/copr/.ssh/config mockbuilder@3.89.135.69 copr-rpmbuild-log [2026-06-15 15:49:50,050][ INFO][PID:3029326] Periodic builder liveness probe: alive [2026-06-15 15:49:50,112][ INFO][PID:3029326] Checking for cancel request [2026-06-15 15:49:55,114][ INFO][PID:3029326] Checking for cancel request [2026-06-15 15:50:00,119][ INFO][PID:3029326] Checking for cancel request [2026-06-15 15:50:05,320][ INFO][PID:3029326] Checking for cancel request [2026-06-15 15:50:10,322][ INFO][PID:3029326] Checking for cancel request [2026-06-15 15:50:15,324][ INFO][PID:3029326] Checking for cancel request [2026-06-15 15:50:20,326][ INFO][PID:3029326] Checking for cancel request [2026-06-15 15:50:25,327][ INFO][PID:3029326] Checking for cancel request [2026-06-15 15:50:30,329][ INFO][PID:3029326] Checking for cancel request [2026-06-15 15:50:35,331][ INFO][PID:3029326] Checking for cancel request [2026-06-15 15:50:40,333][ INFO][PID:3029326] Checking for cancel request [2026-06-15 15:50:45,340][ INFO][PID:3029326] Checking for cancel request [2026-06-15 15:50:50,457][ INFO][PID:3029326] Checking for cancel request [2026-06-15 15:50:55,459][ INFO][PID:3029326] Checking for cancel request [2026-06-15 15:51:00,461][ INFO][PID:3029326] Checking for cancel request [2026-06-15 15:51:05,463][ INFO][PID:3029326] Checking for cancel request [2026-06-15 15:51:10,662][ INFO][PID:3029326] Checking for cancel request [2026-06-15 15:51:15,705][ INFO][PID:3029326] Checking for cancel request [2026-06-15 15:51:20,707][ INFO][PID:3029326] Checking for cancel request [2026-06-15 15:51:25,851][ INFO][PID:3029326] Checking for cancel request [2026-06-15 15:51:30,853][ INFO][PID:3029326] Checking for cancel request [2026-06-15 15:51:35,905][ INFO][PID:3029326] Checking for cancel request [2026-06-15 15:51:40,907][ INFO][PID:3029326] Checking for cancel request [2026-06-15 15:51:46,341][ INFO][PID:3029326] Checking for cancel request [2026-06-15 15:51:51,343][ INFO][PID:3029326] Checking for cancel request [2026-06-15 15:51:56,345][ INFO][PID:3029326] Checking for cancel request [2026-06-15 15:52:01,346][ INFO][PID:3029326] Checking for cancel request [2026-06-15 15:52:06,348][ INFO][PID:3029326] Checking for cancel request [2026-06-15 15:52:11,349][ INFO][PID:3029326] Checking for cancel request [2026-06-15 15:52:16,351][ INFO][PID:3029326] Checking for cancel request [2026-06-15 15:52:21,353][ INFO][PID:3029326] Checking for cancel request [2026-06-15 15:52:26,356][ INFO][PID:3029326] Checking for cancel request [2026-06-15 15:52:31,361][ INFO][PID:3029326] Checking for cancel request [2026-06-15 15:52:36,364][ INFO][PID:3029326] Checking for cancel request [2026-06-15 15:52:41,367][ INFO][PID:3029326] Checking for cancel request [2026-06-15 15:52:46,370][ INFO][PID:3029326] Checking for cancel request [2026-06-15 15:52:51,373][ INFO][PID:3029326] Checking for cancel request [2026-06-15 15:52:56,375][ INFO][PID:3029326] Checking for cancel request [2026-06-15 15:53:01,378][ INFO][PID:3029326] Checking for cancel request [2026-06-15 15:53:06,381][ INFO][PID:3029326] Checking for cancel request [2026-06-15 15:53:11,382][ INFO][PID:3029326] Checking for cancel request [2026-06-15 15:53:16,383][ INFO][PID:3029326] Checking for cancel request [2026-06-15 15:53:21,384][ INFO][PID:3029326] Checking for cancel request [2026-06-15 15:53:26,386][ INFO][PID:3029326] Checking for cancel request [2026-06-15 15:53:31,388][ INFO][PID:3029326] Checking for cancel request [2026-06-15 15:53:36,389][ INFO][PID:3029326] Checking for cancel request [2026-06-15 15:53:41,391][ INFO][PID:3029326] Checking for cancel request [2026-06-15 15:53:46,392][ INFO][PID:3029326] Checking for cancel request [2026-06-15 15:53:51,393][ INFO][PID:3029326] Checking for cancel request [2026-06-15 15:53:56,394][ INFO][PID:3029326] Checking for cancel request [2026-06-15 15:54:01,396][ INFO][PID:3029326] Checking for cancel request [2026-06-15 15:54:06,398][ INFO][PID:3029326] Checking for cancel request [2026-06-15 15:54:11,399][ INFO][PID:3029326] Checking for cancel request [2026-06-15 15:54:16,402][ INFO][PID:3029326] Checking for cancel request [2026-06-15 15:54:21,403][ INFO][PID:3029326] Checking for cancel request [2026-06-15 15:54:26,404][ INFO][PID:3029326] Checking for cancel request [2026-06-15 15:54:31,516][ INFO][PID:3029326] Checking for cancel request [2026-06-15 15:54:36,519][ INFO][PID:3029326] Checking for cancel request [2026-06-15 15:54:41,520][ INFO][PID:3029326] Checking for cancel request [2026-06-15 15:54:46,521][ INFO][PID:3029326] Checking for cancel request [2026-06-15 15:54:51,522][ INFO][PID:3029326] Checking for cancel request [2026-06-15 15:54:56,524][ INFO][PID:3029326] Checking for cancel request [2026-06-15 15:55:01,525][ INFO][PID:3029326] Checking for cancel request [2026-06-15 15:55:06,620][ INFO][PID:3029326] Checking for cancel request [2026-06-15 15:55:11,622][ INFO][PID:3029326] Checking for cancel request [2026-06-15 15:55:16,624][ INFO][PID:3029326] Checking for cancel request [2026-06-15 15:55:21,625][ INFO][PID:3029326] Checking for cancel request [2026-06-15 15:55:26,740][ INFO][PID:3029326] Checking for cancel request [2026-06-15 15:55:31,749][ INFO][PID:3029326] Checking for cancel request [2026-06-15 15:55:36,751][ INFO][PID:3029326] Checking for cancel request [2026-06-15 15:55:41,756][ INFO][PID:3029326] Checking for cancel request [2026-06-15 15:55:46,758][ INFO][PID:3029326] Checking for cancel request [2026-06-15 15:55:51,766][ INFO][PID:3029326] Checking for cancel request [2026-06-15 15:55:56,773][ INFO][PID:3029326] Checking for cancel request [2026-06-15 15:56:01,775][ INFO][PID:3029326] Checking for cancel request [2026-06-15 15:56:06,776][ INFO][PID:3029326] Checking for cancel request [2026-06-15 15:56:11,778][ INFO][PID:3029326] Checking for cancel request [2026-06-15 15:56:16,780][ INFO][PID:3029326] Checking for cancel request [2026-06-15 15:56:21,784][ INFO][PID:3029326] Checking for cancel request [2026-06-15 15:56:26,786][ INFO][PID:3029326] Checking for cancel request [2026-06-15 15:56:31,787][ INFO][PID:3029326] Checking for cancel request [2026-06-15 15:56:36,789][ INFO][PID:3029326] Checking for cancel request [2026-06-15 15:56:41,790][ INFO][PID:3029326] Checking for cancel request [2026-06-15 15:56:46,792][ INFO][PID:3029326] Checking for cancel request [2026-06-15 15:56:51,794][ INFO][PID:3029326] Checking for cancel request [2026-06-15 15:56:56,821][ INFO][PID:3029326] Checking for cancel request [2026-06-15 15:57:01,828][ INFO][PID:3029326] Checking for cancel request [2026-06-15 15:57:06,837][ INFO][PID:3029326] Checking for cancel request [2026-06-15 15:57:11,874][ INFO][PID:3029326] Checking for cancel request [2026-06-15 15:57:17,006][ INFO][PID:3029326] Checking for cancel request [2026-06-15 15:57:22,008][ INFO][PID:3029326] Checking for cancel request [2026-06-15 15:57:27,009][ INFO][PID:3029326] Checking for cancel request [2026-06-15 15:57:32,018][ INFO][PID:3029326] Checking for cancel request [2026-06-15 15:57:37,050][ INFO][PID:3029326] Checking for cancel request [2026-06-15 15:57:42,226][ INFO][PID:3029326] Checking for cancel request [2026-06-15 15:57:47,347][ INFO][PID:3029326] Checking for cancel request [2026-06-15 15:57:52,349][ INFO][PID:3029326] Checking for cancel request [2026-06-15 15:57:57,351][ INFO][PID:3029326] Checking for cancel request [2026-06-15 15:58:02,352][ INFO][PID:3029326] Checking for cancel request [2026-06-15 15:58:07,354][ INFO][PID:3029326] Checking for cancel request [2026-06-15 15:58:12,358][ INFO][PID:3029326] Checking for cancel request [2026-06-15 15:58:17,361][ INFO][PID:3029326] Checking for cancel request [2026-06-15 15:58:22,365][ INFO][PID:3029326] Checking for cancel request [2026-06-15 15:58:27,366][ INFO][PID:3029326] Checking for cancel request [2026-06-15 15:58:32,369][ INFO][PID:3029326] Checking for cancel request [2026-06-15 15:58:37,371][ INFO][PID:3029326] Checking for cancel request [2026-06-15 15:58:42,376][ INFO][PID:3029326] Checking for cancel request [2026-06-15 15:58:47,377][ INFO][PID:3029326] Checking for cancel request [2026-06-15 15:58:52,379][ INFO][PID:3029326] Checking for cancel request [2026-06-15 15:58:57,380][ INFO][PID:3029326] Checking for cancel request [2026-06-15 15:59:02,191][ INFO][PID:3029326] Downloading results from builder [2026-06-15 15:59:02,226][ INFO][PID:3029326] rsyncing of mockbuilder@3.89.135.69:/var/lib/copr-rpmbuild/results/ to /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5295/srpm-builds/10605763 started [2026-06-15 15:59:02,302][ INFO][PID:3029326] Popen command started: /usr/bin/rsync -rltDvH --chmod=D755,F644 -e 'ssh -F /home/copr/.ssh/config' mockbuilder@3.89.135.69:/var/lib/copr-rpmbuild/results/ /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5295/srpm-builds/10605763/ &> /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5295/srpm-builds/10605763/build-10605763.rsync.log [2026-06-15 15:59:06,573][ INFO][PID:3029326] rsyncing finished. [2026-06-15 15:59:06,577][ INFO][PID:3029326] VM Release request [2026-06-15 15:59:06,805][ INFO][PID:3029326] Searching for 'success' file in resultdir [2026-06-15 15:59:06,865][ INFO][PID:3029326] Getting build details [2026-06-15 15:59:06,868][ INFO][PID:3029326] Retrieving SRPM info from /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5295/srpm-builds/10605763 [2026-06-15 15:59:06,946][ INFO][PID:3029326] SRPM URL: https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5295/srpm-builds/10605763/Sunshine-0.0.5295-1.src.rpm [2026-06-15 15:59:06,950][ INFO][PID:3029326] build details: {'srpm_url': 'https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5295/srpm-builds/10605763/Sunshine-0.0.5295-1.src.rpm', 'pkg_name': 'Sunshine', 'pkg_version': '0.0.5295-1'} [2026-06-15 15:59:06,970][ INFO][PID:3029326] Finished build: id=10605763 failed=False timeout=108000 destdir=/var/lib/copr/public_html/results/lizardbyte/pulls:pr:5295 chroot=srpm-builds [2026-06-15 15:59:07,081][ INFO][PID:3029326] Worker succeeded build, took 563.4871423244476 [2026-06-15 15:59:07,100][ INFO][PID:3029326] 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:5295", "submitter": null, "ended_on": 1781539147.0805438, "started_on": 1781538583.5934014, "submitted_on": null, "status": 1, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10605763", "build_id": 10605763, "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\": \"tmpf34ba39t\", \"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:5295/srpm-builds/10605763/Sunshine-0.0.5295-1.src.rpm", "uses_devel_repo": null, "sandbox": "lizardbyte/pulls--dd7e4153-8eb1-4071-884e-71198e25bea8", "results": { "architecture_specific_tags": { "fedora-42": {}, "fedora-43": {}, "fedora-44": {}, "fedora-rawhide": {}, "opensuse-leap-15.6": {} }, "name": "Sunshine", "epoch": null, "version": "0.0.5295", "release": "1" }, "appstream": false, "allow_user_ssh": null, "ssh_public_keys": null, "storage": null, "repos": [], "background": true, "distributions_in_build": [ "fedora-42", "fedora-43", "fedora-44", "fedora-rawhide", "opensuse-leap-15.6" ], "distributions_in_project": [ "fedora-42", "fedora-43", "fedora-44", "fedora-rawhide", "opensuse-leap-15.6" ], "destdir": "/var/lib/copr/public_html/results/lizardbyte/pulls:pr:5295", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5295", "result_dir": "10605763", "built_packages": "", "tags": [ "arch_x86_64" ], "rpmeta_prediction": null, "pkg_version": "0.0.5295-1", "id": 10605763, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2026-06-15 15:59:07,945][ INFO][PID:3029326] Sending fedora-messaging bus message in build.end [2026-06-15 15:59:08,448][ INFO][PID:3029326] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5295/srpm-builds/10605763/builder-live.log by gzip [2026-06-15 15:59:08,469][ INFO][PID:3029326] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5295/srpm-builds/10605763/builder-live.log' as PID 3071065 [2026-06-15 15:59:08,538][ INFO][PID:3029326] Finished after 0 seconds with exit code 0 (gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5295/srpm-builds/10605763/builder-live.log) [2026-06-15 15:59:08,543][ INFO][PID:3029326] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5295/srpm-builds/10605763/backend.log by gzip [2026-06-15 15:59:08,545][ INFO][PID:3029326] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5295/srpm-builds/10605763/backend.log' as PID 3071066