[2026-08-06 06:11:06,806][ INFO][PID:2120235] Marking build as starting [2026-08-06 06:11:06,855][ INFO][PID:2120235] Checking for cancel request [2026-08-06 06:11:07,058][ INFO][PID:2120235] VM allocation process starts [2026-08-06 06:11:07,070][ INFO][PID:2120235] Trying to allocate VM: ResallocHost, ticket_id=4318542, requested_tags=['arch_x86_64', 'copr_builder'] [2026-08-06 06:11:10,086][ INFO][PID:2120235] Allocated host ResallocHost, ticket_id=4318542, hostname=54.198.68.174, name=aws_x86_64_reserved_prod_16674492_20260806_060857, requested_tags=['arch_x86_64', 'copr_builder'] [2026-08-06 06:11:10,087][ INFO][PID:2120235] Allocating ssh connection to builder [2026-08-06 06:11:10,088][ INFO][PID:2120235] Checking that builder machine is OK [2026-08-06 06:11:10,399][ INFO][PID:2120235] Installed copr-rpmbuild version: 1.8 [2026-08-06 06:11:10,400][ INFO][PID:2120235] Running remote command: copr-builder-ready srpm-builds [2026-08-06 06:11:10,571][ INFO][PID:2120235] Red Hat subscription not needed for srpm-builds Builder is ready to be used [2026-08-06 06:11:10,572][ INFO][PID:2120235] Filling build.info file with builder info [2026-08-06 06:11:10,573][ INFO][PID:2120235] Checking for cancel request [2026-08-06 06:11:10,574][ INFO][PID:2120235] 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:5478", "submitter": null, "ended_on": null, "started_on": 1785996670.5741746, "submitted_on": null, "status": 3, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10828344", "build_id": 10828344, "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\": \"tmp_8bp88he\", \"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--f8d5af1e-77a9-42f0-85e2-590d8b1c9013", "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" ], "distributions_in_project": [ "fedora-43", "fedora-44", "fedora-rawhide" ], "destdir": "/var/lib/copr/public_html/results/lizardbyte/pulls:pr:5478", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5478", "result_dir": "10828344", "built_packages": "", "tags": [ "arch_x86_64" ], "rpmeta_prediction": null, "id": 10828344, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2026-08-06 06:11:10,615][ INFO][PID:2120235] Sending fedora-messaging bus message in build.start [2026-08-06 06:11:11,114][ INFO][PID:2120235] Sending fedora-messaging bus message in chroot.start [2026-08-06 06:11:11,143][ INFO][PID:2120235] Starting remote build: copr-rpmbuild --verbose --drop-resultdir --srpm --task-url https://copr.fedorainfracloud.org/backend/get-srpm-build-task/10828344 --detached [2026-08-06 06:11:11,614][ INFO][PID:2120235] The copr-rpmbuild seems started, per: stdout: stderr: Warning: Permanently added '54.198.68.174' (ED25519) to the list of known hosts. [2026-08-06 06:11:11,615][ INFO][PID:2120235] Downloading the builder-live.log file, attempt 1 [2026-08-06 06:11:11,617][ INFO][PID:2120235] Popen command started: ssh -F /home/copr/.ssh/config mockbuilder@54.198.68.174 copr-rpmbuild-log [2026-08-06 06:11:16,622][ INFO][PID:2120235] Periodic builder liveness probe: alive [2026-08-06 06:11:16,623][ INFO][PID:2120235] Checking for cancel request [2026-08-06 06:11:21,625][ INFO][PID:2120235] Checking for cancel request [2026-08-06 06:11:26,627][ INFO][PID:2120235] Checking for cancel request [2026-08-06 06:11:31,634][ INFO][PID:2120235] Checking for cancel request [2026-08-06 06:11:36,636][ INFO][PID:2120235] Checking for cancel request [2026-08-06 06:11:41,639][ INFO][PID:2120235] Checking for cancel request [2026-08-06 06:11:46,641][ INFO][PID:2120235] Checking for cancel request [2026-08-06 06:11:51,644][ INFO][PID:2120235] Checking for cancel request [2026-08-06 06:11:56,646][ INFO][PID:2120235] Checking for cancel request [2026-08-06 06:12:01,652][ INFO][PID:2120235] Checking for cancel request [2026-08-06 06:12:06,653][ INFO][PID:2120235] Checking for cancel request [2026-08-06 06:12:11,656][ INFO][PID:2120235] Checking for cancel request [2026-08-06 06:12:16,658][ INFO][PID:2120235] Checking for cancel request [2026-08-06 06:12:21,659][ INFO][PID:2120235] Checking for cancel request [2026-08-06 06:12:26,661][ INFO][PID:2120235] Checking for cancel request [2026-08-06 06:12:31,662][ INFO][PID:2120235] Checking for cancel request [2026-08-06 06:12:36,664][ INFO][PID:2120235] Checking for cancel request [2026-08-06 06:12:41,667][ INFO][PID:2120235] Checking for cancel request [2026-08-06 06:12:46,675][ INFO][PID:2120235] Checking for cancel request [2026-08-06 06:12:51,677][ INFO][PID:2120235] Checking for cancel request [2026-08-06 06:12:56,681][ INFO][PID:2120235] Checking for cancel request [2026-08-06 06:13:01,686][ INFO][PID:2120235] Checking for cancel request [2026-08-06 06:13:06,688][ INFO][PID:2120235] Checking for cancel request [2026-08-06 06:13:11,691][ INFO][PID:2120235] Checking for cancel request [2026-08-06 06:13:16,692][ INFO][PID:2120235] Checking for cancel request [2026-08-06 06:13:21,694][ INFO][PID:2120235] Checking for cancel request [2026-08-06 06:13:26,696][ INFO][PID:2120235] Checking for cancel request [2026-08-06 06:13:31,697][ INFO][PID:2120235] Checking for cancel request [2026-08-06 06:13:36,699][ INFO][PID:2120235] Checking for cancel request [2026-08-06 06:13:41,705][ INFO][PID:2120235] Checking for cancel request [2026-08-06 06:13:46,708][ INFO][PID:2120235] Checking for cancel request [2026-08-06 06:13:51,713][ INFO][PID:2120235] Checking for cancel request [2026-08-06 06:13:56,720][ INFO][PID:2120235] Checking for cancel request [2026-08-06 06:14:01,722][ INFO][PID:2120235] Checking for cancel request [2026-08-06 06:14:06,724][ INFO][PID:2120235] Checking for cancel request [2026-08-06 06:14:11,728][ INFO][PID:2120235] Checking for cancel request [2026-08-06 06:14:16,739][ INFO][PID:2120235] Checking for cancel request [2026-08-06 06:14:21,740][ INFO][PID:2120235] Checking for cancel request [2026-08-06 06:14:26,742][ INFO][PID:2120235] Checking for cancel request [2026-08-06 06:14:31,744][ INFO][PID:2120235] Checking for cancel request [2026-08-06 06:14:36,745][ INFO][PID:2120235] Checking for cancel request [2026-08-06 06:14:41,747][ INFO][PID:2120235] Checking for cancel request [2026-08-06 06:14:46,748][ INFO][PID:2120235] Checking for cancel request [2026-08-06 06:14:51,750][ INFO][PID:2120235] Checking for cancel request [2026-08-06 06:14:56,751][ INFO][PID:2120235] Checking for cancel request [2026-08-06 06:15:01,753][ INFO][PID:2120235] Checking for cancel request [2026-08-06 06:15:06,754][ INFO][PID:2120235] Checking for cancel request [2026-08-06 06:15:11,756][ INFO][PID:2120235] Checking for cancel request [2026-08-06 06:15:16,757][ INFO][PID:2120235] Checking for cancel request [2026-08-06 06:15:21,759][ INFO][PID:2120235] Checking for cancel request [2026-08-06 06:15:26,760][ INFO][PID:2120235] Checking for cancel request [2026-08-06 06:15:31,761][ INFO][PID:2120235] Checking for cancel request [2026-08-06 06:15:36,763][ INFO][PID:2120235] Checking for cancel request [2026-08-06 06:15:41,764][ INFO][PID:2120235] Checking for cancel request [2026-08-06 06:15:46,766][ INFO][PID:2120235] Checking for cancel request [2026-08-06 06:15:51,768][ INFO][PID:2120235] Checking for cancel request [2026-08-06 06:15:56,770][ INFO][PID:2120235] Checking for cancel request [2026-08-06 06:16:01,771][ INFO][PID:2120235] Checking for cancel request [2026-08-06 06:16:06,773][ INFO][PID:2120235] Checking for cancel request [2026-08-06 06:16:11,774][ INFO][PID:2120235] Checking for cancel request [2026-08-06 06:16:16,775][ INFO][PID:2120235] Checking for cancel request [2026-08-06 06:16:21,777][ INFO][PID:2120235] Checking for cancel request [2026-08-06 06:16:26,778][ INFO][PID:2120235] Checking for cancel request [2026-08-06 06:16:31,779][ INFO][PID:2120235] Checking for cancel request [2026-08-06 06:16:36,781][ INFO][PID:2120235] Checking for cancel request [2026-08-06 06:16:41,782][ INFO][PID:2120235] Checking for cancel request [2026-08-06 06:16:46,783][ INFO][PID:2120235] Checking for cancel request [2026-08-06 06:16:51,785][ INFO][PID:2120235] Checking for cancel request [2026-08-06 06:16:56,786][ INFO][PID:2120235] Checking for cancel request [2026-08-06 06:17:01,788][ INFO][PID:2120235] Checking for cancel request [2026-08-06 06:17:06,789][ INFO][PID:2120235] Checking for cancel request [2026-08-06 06:17:11,791][ INFO][PID:2120235] Checking for cancel request [2026-08-06 06:17:16,796][ INFO][PID:2120235] Checking for cancel request [2026-08-06 06:17:21,798][ INFO][PID:2120235] Checking for cancel request [2026-08-06 06:17:26,800][ INFO][PID:2120235] Checking for cancel request [2026-08-06 06:17:31,801][ INFO][PID:2120235] Checking for cancel request [2026-08-06 06:17:36,803][ INFO][PID:2120235] Checking for cancel request [2026-08-06 06:17:41,804][ INFO][PID:2120235] Checking for cancel request [2026-08-06 06:17:46,806][ INFO][PID:2120235] Checking for cancel request [2026-08-06 06:17:51,807][ INFO][PID:2120235] Checking for cancel request [2026-08-06 06:17:56,808][ INFO][PID:2120235] Checking for cancel request [2026-08-06 06:18:01,811][ INFO][PID:2120235] Checking for cancel request [2026-08-06 06:18:06,812][ INFO][PID:2120235] Checking for cancel request [2026-08-06 06:18:11,814][ INFO][PID:2120235] Checking for cancel request [2026-08-06 06:18:16,815][ INFO][PID:2120235] Checking for cancel request [2026-08-06 06:18:21,818][ INFO][PID:2120235] Checking for cancel request [2026-08-06 06:18:26,820][ INFO][PID:2120235] Checking for cancel request [2026-08-06 06:18:31,821][ INFO][PID:2120235] Checking for cancel request [2026-08-06 06:18:36,824][ INFO][PID:2120235] Checking for cancel request [2026-08-06 06:18:41,826][ INFO][PID:2120235] Checking for cancel request [2026-08-06 06:18:46,827][ INFO][PID:2120235] Checking for cancel request [2026-08-06 06:18:51,829][ INFO][PID:2120235] Checking for cancel request [2026-08-06 06:18:56,830][ INFO][PID:2120235] Checking for cancel request [2026-08-06 06:19:01,831][ INFO][PID:2120235] Checking for cancel request [2026-08-06 06:19:06,833][ INFO][PID:2120235] Checking for cancel request [2026-08-06 06:19:11,834][ INFO][PID:2120235] Checking for cancel request [2026-08-06 06:19:16,836][ INFO][PID:2120235] Checking for cancel request [2026-08-06 06:19:21,837][ INFO][PID:2120235] Checking for cancel request [2026-08-06 06:19:26,839][ INFO][PID:2120235] Checking for cancel request [2026-08-06 06:19:31,841][ INFO][PID:2120235] Checking for cancel request [2026-08-06 06:19:36,843][ INFO][PID:2120235] Checking for cancel request [2026-08-06 06:19:41,845][ INFO][PID:2120235] Checking for cancel request [2026-08-06 06:19:46,846][ INFO][PID:2120235] Checking for cancel request [2026-08-06 06:19:51,849][ INFO][PID:2120235] Checking for cancel request [2026-08-06 06:19:56,852][ INFO][PID:2120235] Checking for cancel request [2026-08-06 06:20:01,855][ INFO][PID:2120235] Checking for cancel request [2026-08-06 06:20:06,857][ INFO][PID:2120235] Checking for cancel request [2026-08-06 06:20:11,858][ INFO][PID:2120235] Checking for cancel request [2026-08-06 06:20:16,860][ INFO][PID:2120235] Checking for cancel request [2026-08-06 06:20:21,862][ INFO][PID:2120235] Checking for cancel request [2026-08-06 06:20:26,864][ INFO][PID:2120235] Checking for cancel request [2026-08-06 06:20:31,865][ INFO][PID:2120235] Checking for cancel request [2026-08-06 06:20:36,867][ INFO][PID:2120235] Checking for cancel request [2026-08-06 06:20:41,872][ INFO][PID:2120235] Checking for cancel request [2026-08-06 06:20:46,874][ INFO][PID:2120235] Checking for cancel request [2026-08-06 06:20:51,876][ INFO][PID:2120235] Checking for cancel request [2026-08-06 06:20:56,878][ INFO][PID:2120235] Checking for cancel request [2026-08-06 06:20:59,166][ INFO][PID:2120235] Downloading results from builder [2026-08-06 06:20:59,167][ INFO][PID:2120235] rsyncing of mockbuilder@54.198.68.174:/var/lib/copr-rpmbuild/results/ to /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5478/srpm-builds/10828344 started [2026-08-06 06:20:59,169][ INFO][PID:2120235] Popen command started: /usr/bin/rsync -rltDvH --chmod=D755,F644 -e 'ssh -F /home/copr/.ssh/config' mockbuilder@54.198.68.174:/var/lib/copr-rpmbuild/results/ /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5478/srpm-builds/10828344/ &> /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5478/srpm-builds/10828344/build-10828344.rsync.log [2026-08-06 06:21:04,424][ INFO][PID:2120235] rsyncing finished. [2026-08-06 06:21:04,425][ INFO][PID:2120235] VM Release request [2026-08-06 06:21:04,437][ INFO][PID:2120235] Searching for 'success' file in resultdir [2026-08-06 06:21:04,438][ INFO][PID:2120235] Getting build details [2026-08-06 06:21:04,439][ INFO][PID:2120235] Retrieving SRPM info from /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5478/srpm-builds/10828344 [2026-08-06 06:21:04,441][ INFO][PID:2120235] SRPM URL: https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5478/srpm-builds/10828344/Sunshine-0.0.5478-1.src.rpm [2026-08-06 06:21:04,442][ INFO][PID:2120235] build details: {'srpm_url': 'https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5478/srpm-builds/10828344/Sunshine-0.0.5478-1.src.rpm', 'pkg_name': 'Sunshine', 'pkg_version': '0.0.5478-1'} [2026-08-06 06:21:04,443][ INFO][PID:2120235] Finished build: id=10828344 failed=False timeout=108000 destdir=/var/lib/copr/public_html/results/lizardbyte/pulls:pr:5478 chroot=srpm-builds [2026-08-06 06:21:04,447][ INFO][PID:2120235] Worker succeeded build, took 593.872994184494 [2026-08-06 06:21:04,448][ INFO][PID:2120235] 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:5478", "submitter": null, "ended_on": 1785997264.4471688, "started_on": 1785996670.5741746, "submitted_on": null, "status": 1, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10828344", "build_id": 10828344, "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\": \"tmp_8bp88he\", \"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:5478/srpm-builds/10828344/Sunshine-0.0.5478-1.src.rpm", "uses_devel_repo": null, "sandbox": "lizardbyte/pulls--f8d5af1e-77a9-42f0-85e2-590d8b1c9013", "results": { "architecture_specific_tags": { "fedora-43": {}, "fedora-44": {}, "fedora-rawhide": {} }, "name": "Sunshine", "epoch": null, "version": "0.0.5478", "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" ], "distributions_in_project": [ "fedora-43", "fedora-44", "fedora-rawhide" ], "destdir": "/var/lib/copr/public_html/results/lizardbyte/pulls:pr:5478", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5478", "result_dir": "10828344", "built_packages": "", "tags": [ "arch_x86_64" ], "rpmeta_prediction": null, "pkg_version": "0.0.5478-1", "id": 10828344, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2026-08-06 06:21:04,511][ INFO][PID:2120235] Sending fedora-messaging bus message in build.end [2026-08-06 06:21:04,547][ INFO][PID:2120235] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5478/srpm-builds/10828344/builder-live.log by gzip [2026-08-06 06:21:04,549][ INFO][PID:2120235] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5478/srpm-builds/10828344/builder-live.log' as PID 2202205 [2026-08-06 06:21:04,558][ INFO][PID:2120235] Finished after 0 seconds with exit code 0 (gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5478/srpm-builds/10828344/builder-live.log) [2026-08-06 06:21:04,560][ INFO][PID:2120235] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5478/srpm-builds/10828344/backend.log by gzip [2026-08-06 06:21:04,565][ INFO][PID:2120235] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5478/srpm-builds/10828344/backend.log' as PID 2202207