[2026-09-16 18:31:27,448][ INFO][PID:75725] Marking build as starting [2026-09-16 18:31:27,549][ INFO][PID:75725] Checking for cancel request [2026-09-16 18:31:27,549][ INFO][PID:75725] VM allocation process starts [2026-09-16 18:31:27,556][ INFO][PID:75725] Trying to allocate VM: ResallocHost, ticket_id=5066853, requested_tags=['arch_x86_64', 'copr_builder'] [2026-09-16 18:31:30,565][ INFO][PID:75725] Allocated host ResallocHost, ticket_id=5066853, hostname=3.226.72.210, name=aws_x86_64_reserved_prod_38820824_20260916_182728, requested_tags=['arch_x86_64', 'copr_builder'] [2026-09-16 18:31:30,565][ INFO][PID:75725] Allocating ssh connection to builder [2026-09-16 18:31:30,566][ INFO][PID:75725] Checking that builder machine is OK [2026-09-16 18:31:30,875][ INFO][PID:75725] Installed copr-rpmbuild version: 1.9 [2026-09-16 18:31:30,876][ INFO][PID:75725] Running remote command: copr-builder-ready srpm-builds [2026-09-16 18:31:31,048][ INFO][PID:75725] Red Hat subscription not needed for srpm-builds Builder is ready to be used [2026-09-16 18:31:31,049][ INFO][PID:75725] Filling build.info file with builder info [2026-09-16 18:31:31,164][ INFO][PID:75725] Checking for cancel request [2026-09-16 18:31:31,165][ INFO][PID:75725] 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": 1789583491.1649046, "submitted_on": null, "status": 3, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10993024", "build_id": 10993024, "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-45-x86_64\", \"builddeps\": \"git jq python3 rpmlint\", \"resultdir\": \"\", \"repos\": \"\", \"tmp\": \"tmpay8ia04y\", \"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--d96a9d1b-3e49-430e-8baa-0a173a756edd", "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-45", "fedora-rawhide", "opensuse-leap-16.0", "opensuse-tumbleweed" ], "distributions_in_project": [ "fedora-43", "fedora-44", "fedora-45", "fedora-rawhide", "opensuse-leap-16.0", "opensuse-tumbleweed" ], "destdir": "/var/lib/copr/public_html/results/lizardbyte/beta", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/lizardbyte/beta", "result_dir": "10993024", "built_packages": "", "tags": [ "arch_x86_64" ], "rpmeta_prediction": null, "id": 10993024, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "beta", "vendor": "Fedora Project COPR (lizardbyte/beta)" } } ] } [2026-09-16 18:31:31,199][ INFO][PID:75725] Sending fedora-messaging bus message in build.start [2026-09-16 18:31:31,565][ INFO][PID:75725] Sending fedora-messaging bus message in chroot.start [2026-09-16 18:31:31,583][ INFO][PID:75725] Starting remote build: copr-rpmbuild --verbose --drop-resultdir --srpm --task-url https://copr.fedorainfracloud.org/backend/get-srpm-build-task/10993024 --detached [2026-09-16 18:31:32,066][ INFO][PID:75725] The copr-rpmbuild seems started, per: stdout: stderr: Warning: Permanently added '3.226.72.210' (ED25519) to the list of known hosts. [2026-09-16 18:31:32,067][ INFO][PID:75725] Downloading the builder-live.log file, attempt 1 [2026-09-16 18:31:32,068][ INFO][PID:75725] Popen command started: ssh -F /home/copr/.ssh/config mockbuilder@3.226.72.210 copr-rpmbuild-log [2026-09-16 18:31:37,072][ INFO][PID:75725] Periodic builder liveness probe: alive [2026-09-16 18:31:37,072][ INFO][PID:75725] Checking for cancel request [2026-09-16 18:31:42,073][ INFO][PID:75725] Checking for cancel request [2026-09-16 18:31:47,075][ INFO][PID:75725] Checking for cancel request [2026-09-16 18:31:52,078][ INFO][PID:75725] Checking for cancel request [2026-09-16 18:31:57,079][ INFO][PID:75725] Checking for cancel request [2026-09-16 18:32:02,080][ INFO][PID:75725] Checking for cancel request [2026-09-16 18:32:07,156][ INFO][PID:75725] Checking for cancel request [2026-09-16 18:32:12,158][ INFO][PID:75725] Checking for cancel request [2026-09-16 18:32:17,158][ INFO][PID:75725] Checking for cancel request [2026-09-16 18:32:22,159][ INFO][PID:75725] Checking for cancel request [2026-09-16 18:32:27,160][ INFO][PID:75725] Checking for cancel request [2026-09-16 18:32:32,161][ INFO][PID:75725] Checking for cancel request [2026-09-16 18:32:37,162][ INFO][PID:75725] Checking for cancel request [2026-09-16 18:32:42,163][ INFO][PID:75725] Checking for cancel request [2026-09-16 18:32:47,164][ INFO][PID:75725] Checking for cancel request [2026-09-16 18:32:52,164][ INFO][PID:75725] Checking for cancel request [2026-09-16 18:32:57,690][ INFO][PID:75725] Checking for cancel request [2026-09-16 18:33:02,691][ INFO][PID:75725] Checking for cancel request [2026-09-16 18:33:07,692][ INFO][PID:75725] Checking for cancel request [2026-09-16 18:33:14,122][ INFO][PID:75725] Checking for cancel request [2026-09-16 18:33:19,412][ INFO][PID:75725] Checking for cancel request [2026-09-16 18:33:24,459][ INFO][PID:75725] Checking for cancel request [2026-09-16 18:33:30,080][ INFO][PID:75725] Checking for cancel request [2026-09-16 18:33:35,594][ INFO][PID:75725] Checking for cancel request [2026-09-16 18:33:40,595][ INFO][PID:75725] Checking for cancel request [2026-09-16 18:33:45,622][ INFO][PID:75725] Checking for cancel request [2026-09-16 18:33:50,623][ INFO][PID:75725] Checking for cancel request [2026-09-16 18:33:56,232][ INFO][PID:75725] Checking for cancel request [2026-09-16 18:34:01,234][ INFO][PID:75725] Checking for cancel request [2026-09-16 18:34:06,236][ INFO][PID:75725] Checking for cancel request [2026-09-16 18:34:11,236][ INFO][PID:75725] Checking for cancel request [2026-09-16 18:34:16,376][ INFO][PID:75725] Checking for cancel request [2026-09-16 18:34:21,378][ INFO][PID:75725] Checking for cancel request [2026-09-16 18:34:26,380][ INFO][PID:75725] Checking for cancel request [2026-09-16 18:34:31,382][ INFO][PID:75725] Checking for cancel request [2026-09-16 18:34:36,383][ INFO][PID:75725] Checking for cancel request [2026-09-16 18:34:41,384][ INFO][PID:75725] Checking for cancel request [2026-09-16 18:34:46,385][ INFO][PID:75725] Checking for cancel request [2026-09-16 18:34:51,665][ INFO][PID:75725] Checking for cancel request [2026-09-16 18:34:57,307][ INFO][PID:75725] Checking for cancel request [2026-09-16 18:35:02,600][ INFO][PID:75725] Checking for cancel request [2026-09-16 18:35:07,885][ INFO][PID:75725] Checking for cancel request [2026-09-16 18:35:13,315][ INFO][PID:75725] Checking for cancel request [2026-09-16 18:35:18,736][ INFO][PID:75725] Checking for cancel request [2026-09-16 18:35:23,761][ INFO][PID:75725] Checking for cancel request [2026-09-16 18:35:28,836][ INFO][PID:75725] Checking for cancel request [2026-09-16 18:35:33,918][ INFO][PID:75725] Checking for cancel request [2026-09-16 18:35:39,340][ INFO][PID:75725] Checking for cancel request [2026-09-16 18:35:44,389][ INFO][PID:75725] Checking for cancel request [2026-09-16 18:35:49,792][ INFO][PID:75725] Checking for cancel request [2026-09-16 18:35:54,793][ INFO][PID:75725] Checking for cancel request [2026-09-16 18:35:59,795][ INFO][PID:75725] Checking for cancel request [2026-09-16 18:36:04,796][ INFO][PID:75725] Checking for cancel request [2026-09-16 18:36:09,849][ INFO][PID:75725] Checking for cancel request [2026-09-16 18:36:14,874][ INFO][PID:75725] Checking for cancel request [2026-09-16 18:36:19,919][ INFO][PID:75725] Checking for cancel request [2026-09-16 18:36:25,119][ INFO][PID:75725] Checking for cancel request [2026-09-16 18:36:30,121][ INFO][PID:75725] Checking for cancel request [2026-09-16 18:36:35,122][ INFO][PID:75725] Checking for cancel request [2026-09-16 18:36:40,171][ INFO][PID:75725] Checking for cancel request [2026-09-16 18:36:45,173][ INFO][PID:75725] Checking for cancel request [2026-09-16 18:36:50,177][ INFO][PID:75725] Checking for cancel request [2026-09-16 18:36:55,178][ INFO][PID:75725] Checking for cancel request [2026-09-16 18:37:00,373][ INFO][PID:75725] Checking for cancel request [2026-09-16 18:37:05,686][ INFO][PID:75725] Checking for cancel request [2026-09-16 18:37:10,688][ INFO][PID:75725] Checking for cancel request [2026-09-16 18:37:15,689][ INFO][PID:75725] Checking for cancel request [2026-09-16 18:37:20,691][ INFO][PID:75725] Checking for cancel request [2026-09-16 18:37:25,692][ INFO][PID:75725] Checking for cancel request [2026-09-16 18:37:30,693][ INFO][PID:75725] Checking for cancel request [2026-09-16 18:37:35,703][ INFO][PID:75725] Checking for cancel request [2026-09-16 18:37:40,704][ INFO][PID:75725] Checking for cancel request [2026-09-16 18:37:45,824][ INFO][PID:75725] Checking for cancel request [2026-09-16 18:37:50,825][ INFO][PID:75725] Checking for cancel request [2026-09-16 18:37:56,342][ INFO][PID:75725] Checking for cancel request [2026-09-16 18:38:01,506][ INFO][PID:75725] Checking for cancel request [2026-09-16 18:38:06,935][ INFO][PID:75725] Checking for cancel request [2026-09-16 18:38:12,428][ INFO][PID:75725] Checking for cancel request [2026-09-16 18:38:17,694][ INFO][PID:75725] Checking for cancel request [2026-09-16 18:38:23,195][ INFO][PID:75725] Checking for cancel request [2026-09-16 18:38:28,455][ INFO][PID:75725] Checking for cancel request [2026-09-16 18:38:34,130][ INFO][PID:75725] Checking for cancel request [2026-09-16 18:38:39,652][ INFO][PID:75725] Checking for cancel request [2026-09-16 18:38:45,834][ INFO][PID:75725] Checking for cancel request [2026-09-16 18:38:50,840][ INFO][PID:75725] Checking for cancel request [2026-09-16 18:38:55,843][ INFO][PID:75725] Checking for cancel request [2026-09-16 18:39:00,844][ INFO][PID:75725] Checking for cancel request [2026-09-16 18:39:05,846][ INFO][PID:75725] Checking for cancel request [2026-09-16 18:39:10,849][ INFO][PID:75725] Checking for cancel request [2026-09-16 18:39:15,851][ INFO][PID:75725] Checking for cancel request [2026-09-16 18:39:20,853][ INFO][PID:75725] Checking for cancel request [2026-09-16 18:39:25,856][ INFO][PID:75725] Checking for cancel request [2026-09-16 18:39:30,857][ INFO][PID:75725] Checking for cancel request [2026-09-16 18:39:36,331][ INFO][PID:75725] Checking for cancel request [2026-09-16 18:39:41,332][ INFO][PID:75725] Checking for cancel request [2026-09-16 18:39:46,333][ INFO][PID:75725] Checking for cancel request [2026-09-16 18:39:51,334][ INFO][PID:75725] Checking for cancel request [2026-09-16 18:39:56,335][ INFO][PID:75725] Checking for cancel request [2026-09-16 18:40:01,336][ INFO][PID:75725] Checking for cancel request [2026-09-16 18:40:06,336][ INFO][PID:75725] Checking for cancel request [2026-09-16 18:40:11,337][ INFO][PID:75725] Checking for cancel request [2026-09-16 18:40:16,339][ INFO][PID:75725] Checking for cancel request [2026-09-16 18:40:21,340][ INFO][PID:75725] Checking for cancel request [2026-09-16 18:40:26,341][ INFO][PID:75725] Checking for cancel request [2026-09-16 18:40:31,342][ INFO][PID:75725] Checking for cancel request [2026-09-16 18:40:36,344][ INFO][PID:75725] Checking for cancel request [2026-09-16 18:40:41,349][ INFO][PID:75725] Checking for cancel request [2026-09-16 18:40:46,350][ INFO][PID:75725] Checking for cancel request [2026-09-16 18:40:51,353][ INFO][PID:75725] Checking for cancel request [2026-09-16 18:40:56,358][ INFO][PID:75725] Checking for cancel request [2026-09-16 18:41:01,364][ INFO][PID:75725] Checking for cancel request [2026-09-16 18:41:06,436][ INFO][PID:75725] Checking for cancel request [2026-09-16 18:41:11,440][ INFO][PID:75725] Checking for cancel request [2026-09-16 18:41:16,547][ INFO][PID:75725] Checking for cancel request [2026-09-16 18:41:22,196][ INFO][PID:75725] Checking for cancel request [2026-09-16 18:41:27,197][ INFO][PID:75725] Checking for cancel request [2026-09-16 18:41:32,198][ INFO][PID:75725] Checking for cancel request [2026-09-16 18:41:37,203][ INFO][PID:75725] Periodic builder liveness probe: alive [2026-09-16 18:41:37,204][ INFO][PID:75725] Checking for cancel request [2026-09-16 18:41:42,204][ INFO][PID:75725] Checking for cancel request [2026-09-16 18:41:47,205][ INFO][PID:75725] Checking for cancel request [2026-09-16 18:41:52,206][ INFO][PID:75725] Checking for cancel request [2026-09-16 18:41:57,214][ INFO][PID:75725] Checking for cancel request [2026-09-16 18:42:02,215][ INFO][PID:75725] Checking for cancel request [2026-09-16 18:42:07,216][ INFO][PID:75725] Checking for cancel request [2026-09-16 18:42:12,500][ INFO][PID:75725] Checking for cancel request [2026-09-16 18:42:17,501][ INFO][PID:75725] Checking for cancel request [2026-09-16 18:42:22,520][ INFO][PID:75725] Checking for cancel request [2026-09-16 18:42:28,117][ INFO][PID:75725] Checking for cancel request [2026-09-16 18:42:33,118][ INFO][PID:75725] Checking for cancel request [2026-09-16 18:42:38,119][ INFO][PID:75725] Checking for cancel request [2026-09-16 18:42:43,120][ INFO][PID:75725] Checking for cancel request [2026-09-16 18:42:48,120][ INFO][PID:75725] Checking for cancel request [2026-09-16 18:42:53,121][ INFO][PID:75725] Checking for cancel request [2026-09-16 18:42:58,122][ INFO][PID:75725] Checking for cancel request [2026-09-16 18:43:00,909][ INFO][PID:75725] Downloading results from builder [2026-09-16 18:43:00,910][ INFO][PID:75725] rsyncing of mockbuilder@3.226.72.210:/var/lib/copr-rpmbuild/results/ to /var/lib/copr/public_html/results/lizardbyte/beta/srpm-builds/10993024 started [2026-09-16 18:43:00,910][ INFO][PID:75725] Popen command started: /usr/bin/rsync -rltDvH --chmod=D755,F644 -e 'ssh -F /home/copr/.ssh/config' mockbuilder@3.226.72.210:/var/lib/copr-rpmbuild/results/ /var/lib/copr/public_html/results/lizardbyte/beta/srpm-builds/10993024/ &> /var/lib/copr/public_html/results/lizardbyte/beta/srpm-builds/10993024/build-10993024.rsync.log [2026-09-16 18:49:21,765][ INFO][PID:75725] rsyncing finished. [2026-09-16 18:49:21,792][ INFO][PID:75725] VM Release request [2026-09-16 18:49:21,798][ INFO][PID:75725] Searching for 'success' file in resultdir [2026-09-16 18:49:21,799][ INFO][PID:75725] Getting build details [2026-09-16 18:49:21,799][ INFO][PID:75725] Retrieving SRPM info from /var/lib/copr/public_html/results/lizardbyte/beta/srpm-builds/10993024 [2026-09-16 18:49:21,799][ INFO][PID:75725] SRPM URL: https://download.copr.fedorainfracloud.org/results/lizardbyte/beta/srpm-builds/10993024/Sunshine-2026.916.165635-1.src.rpm [2026-09-16 18:49:21,800][ INFO][PID:75725] build details: {'srpm_url': 'https://download.copr.fedorainfracloud.org/results/lizardbyte/beta/srpm-builds/10993024/Sunshine-2026.916.165635-1.src.rpm', 'pkg_name': 'Sunshine', 'pkg_version': '2026.916.165635-1'} [2026-09-16 18:49:21,800][ INFO][PID:75725] Finished build: id=10993024 failed=False timeout=108000 destdir=/var/lib/copr/public_html/results/lizardbyte/beta chroot=srpm-builds [2026-09-16 18:49:21,800][ INFO][PID:75725] Worker succeeded build, took 1070.6358489990234 [2026-09-16 18:49:21,801][ INFO][PID:75725] 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": 1789584561.8007536, "started_on": 1789583491.1649046, "submitted_on": null, "status": 1, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10993024", "build_id": 10993024, "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-45-x86_64\", \"builddeps\": \"git jq python3 rpmlint\", \"resultdir\": \"\", \"repos\": \"\", \"tmp\": \"tmpay8ia04y\", \"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/10993024/Sunshine-2026.916.165635-1.src.rpm", "uses_devel_repo": null, "sandbox": "lizardbyte/beta--d96a9d1b-3e49-430e-8baa-0a173a756edd", "results": { "architecture_specific_tags": { "fedora-43": {}, "fedora-44": {}, "fedora-45": {}, "fedora-rawhide": {}, "opensuse-leap-16.0": {}, "opensuse-tumbleweed": {} }, "name": "Sunshine", "epoch": null, "version": "2026.916.165635", "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-45", "fedora-rawhide", "opensuse-leap-16.0", "opensuse-tumbleweed" ], "distributions_in_project": [ "fedora-43", "fedora-44", "fedora-45", "fedora-rawhide", "opensuse-leap-16.0", "opensuse-tumbleweed" ], "destdir": "/var/lib/copr/public_html/results/lizardbyte/beta", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/lizardbyte/beta", "result_dir": "10993024", "built_packages": "", "tags": [ "arch_x86_64" ], "rpmeta_prediction": null, "pkg_version": "2026.916.165635-1", "id": 10993024, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "beta", "vendor": "Fedora Project COPR (lizardbyte/beta)" } } ] } [2026-09-16 18:49:21,859][ INFO][PID:75725] Sending fedora-messaging bus message in build.end [2026-09-16 18:49:21,879][ INFO][PID:75725] Compressing /var/lib/copr/public_html/results/lizardbyte/beta/srpm-builds/10993024/builder-live.log by gzip [2026-09-16 18:49:21,880][ INFO][PID:75725] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/beta/srpm-builds/10993024/builder-live.log' as PID 314312 [2026-09-16 18:49:21,900][ INFO][PID:75725] Finished after 0 seconds with exit code 0 (gzip /var/lib/copr/public_html/results/lizardbyte/beta/srpm-builds/10993024/builder-live.log) [2026-09-16 18:49:21,900][ INFO][PID:75725] Compressing /var/lib/copr/public_html/results/lizardbyte/beta/srpm-builds/10993024/backend.log by gzip [2026-09-16 18:49:21,901][ INFO][PID:75725] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/beta/srpm-builds/10993024/backend.log' as PID 314320