[2026-09-16 22:23:24,364][ INFO][PID:3662101] Marking build as starting [2026-09-16 22:23:24,393][ INFO][PID:3662101] Checking for cancel request [2026-09-16 22:23:24,393][ INFO][PID:3662101] VM allocation process starts [2026-09-16 22:23:24,400][ INFO][PID:3662101] Trying to allocate VM: ResallocHost, ticket_id=5069800, requested_tags=['arch_x86_64', 'copr_builder'] [2026-09-16 22:23:27,408][ INFO][PID:3662101] Allocated host ResallocHost, ticket_id=5069800, hostname=3.239.149.66, name=aws_x86_64_reserved_prod_38952311_20260916_221336, requested_tags=['arch_x86_64', 'copr_builder'] [2026-09-16 22:23:27,612][ INFO][PID:3662101] Allocating ssh connection to builder [2026-09-16 22:23:27,613][ INFO][PID:3662101] Checking that builder machine is OK [2026-09-16 22:23:27,898][ INFO][PID:3662101] Installed copr-rpmbuild version: 1.9 [2026-09-16 22:23:30,387][ INFO][PID:3662101] Running remote command: copr-builder-ready srpm-builds [2026-09-16 22:23:30,541][ INFO][PID:3662101] Red Hat subscription not needed for srpm-builds Builder is ready to be used [2026-09-16 22:23:30,542][ INFO][PID:3662101] Filling build.info file with builder info [2026-09-16 22:23:30,542][ INFO][PID:3662101] Checking for cancel request [2026-09-16 22:23:30,749][ INFO][PID:3662101] 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:5739", "submitter": null, "ended_on": null, "started_on": 1789597410.7489195, "submitted_on": null, "status": 3, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10993557", "build_id": 10993557, "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\": \"tmpxzteiau_\", \"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--e0e7489d-6c86-4403-bf46-4834e434b66e", "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/pulls:pr:5739", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5739", "result_dir": "10993557", "built_packages": "", "tags": [ "arch_x86_64" ], "rpmeta_prediction": null, "id": 10993557, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2026-09-16 22:23:30,780][ INFO][PID:3662101] Sending fedora-messaging bus message in build.start [2026-09-16 22:23:31,343][ INFO][PID:3662101] Sending fedora-messaging bus message in chroot.start [2026-09-16 22:23:31,567][ INFO][PID:3662101] Starting remote build: copr-rpmbuild --verbose --drop-resultdir --srpm --task-url https://copr.fedorainfracloud.org/backend/get-srpm-build-task/10993557 --detached [2026-09-16 22:23:32,127][ INFO][PID:3662101] The copr-rpmbuild seems started, per: stdout: stderr: Warning: Permanently added '3.239.149.66' (ED25519) to the list of known hosts. [2026-09-16 22:23:32,127][ INFO][PID:3662101] Downloading the builder-live.log file, attempt 1 [2026-09-16 22:23:32,128][ INFO][PID:3662101] Popen command started: ssh -F /home/copr/.ssh/config mockbuilder@3.239.149.66 copr-rpmbuild-log [2026-09-16 22:23:37,140][ INFO][PID:3662101] Periodic builder liveness probe: alive [2026-09-16 22:23:39,428][ INFO][PID:3662101] Checking for cancel request [2026-09-16 22:23:44,429][ INFO][PID:3662101] Checking for cancel request [2026-09-16 22:23:49,430][ INFO][PID:3662101] Checking for cancel request [2026-09-16 22:23:56,715][ INFO][PID:3662101] Checking for cancel request [2026-09-16 22:24:01,716][ INFO][PID:3662101] Checking for cancel request [2026-09-16 22:24:08,380][ INFO][PID:3662101] Checking for cancel request [2026-09-16 22:24:13,380][ INFO][PID:3662101] Checking for cancel request [2026-09-16 22:24:18,381][ INFO][PID:3662101] Checking for cancel request [2026-09-16 22:24:23,382][ INFO][PID:3662101] Checking for cancel request [2026-09-16 22:24:28,383][ INFO][PID:3662101] Checking for cancel request [2026-09-16 22:24:33,384][ INFO][PID:3662101] Checking for cancel request [2026-09-16 22:24:38,385][ INFO][PID:3662101] Checking for cancel request [2026-09-16 22:24:43,385][ INFO][PID:3662101] Checking for cancel request [2026-09-16 22:24:48,386][ INFO][PID:3662101] Checking for cancel request [2026-09-16 22:24:53,387][ INFO][PID:3662101] Checking for cancel request [2026-09-16 22:24:58,388][ INFO][PID:3662101] Checking for cancel request [2026-09-16 22:25:03,389][ INFO][PID:3662101] Checking for cancel request [2026-09-16 22:25:08,390][ INFO][PID:3662101] Checking for cancel request [2026-09-16 22:25:13,391][ INFO][PID:3662101] Checking for cancel request [2026-09-16 22:25:18,392][ INFO][PID:3662101] Checking for cancel request [2026-09-16 22:25:23,393][ INFO][PID:3662101] Checking for cancel request [2026-09-16 22:25:28,394][ INFO][PID:3662101] Checking for cancel request [2026-09-16 22:25:33,395][ INFO][PID:3662101] Checking for cancel request [2026-09-16 22:25:38,601][ INFO][PID:3662101] Checking for cancel request [2026-09-16 22:25:43,603][ INFO][PID:3662101] Checking for cancel request [2026-09-16 22:25:49,224][ INFO][PID:3662101] Checking for cancel request [2026-09-16 22:25:58,796][ INFO][PID:3662101] Checking for cancel request [2026-09-16 22:26:03,798][ INFO][PID:3662101] Checking for cancel request [2026-09-16 22:26:09,045][ INFO][PID:3662101] Checking for cancel request [2026-09-16 22:26:14,046][ INFO][PID:3662101] Checking for cancel request [2026-09-16 22:26:19,047][ INFO][PID:3662101] Checking for cancel request [2026-09-16 22:26:24,048][ INFO][PID:3662101] Checking for cancel request [2026-09-16 22:26:29,166][ INFO][PID:3662101] Checking for cancel request [2026-09-16 22:26:34,167][ INFO][PID:3662101] Checking for cancel request [2026-09-16 22:26:42,285][ INFO][PID:3662101] Checking for cancel request [2026-09-16 22:26:47,286][ INFO][PID:3662101] Checking for cancel request [2026-09-16 22:26:52,288][ INFO][PID:3662101] Checking for cancel request [2026-09-16 22:26:57,288][ INFO][PID:3662101] Checking for cancel request [2026-09-16 22:27:02,289][ INFO][PID:3662101] Checking for cancel request [2026-09-16 22:27:07,290][ INFO][PID:3662101] Checking for cancel request [2026-09-16 22:27:12,291][ INFO][PID:3662101] Checking for cancel request [2026-09-16 22:27:17,292][ INFO][PID:3662101] Checking for cancel request [2026-09-16 22:27:22,292][ INFO][PID:3662101] Checking for cancel request [2026-09-16 22:27:27,294][ INFO][PID:3662101] Checking for cancel request [2026-09-16 22:27:32,295][ INFO][PID:3662101] Checking for cancel request [2026-09-16 22:27:37,296][ INFO][PID:3662101] Checking for cancel request [2026-09-16 22:27:42,684][ INFO][PID:3662101] Checking for cancel request [2026-09-16 22:27:47,685][ INFO][PID:3662101] Checking for cancel request [2026-09-16 22:27:52,687][ INFO][PID:3662101] Checking for cancel request [2026-09-16 22:28:00,059][ INFO][PID:3662101] Checking for cancel request [2026-09-16 22:28:06,275][ INFO][PID:3662101] Checking for cancel request [2026-09-16 22:28:11,725][ INFO][PID:3662101] Checking for cancel request [2026-09-16 22:28:22,120][ INFO][PID:3662101] Checking for cancel request [2026-09-16 22:28:27,369][ INFO][PID:3662101] Checking for cancel request [2026-09-16 22:28:32,960][ INFO][PID:3662101] Checking for cancel request [2026-09-16 22:28:38,364][ INFO][PID:3662101] Checking for cancel request [2026-09-16 22:28:43,389][ INFO][PID:3662101] Checking for cancel request [2026-09-16 22:28:49,076][ INFO][PID:3662101] Checking for cancel request [2026-09-16 22:28:54,078][ INFO][PID:3662101] Checking for cancel request [2026-09-16 22:28:59,159][ INFO][PID:3662101] Checking for cancel request [2026-09-16 22:29:04,424][ INFO][PID:3662101] Checking for cancel request [2026-09-16 22:29:09,425][ INFO][PID:3662101] Checking for cancel request [2026-09-16 22:29:14,637][ INFO][PID:3662101] Checking for cancel request [2026-09-16 22:29:19,639][ INFO][PID:3662101] Checking for cancel request [2026-09-16 22:29:24,654][ INFO][PID:3662101] Checking for cancel request [2026-09-16 22:29:29,655][ INFO][PID:3662101] Checking for cancel request [2026-09-16 22:29:34,683][ INFO][PID:3662101] Checking for cancel request [2026-09-16 22:29:39,761][ INFO][PID:3662101] Checking for cancel request [2026-09-16 22:29:44,847][ INFO][PID:3662101] Checking for cancel request [2026-09-16 22:29:49,848][ INFO][PID:3662101] Checking for cancel request [2026-09-16 22:29:54,849][ INFO][PID:3662101] Checking for cancel request [2026-09-16 22:29:59,850][ INFO][PID:3662101] Checking for cancel request [2026-09-16 22:30:04,851][ INFO][PID:3662101] Checking for cancel request [2026-09-16 22:30:09,852][ INFO][PID:3662101] Checking for cancel request [2026-09-16 22:30:14,853][ INFO][PID:3662101] Checking for cancel request [2026-09-16 22:30:19,854][ INFO][PID:3662101] Checking for cancel request [2026-09-16 22:30:24,854][ INFO][PID:3662101] Checking for cancel request [2026-09-16 22:30:29,855][ INFO][PID:3662101] Checking for cancel request [2026-09-16 22:30:34,856][ INFO][PID:3662101] Checking for cancel request [2026-09-16 22:30:39,857][ INFO][PID:3662101] Checking for cancel request [2026-09-16 22:30:44,858][ INFO][PID:3662101] Checking for cancel request [2026-09-16 22:30:49,859][ INFO][PID:3662101] Checking for cancel request [2026-09-16 22:30:54,861][ INFO][PID:3662101] Checking for cancel request [2026-09-16 22:30:59,861][ INFO][PID:3662101] Checking for cancel request [2026-09-16 22:31:05,517][ INFO][PID:3662101] Checking for cancel request [2026-09-16 22:31:10,519][ INFO][PID:3662101] Checking for cancel request [2026-09-16 22:31:16,110][ INFO][PID:3662101] Checking for cancel request [2026-09-16 22:31:21,199][ INFO][PID:3662101] Checking for cancel request [2026-09-16 22:31:27,220][ INFO][PID:3662101] Checking for cancel request [2026-09-16 22:31:33,556][ INFO][PID:3662101] Checking for cancel request [2026-09-16 22:31:38,885][ INFO][PID:3662101] Checking for cancel request [2026-09-16 22:31:44,493][ INFO][PID:3662101] Checking for cancel request [2026-09-16 22:31:55,968][ INFO][PID:3662101] Checking for cancel request [2026-09-16 22:32:03,516][ INFO][PID:3662101] Checking for cancel request [2026-09-16 22:32:09,225][ INFO][PID:3662101] Checking for cancel request [2026-09-16 22:32:16,468][ INFO][PID:3662101] Checking for cancel request [2026-09-16 22:32:21,470][ INFO][PID:3662101] Checking for cancel request [2026-09-16 22:32:30,683][ INFO][PID:3662101] Checking for cancel request [2026-09-16 22:32:42,004][ INFO][PID:3662101] Checking for cancel request [2026-09-16 22:32:52,116][ INFO][PID:3662101] Checking for cancel request [2026-09-16 22:32:57,116][ INFO][PID:3662101] Checking for cancel request [2026-09-16 22:33:23,124][ INFO][PID:3662101] Checking for cancel request [2026-09-16 22:33:28,125][ INFO][PID:3662101] Checking for cancel request [2026-09-16 22:33:33,127][ INFO][PID:3662101] Checking for cancel request [2026-09-16 22:33:38,128][ INFO][PID:3662101] Checking for cancel request [2026-09-16 22:33:43,134][ INFO][PID:3662101] Periodic builder liveness probe: alive [2026-09-16 22:33:43,135][ INFO][PID:3662101] Checking for cancel request [2026-09-16 22:33:48,135][ INFO][PID:3662101] Checking for cancel request [2026-09-16 22:33:53,136][ INFO][PID:3662101] Checking for cancel request [2026-09-16 22:33:58,137][ INFO][PID:3662101] Checking for cancel request [2026-09-16 22:34:03,137][ INFO][PID:3662101] Checking for cancel request [2026-09-16 22:34:08,138][ INFO][PID:3662101] Checking for cancel request [2026-09-16 22:34:12,382][ INFO][PID:3662101] Downloading results from builder [2026-09-16 22:34:12,382][ INFO][PID:3662101] rsyncing of mockbuilder@3.239.149.66:/var/lib/copr-rpmbuild/results/ to /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5739/srpm-builds/10993557 started [2026-09-16 22:34:12,383][ INFO][PID:3662101] Popen command started: /usr/bin/rsync -rltDvH --chmod=D755,F644 -e 'ssh -F /home/copr/.ssh/config' mockbuilder@3.239.149.66:/var/lib/copr-rpmbuild/results/ /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5739/srpm-builds/10993557/ &> /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5739/srpm-builds/10993557/build-10993557.rsync.log [2026-09-16 22:51:21,867][ INFO][PID:3662101] rsyncing finished. [2026-09-16 22:51:21,916][ INFO][PID:3662101] VM Release request [2026-09-16 22:51:22,129][ INFO][PID:3662101] Searching for 'success' file in resultdir [2026-09-16 22:51:22,129][ INFO][PID:3662101] Getting build details [2026-09-16 22:51:22,130][ INFO][PID:3662101] Retrieving SRPM info from /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5739/srpm-builds/10993557 [2026-09-16 22:51:22,130][ INFO][PID:3662101] SRPM URL: https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5739/srpm-builds/10993557/Sunshine-0.0.5739-1.src.rpm [2026-09-16 22:51:22,130][ INFO][PID:3662101] build details: {'srpm_url': 'https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5739/srpm-builds/10993557/Sunshine-0.0.5739-1.src.rpm', 'pkg_name': 'Sunshine', 'pkg_version': '0.0.5739-1'} [2026-09-16 22:51:22,130][ INFO][PID:3662101] Finished build: id=10993557 failed=False timeout=108000 destdir=/var/lib/copr/public_html/results/lizardbyte/pulls:pr:5739 chroot=srpm-builds [2026-09-16 22:51:22,131][ INFO][PID:3662101] Worker succeeded build, took 1671.382372379303 [2026-09-16 22:51:22,131][ INFO][PID:3662101] 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:5739", "submitter": null, "ended_on": 1789599082.1312919, "started_on": 1789597410.7489195, "submitted_on": null, "status": 1, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10993557", "build_id": 10993557, "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\": \"tmpxzteiau_\", \"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:5739/srpm-builds/10993557/Sunshine-0.0.5739-1.src.rpm", "uses_devel_repo": null, "sandbox": "lizardbyte/pulls--e0e7489d-6c86-4403-bf46-4834e434b66e", "results": { "architecture_specific_tags": { "fedora-43": {}, "fedora-44": {}, "fedora-45": {}, "fedora-rawhide": {}, "opensuse-leap-16.0": {}, "opensuse-tumbleweed": {} }, "name": "Sunshine", "epoch": null, "version": "0.0.5739", "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/pulls:pr:5739", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5739", "result_dir": "10993557", "built_packages": "", "tags": [ "arch_x86_64" ], "rpmeta_prediction": null, "pkg_version": "0.0.5739-1", "id": 10993557, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2026-09-16 22:51:22,177][ INFO][PID:3662101] Sending fedora-messaging bus message in build.end [2026-09-16 22:51:22,400][ INFO][PID:3662101] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5739/srpm-builds/10993557/builder-live.log by gzip [2026-09-16 22:51:22,401][ INFO][PID:3662101] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5739/srpm-builds/10993557/builder-live.log' as PID 4066483 [2026-09-16 22:51:22,543][ INFO][PID:3662101] Finished after 0 seconds with exit code 0 (gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5739/srpm-builds/10993557/builder-live.log) [2026-09-16 22:51:22,543][ INFO][PID:3662101] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5739/srpm-builds/10993557/backend.log by gzip [2026-09-16 22:51:22,545][ INFO][PID:3662101] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5739/srpm-builds/10993557/backend.log' as PID 4066493