[2026-06-30 23:22:30,799][ INFO][PID:4083698] Marking build as starting [2026-06-30 23:22:30,835][ INFO][PID:4083698] Checking for cancel request [2026-06-30 23:22:30,837][ INFO][PID:4083698] VM allocation process starts [2026-06-30 23:22:30,848][ INFO][PID:4083698] Trying to allocate VM: ResallocHost, ticket_id=3690473, requested_tags=['arch_x86_64', 'copr_builder'] [2026-06-30 23:22:33,865][ INFO][PID:4083698] Allocated host ResallocHost, ticket_id=3690473, hostname=98.92.75.208, name=aws_x86_64_reserved_prod_12807571_20260630_231107, requested_tags=['arch_x86_64', 'copr_builder'] [2026-06-30 23:22:33,866][ INFO][PID:4083698] Allocating ssh connection to builder [2026-06-30 23:22:33,867][ INFO][PID:4083698] Checking that builder machine is OK [2026-06-30 23:22:34,180][ INFO][PID:4083698] Installed copr-rpmbuild version: 1.8 [2026-06-30 23:22:34,181][ INFO][PID:4083698] Running remote command: copr-builder-ready srpm-builds [2026-06-30 23:22:34,354][ INFO][PID:4083698] Red Hat subscription not needed for srpm-builds Builder is ready to be used [2026-06-30 23:22:34,354][ INFO][PID:4083698] Filling build.info file with builder info [2026-06-30 23:22:34,355][ INFO][PID:4083698] Checking for cancel request [2026-06-30 23:22:34,357][ INFO][PID:4083698] 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:5359", "submitter": null, "ended_on": null, "started_on": 1782861754.3572376, "submitted_on": null, "status": 3, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10666178", "build_id": 10666178, "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\": \"tmp8ignfc_o\", \"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--6cdc6b57-2a05-405f-9323-ab266ca1a724", "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" ], "distributions_in_project": [ "fedora-43", "fedora-44", "fedora-rawhide", "opensuse-leap-15.6" ], "destdir": "/var/lib/copr/public_html/results/lizardbyte/pulls:pr:5359", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5359", "result_dir": "10666178", "built_packages": "", "tags": [ "arch_x86_64" ], "rpmeta_prediction": null, "id": 10666178, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2026-06-30 23:22:34,404][ INFO][PID:4083698] Sending fedora-messaging bus message in build.start [2026-06-30 23:22:34,861][ INFO][PID:4083698] Sending fedora-messaging bus message in chroot.start [2026-06-30 23:22:34,889][ INFO][PID:4083698] Starting remote build: copr-rpmbuild --verbose --drop-resultdir --srpm --task-url https://copr.fedorainfracloud.org/backend/get-srpm-build-task/10666178 --detached [2026-06-30 23:22:35,324][ INFO][PID:4083698] The copr-rpmbuild seems started, per: stdout: stderr: Warning: Permanently added '98.92.75.208' (ED25519) to the list of known hosts. [2026-06-30 23:22:35,325][ INFO][PID:4083698] Downloading the builder-live.log file, attempt 1 [2026-06-30 23:22:35,327][ INFO][PID:4083698] Popen command started: ssh -F /home/copr/.ssh/config mockbuilder@98.92.75.208 copr-rpmbuild-log [2026-06-30 23:22:40,334][ INFO][PID:4083698] Periodic builder liveness probe: alive [2026-06-30 23:22:40,335][ INFO][PID:4083698] Checking for cancel request [2026-06-30 23:22:45,336][ INFO][PID:4083698] Checking for cancel request [2026-06-30 23:22:50,337][ INFO][PID:4083698] Checking for cancel request [2026-06-30 23:22:55,339][ INFO][PID:4083698] Checking for cancel request [2026-06-30 23:23:00,340][ INFO][PID:4083698] Checking for cancel request [2026-06-30 23:23:05,341][ INFO][PID:4083698] Checking for cancel request [2026-06-30 23:23:10,342][ INFO][PID:4083698] Checking for cancel request [2026-06-30 23:23:15,344][ INFO][PID:4083698] Checking for cancel request [2026-06-30 23:23:20,345][ INFO][PID:4083698] Checking for cancel request [2026-06-30 23:23:25,346][ INFO][PID:4083698] Checking for cancel request [2026-06-30 23:23:30,348][ INFO][PID:4083698] Checking for cancel request [2026-06-30 23:23:35,353][ INFO][PID:4083698] Checking for cancel request [2026-06-30 23:23:40,354][ INFO][PID:4083698] Checking for cancel request [2026-06-30 23:23:45,356][ INFO][PID:4083698] Checking for cancel request [2026-06-30 23:23:50,357][ INFO][PID:4083698] Checking for cancel request [2026-06-30 23:23:55,358][ INFO][PID:4083698] Checking for cancel request [2026-06-30 23:24:00,359][ INFO][PID:4083698] Checking for cancel request [2026-06-30 23:24:05,361][ INFO][PID:4083698] Checking for cancel request [2026-06-30 23:24:10,362][ INFO][PID:4083698] Checking for cancel request [2026-06-30 23:24:15,363][ INFO][PID:4083698] Checking for cancel request [2026-06-30 23:24:20,364][ INFO][PID:4083698] Checking for cancel request [2026-06-30 23:24:25,366][ INFO][PID:4083698] Checking for cancel request [2026-06-30 23:24:30,367][ INFO][PID:4083698] Checking for cancel request [2026-06-30 23:24:35,368][ INFO][PID:4083698] Checking for cancel request [2026-06-30 23:24:40,370][ INFO][PID:4083698] Checking for cancel request [2026-06-30 23:24:45,371][ INFO][PID:4083698] Checking for cancel request [2026-06-30 23:24:50,372][ INFO][PID:4083698] Checking for cancel request [2026-06-30 23:24:55,373][ INFO][PID:4083698] Checking for cancel request [2026-06-30 23:25:00,374][ INFO][PID:4083698] Checking for cancel request [2026-06-30 23:25:05,376][ INFO][PID:4083698] Checking for cancel request [2026-06-30 23:25:10,377][ INFO][PID:4083698] Checking for cancel request [2026-06-30 23:25:15,378][ INFO][PID:4083698] Checking for cancel request [2026-06-30 23:25:20,380][ INFO][PID:4083698] Checking for cancel request [2026-06-30 23:25:25,387][ INFO][PID:4083698] Checking for cancel request [2026-06-30 23:25:30,389][ INFO][PID:4083698] Checking for cancel request [2026-06-30 23:25:35,390][ INFO][PID:4083698] Checking for cancel request [2026-06-30 23:25:40,391][ INFO][PID:4083698] Checking for cancel request [2026-06-30 23:25:45,393][ INFO][PID:4083698] Checking for cancel request [2026-06-30 23:25:50,394][ INFO][PID:4083698] Checking for cancel request [2026-06-30 23:25:55,395][ INFO][PID:4083698] Checking for cancel request [2026-06-30 23:26:00,396][ INFO][PID:4083698] Checking for cancel request [2026-06-30 23:26:05,397][ INFO][PID:4083698] Checking for cancel request [2026-06-30 23:26:10,398][ INFO][PID:4083698] Checking for cancel request [2026-06-30 23:26:15,399][ INFO][PID:4083698] Checking for cancel request [2026-06-30 23:26:20,401][ INFO][PID:4083698] Checking for cancel request [2026-06-30 23:26:25,675][ INFO][PID:4083698] Checking for cancel request [2026-06-30 23:26:30,676][ INFO][PID:4083698] Checking for cancel request [2026-06-30 23:26:35,677][ INFO][PID:4083698] Checking for cancel request [2026-06-30 23:26:40,679][ INFO][PID:4083698] Checking for cancel request [2026-06-30 23:26:45,680][ INFO][PID:4083698] Checking for cancel request [2026-06-30 23:26:50,683][ INFO][PID:4083698] Checking for cancel request [2026-06-30 23:26:55,958][ INFO][PID:4083698] Checking for cancel request [2026-06-30 23:27:00,960][ INFO][PID:4083698] Checking for cancel request [2026-06-30 23:27:05,961][ INFO][PID:4083698] Checking for cancel request [2026-06-30 23:27:10,964][ INFO][PID:4083698] Checking for cancel request [2026-06-30 23:27:15,966][ INFO][PID:4083698] Checking for cancel request [2026-06-30 23:27:20,967][ INFO][PID:4083698] Checking for cancel request [2026-06-30 23:27:25,968][ INFO][PID:4083698] Checking for cancel request [2026-06-30 23:27:30,969][ INFO][PID:4083698] Checking for cancel request [2026-06-30 23:27:35,971][ INFO][PID:4083698] Checking for cancel request [2026-06-30 23:27:40,973][ INFO][PID:4083698] Checking for cancel request [2026-06-30 23:27:45,974][ INFO][PID:4083698] Checking for cancel request [2026-06-30 23:27:51,242][ INFO][PID:4083698] Checking for cancel request [2026-06-30 23:27:56,244][ INFO][PID:4083698] Checking for cancel request [2026-06-30 23:28:01,245][ INFO][PID:4083698] Checking for cancel request [2026-06-30 23:28:06,246][ INFO][PID:4083698] Checking for cancel request [2026-06-30 23:28:11,247][ INFO][PID:4083698] Checking for cancel request [2026-06-30 23:28:16,249][ INFO][PID:4083698] Checking for cancel request [2026-06-30 23:28:21,250][ INFO][PID:4083698] Checking for cancel request [2026-06-30 23:28:26,252][ INFO][PID:4083698] Checking for cancel request [2026-06-30 23:28:31,258][ INFO][PID:4083698] Checking for cancel request [2026-06-30 23:28:36,259][ INFO][PID:4083698] Checking for cancel request [2026-06-30 23:28:41,261][ INFO][PID:4083698] Checking for cancel request [2026-06-30 23:28:46,339][ INFO][PID:4083698] Checking for cancel request [2026-06-30 23:28:51,347][ INFO][PID:4083698] Checking for cancel request [2026-06-30 23:28:56,354][ INFO][PID:4083698] Checking for cancel request [2026-06-30 23:29:01,355][ INFO][PID:4083698] Checking for cancel request [2026-06-30 23:29:06,356][ INFO][PID:4083698] Checking for cancel request [2026-06-30 23:29:11,359][ INFO][PID:4083698] Checking for cancel request [2026-06-30 23:29:16,361][ INFO][PID:4083698] Checking for cancel request [2026-06-30 23:29:21,363][ INFO][PID:4083698] Checking for cancel request [2026-06-30 23:29:26,740][ INFO][PID:4083698] Checking for cancel request [2026-06-30 23:29:31,743][ INFO][PID:4083698] Checking for cancel request [2026-06-30 23:29:36,745][ INFO][PID:4083698] Checking for cancel request [2026-06-30 23:29:41,747][ INFO][PID:4083698] Checking for cancel request [2026-06-30 23:29:46,749][ INFO][PID:4083698] Checking for cancel request [2026-06-30 23:29:51,753][ INFO][PID:4083698] Checking for cancel request [2026-06-30 23:29:56,754][ INFO][PID:4083698] Checking for cancel request [2026-06-30 23:30:01,760][ INFO][PID:4083698] Checking for cancel request [2026-06-30 23:30:06,762][ INFO][PID:4083698] Checking for cancel request [2026-06-30 23:30:11,763][ INFO][PID:4083698] Checking for cancel request [2026-06-30 23:30:16,764][ INFO][PID:4083698] Checking for cancel request [2026-06-30 23:30:21,766][ INFO][PID:4083698] Checking for cancel request [2026-06-30 23:30:26,767][ INFO][PID:4083698] Checking for cancel request [2026-06-30 23:30:31,769][ INFO][PID:4083698] Checking for cancel request [2026-06-30 23:30:36,771][ INFO][PID:4083698] Checking for cancel request [2026-06-30 23:30:41,775][ INFO][PID:4083698] Checking for cancel request [2026-06-30 23:30:46,781][ INFO][PID:4083698] Checking for cancel request [2026-06-30 23:30:51,782][ INFO][PID:4083698] Checking for cancel request [2026-06-30 23:30:56,783][ INFO][PID:4083698] Checking for cancel request [2026-06-30 23:31:01,786][ INFO][PID:4083698] Checking for cancel request [2026-06-30 23:31:06,788][ INFO][PID:4083698] Checking for cancel request [2026-06-30 23:31:11,790][ INFO][PID:4083698] Checking for cancel request [2026-06-30 23:31:16,791][ INFO][PID:4083698] Checking for cancel request [2026-06-30 23:31:21,792][ INFO][PID:4083698] Checking for cancel request [2026-06-30 23:31:26,794][ INFO][PID:4083698] Checking for cancel request [2026-06-30 23:31:31,797][ INFO][PID:4083698] Checking for cancel request [2026-06-30 23:31:36,798][ INFO][PID:4083698] Checking for cancel request [2026-06-30 23:31:41,799][ INFO][PID:4083698] Checking for cancel request [2026-06-30 23:31:46,800][ INFO][PID:4083698] Checking for cancel request [2026-06-30 23:31:51,801][ INFO][PID:4083698] Checking for cancel request [2026-06-30 23:31:53,621][ INFO][PID:4083698] Downloading results from builder [2026-06-30 23:31:53,645][ INFO][PID:4083698] rsyncing of mockbuilder@98.92.75.208:/var/lib/copr-rpmbuild/results/ to /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5359/srpm-builds/10666178 started [2026-06-30 23:31:53,705][ INFO][PID:4083698] Popen command started: /usr/bin/rsync -rltDvH --chmod=D755,F644 -e 'ssh -F /home/copr/.ssh/config' mockbuilder@98.92.75.208:/var/lib/copr-rpmbuild/results/ /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5359/srpm-builds/10666178/ &> /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5359/srpm-builds/10666178/build-10666178.rsync.log [2026-06-30 23:31:57,896][ INFO][PID:4083698] rsyncing finished. [2026-06-30 23:31:57,900][ INFO][PID:4083698] VM Release request [2026-06-30 23:31:58,146][ INFO][PID:4083698] Searching for 'success' file in resultdir [2026-06-30 23:31:58,208][ INFO][PID:4083698] Getting build details [2026-06-30 23:31:58,211][ INFO][PID:4083698] Retrieving SRPM info from /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5359/srpm-builds/10666178 [2026-06-30 23:31:58,297][ INFO][PID:4083698] SRPM URL: https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5359/srpm-builds/10666178/Sunshine-0.0.5359-1.src.rpm [2026-06-30 23:31:58,299][ INFO][PID:4083698] build details: {'srpm_url': 'https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5359/srpm-builds/10666178/Sunshine-0.0.5359-1.src.rpm', 'pkg_name': 'Sunshine', 'pkg_version': '0.0.5359-1'} [2026-06-30 23:31:58,316][ INFO][PID:4083698] Finished build: id=10666178 failed=False timeout=108000 destdir=/var/lib/copr/public_html/results/lizardbyte/pulls:pr:5359 chroot=srpm-builds [2026-06-30 23:31:58,422][ INFO][PID:4083698] Worker succeeded build, took 564.0654189586639 [2026-06-30 23:31:58,437][ INFO][PID:4083698] 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:5359", "submitter": null, "ended_on": 1782862318.4226565, "started_on": 1782861754.3572376, "submitted_on": null, "status": 1, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10666178", "build_id": 10666178, "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\": \"tmp8ignfc_o\", \"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:5359/srpm-builds/10666178/Sunshine-0.0.5359-1.src.rpm", "uses_devel_repo": null, "sandbox": "lizardbyte/pulls--6cdc6b57-2a05-405f-9323-ab266ca1a724", "results": { "architecture_specific_tags": { "fedora-43": {}, "fedora-44": {}, "fedora-rawhide": {}, "opensuse-leap-15.6": {} }, "name": "Sunshine", "epoch": null, "version": "0.0.5359", "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" ], "distributions_in_project": [ "fedora-43", "fedora-44", "fedora-rawhide", "opensuse-leap-15.6" ], "destdir": "/var/lib/copr/public_html/results/lizardbyte/pulls:pr:5359", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5359", "result_dir": "10666178", "built_packages": "", "tags": [ "arch_x86_64" ], "rpmeta_prediction": null, "pkg_version": "0.0.5359-1", "id": 10666178, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2026-06-30 23:31:59,348][ INFO][PID:4083698] Sending fedora-messaging bus message in build.end [2026-06-30 23:31:59,853][ INFO][PID:4083698] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5359/srpm-builds/10666178/builder-live.log by gzip [2026-06-30 23:31:59,873][ INFO][PID:4083698] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5359/srpm-builds/10666178/builder-live.log' as PID 4108412 [2026-06-30 23:31:59,898][ INFO][PID:4083698] Finished after 0 seconds with exit code 0 (gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5359/srpm-builds/10666178/builder-live.log) [2026-06-30 23:31:59,902][ INFO][PID:4083698] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5359/srpm-builds/10666178/backend.log by gzip [2026-06-30 23:31:59,906][ INFO][PID:4083698] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5359/srpm-builds/10666178/backend.log' as PID 4108413