[2026-06-28 15:04:47,977][ INFO][PID:3239452] Marking build as starting [2026-06-28 15:04:48,031][ INFO][PID:3239452] Checking for cancel request [2026-06-28 15:04:48,032][ INFO][PID:3239452] VM allocation process starts [2026-06-28 15:04:48,044][ INFO][PID:3239452] Trying to allocate VM: ResallocHost, ticket_id=3654281, requested_tags=['arch_x86_64', 'copr_builder'] [2026-06-28 15:04:51,114][ INFO][PID:3239452] Allocated host ResallocHost, ticket_id=3654281, hostname=98.92.26.216, name=aws_x86_64_reserved_prod_12763625_20260628_144127, requested_tags=['arch_x86_64', 'copr_builder'] [2026-06-28 15:04:51,114][ INFO][PID:3239452] Allocating ssh connection to builder [2026-06-28 15:04:51,115][ INFO][PID:3239452] Checking that builder machine is OK [2026-06-28 15:04:51,410][ INFO][PID:3239452] Installed copr-rpmbuild version: 1.8 [2026-06-28 15:04:51,410][ INFO][PID:3239452] Running remote command: copr-builder-ready srpm-builds [2026-06-28 15:04:51,590][ INFO][PID:3239452] Red Hat subscription not needed for srpm-builds Builder is ready to be used [2026-06-28 15:04:51,590][ INFO][PID:3239452] Filling build.info file with builder info [2026-06-28 15:04:51,591][ INFO][PID:3239452] Checking for cancel request [2026-06-28 15:04:51,592][ INFO][PID:3239452] 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:5353", "submitter": null, "ended_on": null, "started_on": 1782659091.592207, "submitted_on": null, "status": 3, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10657349", "build_id": 10657349, "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\": \"tmpw658wbtg\", \"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--322333d5-e7ff-47e5-b027-73d64c6beceb", "results": null, "appstream": false, "allow_user_ssh": null, "ssh_public_keys": null, "storage": null, "repos": [], "background": true, "distributions_in_build": [ "fedora-43", "fedora-44", "fedora-rawhide", "opensuse-leap-15.6", "opensuse-tumbleweed" ], "distributions_in_project": [ "fedora-43", "fedora-44", "fedora-rawhide", "opensuse-leap-15.6", "opensuse-tumbleweed" ], "destdir": "/var/lib/copr/public_html/results/lizardbyte/pulls:pr:5353", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5353", "result_dir": "10657349", "built_packages": "", "tags": [ "arch_x86_64" ], "rpmeta_prediction": null, "id": 10657349, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2026-06-28 15:04:51,649][ INFO][PID:3239452] Sending fedora-messaging bus message in build.start [2026-06-28 15:04:52,087][ INFO][PID:3239452] Sending fedora-messaging bus message in chroot.start [2026-06-28 15:04:52,113][ INFO][PID:3239452] Starting remote build: copr-rpmbuild --verbose --drop-resultdir --srpm --task-url https://copr.fedorainfracloud.org/backend/get-srpm-build-task/10657349 --detached [2026-06-28 15:04:52,580][ INFO][PID:3239452] The copr-rpmbuild seems started, per: stdout: stderr: Warning: Permanently added '98.92.26.216' (ED25519) to the list of known hosts. [2026-06-28 15:04:52,581][ INFO][PID:3239452] Downloading the builder-live.log file, attempt 1 [2026-06-28 15:04:52,583][ INFO][PID:3239452] Popen command started: ssh -F /home/copr/.ssh/config mockbuilder@98.92.26.216 copr-rpmbuild-log [2026-06-28 15:04:57,587][ INFO][PID:3239452] Periodic builder liveness probe: alive [2026-06-28 15:04:57,588][ INFO][PID:3239452] Checking for cancel request [2026-06-28 15:05:02,589][ INFO][PID:3239452] Checking for cancel request [2026-06-28 15:05:07,591][ INFO][PID:3239452] Checking for cancel request [2026-06-28 15:05:12,593][ INFO][PID:3239452] Checking for cancel request [2026-06-28 15:05:17,594][ INFO][PID:3239452] Checking for cancel request [2026-06-28 15:05:22,619][ INFO][PID:3239452] Checking for cancel request [2026-06-28 15:05:27,620][ INFO][PID:3239452] Checking for cancel request [2026-06-28 15:05:32,621][ INFO][PID:3239452] Checking for cancel request [2026-06-28 15:05:37,623][ INFO][PID:3239452] Checking for cancel request [2026-06-28 15:05:42,624][ INFO][PID:3239452] Checking for cancel request [2026-06-28 15:05:47,625][ INFO][PID:3239452] Checking for cancel request [2026-06-28 15:05:52,629][ INFO][PID:3239452] Checking for cancel request [2026-06-28 15:05:58,021][ INFO][PID:3239452] Checking for cancel request [2026-06-28 15:06:03,022][ INFO][PID:3239452] Checking for cancel request [2026-06-28 15:06:08,023][ INFO][PID:3239452] Checking for cancel request [2026-06-28 15:06:13,026][ INFO][PID:3239452] Checking for cancel request [2026-06-28 15:06:18,028][ INFO][PID:3239452] Checking for cancel request [2026-06-28 15:06:23,029][ INFO][PID:3239452] Checking for cancel request [2026-06-28 15:06:28,030][ INFO][PID:3239452] Checking for cancel request [2026-06-28 15:06:33,035][ INFO][PID:3239452] Checking for cancel request [2026-06-28 15:06:38,037][ INFO][PID:3239452] Checking for cancel request [2026-06-28 15:06:43,038][ INFO][PID:3239452] Checking for cancel request [2026-06-28 15:06:48,039][ INFO][PID:3239452] Checking for cancel request [2026-06-28 15:06:53,041][ INFO][PID:3239452] Checking for cancel request [2026-06-28 15:06:58,042][ INFO][PID:3239452] Checking for cancel request [2026-06-28 15:07:03,043][ INFO][PID:3239452] Checking for cancel request [2026-06-28 15:07:08,044][ INFO][PID:3239452] Checking for cancel request [2026-06-28 15:07:13,256][ INFO][PID:3239452] Checking for cancel request [2026-06-28 15:07:18,257][ INFO][PID:3239452] Checking for cancel request [2026-06-28 15:07:23,259][ INFO][PID:3239452] Checking for cancel request [2026-06-28 15:07:28,261][ INFO][PID:3239452] Checking for cancel request [2026-06-28 15:07:33,262][ INFO][PID:3239452] Checking for cancel request [2026-06-28 15:07:38,263][ INFO][PID:3239452] Checking for cancel request [2026-06-28 15:07:43,265][ INFO][PID:3239452] Checking for cancel request [2026-06-28 15:07:48,266][ INFO][PID:3239452] Checking for cancel request [2026-06-28 15:07:53,268][ INFO][PID:3239452] Checking for cancel request [2026-06-28 15:07:58,269][ INFO][PID:3239452] Checking for cancel request [2026-06-28 15:08:03,271][ INFO][PID:3239452] Checking for cancel request [2026-06-28 15:08:08,272][ INFO][PID:3239452] Checking for cancel request [2026-06-28 15:08:13,273][ INFO][PID:3239452] Checking for cancel request [2026-06-28 15:08:18,275][ INFO][PID:3239452] Checking for cancel request [2026-06-28 15:08:23,276][ INFO][PID:3239452] Checking for cancel request [2026-06-28 15:08:28,277][ INFO][PID:3239452] Checking for cancel request [2026-06-28 15:08:33,279][ INFO][PID:3239452] Checking for cancel request [2026-06-28 15:08:38,281][ INFO][PID:3239452] Checking for cancel request [2026-06-28 15:08:43,282][ INFO][PID:3239452] Checking for cancel request [2026-06-28 15:08:48,284][ INFO][PID:3239452] Checking for cancel request [2026-06-28 15:08:53,285][ INFO][PID:3239452] Checking for cancel request [2026-06-28 15:08:58,288][ INFO][PID:3239452] Checking for cancel request [2026-06-28 15:09:03,289][ INFO][PID:3239452] Checking for cancel request [2026-06-28 15:09:08,291][ INFO][PID:3239452] Checking for cancel request [2026-06-28 15:09:13,292][ INFO][PID:3239452] Checking for cancel request [2026-06-28 15:09:18,294][ INFO][PID:3239452] Checking for cancel request [2026-06-28 15:09:23,296][ INFO][PID:3239452] Checking for cancel request [2026-06-28 15:09:28,298][ INFO][PID:3239452] Checking for cancel request [2026-06-28 15:09:33,299][ INFO][PID:3239452] Checking for cancel request [2026-06-28 15:09:38,301][ INFO][PID:3239452] Checking for cancel request [2026-06-28 15:09:43,303][ INFO][PID:3239452] Checking for cancel request [2026-06-28 15:09:48,305][ INFO][PID:3239452] Checking for cancel request [2026-06-28 15:09:53,307][ INFO][PID:3239452] Checking for cancel request [2026-06-28 15:09:58,309][ INFO][PID:3239452] Checking for cancel request [2026-06-28 15:10:03,310][ INFO][PID:3239452] Checking for cancel request [2026-06-28 15:10:08,312][ INFO][PID:3239452] Checking for cancel request [2026-06-28 15:10:13,313][ INFO][PID:3239452] Checking for cancel request [2026-06-28 15:10:18,315][ INFO][PID:3239452] Checking for cancel request [2026-06-28 15:10:23,316][ INFO][PID:3239452] Checking for cancel request [2026-06-28 15:10:28,319][ INFO][PID:3239452] Checking for cancel request [2026-06-28 15:10:33,320][ INFO][PID:3239452] Checking for cancel request [2026-06-28 15:10:38,322][ INFO][PID:3239452] Checking for cancel request [2026-06-28 15:10:43,324][ INFO][PID:3239452] Checking for cancel request [2026-06-28 15:10:48,325][ INFO][PID:3239452] Checking for cancel request [2026-06-28 15:10:53,326][ INFO][PID:3239452] Checking for cancel request [2026-06-28 15:10:58,328][ INFO][PID:3239452] Checking for cancel request [2026-06-28 15:11:03,329][ INFO][PID:3239452] Checking for cancel request [2026-06-28 15:11:08,330][ INFO][PID:3239452] Checking for cancel request [2026-06-28 15:11:13,331][ INFO][PID:3239452] Checking for cancel request [2026-06-28 15:11:18,333][ INFO][PID:3239452] Checking for cancel request [2026-06-28 15:11:23,334][ INFO][PID:3239452] Checking for cancel request [2026-06-28 15:11:28,336][ INFO][PID:3239452] Checking for cancel request [2026-06-28 15:11:33,337][ INFO][PID:3239452] Checking for cancel request [2026-06-28 15:11:38,338][ INFO][PID:3239452] Checking for cancel request [2026-06-28 15:11:43,339][ INFO][PID:3239452] Checking for cancel request [2026-06-28 15:11:48,341][ INFO][PID:3239452] Checking for cancel request [2026-06-28 15:11:53,342][ INFO][PID:3239452] Checking for cancel request [2026-06-28 15:11:58,343][ INFO][PID:3239452] Checking for cancel request [2026-06-28 15:12:03,344][ INFO][PID:3239452] Checking for cancel request [2026-06-28 15:12:08,346][ INFO][PID:3239452] Checking for cancel request [2026-06-28 15:12:13,347][ INFO][PID:3239452] Checking for cancel request [2026-06-28 15:12:18,348][ INFO][PID:3239452] Checking for cancel request [2026-06-28 15:12:23,349][ INFO][PID:3239452] Checking for cancel request [2026-06-28 15:12:28,351][ INFO][PID:3239452] Checking for cancel request [2026-06-28 15:12:33,352][ INFO][PID:3239452] Checking for cancel request [2026-06-28 15:12:38,353][ INFO][PID:3239452] Checking for cancel request [2026-06-28 15:12:43,354][ INFO][PID:3239452] Checking for cancel request [2026-06-28 15:12:48,356][ INFO][PID:3239452] Checking for cancel request [2026-06-28 15:12:53,357][ INFO][PID:3239452] Checking for cancel request [2026-06-28 15:12:58,358][ INFO][PID:3239452] Checking for cancel request [2026-06-28 15:13:03,503][ INFO][PID:3239452] Checking for cancel request [2026-06-28 15:13:08,505][ INFO][PID:3239452] Checking for cancel request [2026-06-28 15:13:13,506][ INFO][PID:3239452] Checking for cancel request [2026-06-28 15:13:18,507][ INFO][PID:3239452] Checking for cancel request [2026-06-28 15:13:23,508][ INFO][PID:3239452] Checking for cancel request [2026-06-28 15:13:28,509][ INFO][PID:3239452] Checking for cancel request [2026-06-28 15:13:33,511][ INFO][PID:3239452] Checking for cancel request [2026-06-28 15:13:38,512][ INFO][PID:3239452] Checking for cancel request [2026-06-28 15:13:43,513][ INFO][PID:3239452] Checking for cancel request [2026-06-28 15:13:48,514][ INFO][PID:3239452] Checking for cancel request [2026-06-28 15:13:53,516][ INFO][PID:3239452] Checking for cancel request [2026-06-28 15:13:58,517][ INFO][PID:3239452] Checking for cancel request [2026-06-28 15:14:03,518][ INFO][PID:3239452] Checking for cancel request [2026-06-28 15:14:04,707][ INFO][PID:3239452] Downloading results from builder [2026-06-28 15:14:04,708][ INFO][PID:3239452] rsyncing of mockbuilder@98.92.26.216:/var/lib/copr-rpmbuild/results/ to /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5353/srpm-builds/10657349 started [2026-06-28 15:14:04,709][ INFO][PID:3239452] Popen command started: /usr/bin/rsync -rltDvH --chmod=D755,F644 -e 'ssh -F /home/copr/.ssh/config' mockbuilder@98.92.26.216:/var/lib/copr-rpmbuild/results/ /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5353/srpm-builds/10657349/ &> /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5353/srpm-builds/10657349/build-10657349.rsync.log [2026-06-28 15:14:09,275][ INFO][PID:3239452] rsyncing finished. [2026-06-28 15:14:09,275][ INFO][PID:3239452] VM Release request [2026-06-28 15:14:09,284][ INFO][PID:3239452] Searching for 'success' file in resultdir [2026-06-28 15:14:09,286][ INFO][PID:3239452] Getting build details [2026-06-28 15:14:09,286][ INFO][PID:3239452] Retrieving SRPM info from /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5353/srpm-builds/10657349 [2026-06-28 15:14:09,287][ INFO][PID:3239452] SRPM URL: https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5353/srpm-builds/10657349/Sunshine-0.0.5353-1.src.rpm [2026-06-28 15:14:09,288][ INFO][PID:3239452] build details: {'srpm_url': 'https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5353/srpm-builds/10657349/Sunshine-0.0.5353-1.src.rpm', 'pkg_name': 'Sunshine', 'pkg_version': '0.0.5353-1'} [2026-06-28 15:14:09,288][ INFO][PID:3239452] Finished build: id=10657349 failed=False timeout=108000 destdir=/var/lib/copr/public_html/results/lizardbyte/pulls:pr:5353 chroot=srpm-builds [2026-06-28 15:14:09,290][ INFO][PID:3239452] Worker succeeded build, took 557.6985862255096 [2026-06-28 15:14:09,291][ INFO][PID:3239452] 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:5353", "submitter": null, "ended_on": 1782659649.2907932, "started_on": 1782659091.592207, "submitted_on": null, "status": 1, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10657349", "build_id": 10657349, "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\": \"tmpw658wbtg\", \"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:5353/srpm-builds/10657349/Sunshine-0.0.5353-1.src.rpm", "uses_devel_repo": null, "sandbox": "lizardbyte/pulls--322333d5-e7ff-47e5-b027-73d64c6beceb", "results": { "architecture_specific_tags": { "fedora-43": {}, "fedora-44": {}, "fedora-rawhide": {}, "opensuse-leap-15.6": {}, "opensuse-tumbleweed": {} }, "name": "Sunshine", "epoch": null, "version": "0.0.5353", "release": "1" }, "appstream": false, "allow_user_ssh": null, "ssh_public_keys": null, "storage": null, "repos": [], "background": true, "distributions_in_build": [ "fedora-43", "fedora-44", "fedora-rawhide", "opensuse-leap-15.6", "opensuse-tumbleweed" ], "distributions_in_project": [ "fedora-43", "fedora-44", "fedora-rawhide", "opensuse-leap-15.6", "opensuse-tumbleweed" ], "destdir": "/var/lib/copr/public_html/results/lizardbyte/pulls:pr:5353", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5353", "result_dir": "10657349", "built_packages": "", "tags": [ "arch_x86_64" ], "rpmeta_prediction": null, "pkg_version": "0.0.5353-1", "id": 10657349, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2026-06-28 15:14:09,352][ INFO][PID:3239452] Sending fedora-messaging bus message in build.end [2026-06-28 15:14:09,379][ INFO][PID:3239452] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5353/srpm-builds/10657349/builder-live.log by gzip [2026-06-28 15:14:09,381][ INFO][PID:3239452] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5353/srpm-builds/10657349/builder-live.log' as PID 3284126 [2026-06-28 15:14:09,388][ INFO][PID:3239452] Finished after 0 seconds with exit code 0 (gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5353/srpm-builds/10657349/builder-live.log) [2026-06-28 15:14:09,388][ INFO][PID:3239452] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5353/srpm-builds/10657349/backend.log by gzip [2026-06-28 15:14:09,389][ INFO][PID:3239452] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5353/srpm-builds/10657349/backend.log' as PID 3284127