[2026-09-07 12:07:43,283][ INFO][PID:2448479] Marking build as starting [2026-09-07 12:07:43,309][ INFO][PID:2448479] Checking for cancel request [2026-09-07 12:07:43,311][ INFO][PID:2448479] VM allocation process starts [2026-09-07 12:07:43,316][ INFO][PID:2448479] Trying to allocate VM: ResallocHost, ticket_id=4881953, requested_tags=['arch_x86_64', 'copr_builder'] [2026-09-07 12:07:46,324][ INFO][PID:2448479] Allocated host ResallocHost, ticket_id=4881953, hostname=44.201.131.45, name=aws_x86_64_reserved_prod_30625579_20260907_120554, requested_tags=['arch_x86_64', 'copr_builder'] [2026-09-07 12:07:46,325][ INFO][PID:2448479] Allocating ssh connection to builder [2026-09-07 12:07:46,325][ INFO][PID:2448479] Checking that builder machine is OK [2026-09-07 12:07:46,601][ INFO][PID:2448479] Installed copr-rpmbuild version: 1.9 [2026-09-07 12:07:46,602][ INFO][PID:2448479] Running remote command: copr-builder-ready srpm-builds [2026-09-07 12:07:46,801][ INFO][PID:2448479] Red Hat subscription not needed for srpm-builds Builder is ready to be used [2026-09-07 12:07:46,803][ INFO][PID:2448479] Filling build.info file with builder info [2026-09-07 12:07:46,804][ INFO][PID:2448479] Checking for cancel request [2026-09-07 12:07:46,805][ INFO][PID:2448479] 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": "stable", "project_dirname": "stable", "submitter": null, "ended_on": null, "started_on": 1788782866.805784, "submitted_on": null, "status": 3, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10956947", "build_id": 10956947, "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\": \"tmp0q72vv__\", \"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/stable--a8f2e223-dc46-4d91-9c30-a2f0114f9223", "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" ], "distributions_in_project": [ "fedora-43", "fedora-44", "fedora-45", "fedora-rawhide" ], "destdir": "/var/lib/copr/public_html/results/lizardbyte/stable", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/lizardbyte/stable", "result_dir": "10956947", "built_packages": "", "tags": [ "arch_x86_64" ], "rpmeta_prediction": null, "id": 10956947, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "stable", "vendor": "Fedora Project COPR (lizardbyte/stable)" } } ] } [2026-09-07 12:07:46,835][ INFO][PID:2448479] Sending fedora-messaging bus message in build.start [2026-09-07 12:07:47,804][ INFO][PID:2448479] Sending fedora-messaging bus message in chroot.start [2026-09-07 12:07:47,882][ INFO][PID:2448479] Starting remote build: copr-rpmbuild --verbose --drop-resultdir --srpm --task-url https://copr.fedorainfracloud.org/backend/get-srpm-build-task/10956947 --detached [2026-09-07 12:07:48,462][ INFO][PID:2448479] The copr-rpmbuild seems started, per: stdout: stderr: Warning: Permanently added '44.201.131.45' (ED25519) to the list of known hosts. [2026-09-07 12:07:48,464][ INFO][PID:2448479] Downloading the builder-live.log file, attempt 1 [2026-09-07 12:07:48,465][ INFO][PID:2448479] Popen command started: ssh -F /home/copr/.ssh/config mockbuilder@44.201.131.45 copr-rpmbuild-log [2026-09-07 12:07:53,496][ INFO][PID:2448479] Periodic builder liveness probe: alive [2026-09-07 12:07:53,497][ INFO][PID:2448479] Checking for cancel request [2026-09-07 12:07:58,498][ INFO][PID:2448479] Checking for cancel request [2026-09-07 12:08:03,499][ INFO][PID:2448479] Checking for cancel request [2026-09-07 12:08:08,500][ INFO][PID:2448479] Checking for cancel request [2026-09-07 12:08:13,501][ INFO][PID:2448479] Checking for cancel request [2026-09-07 12:08:18,502][ INFO][PID:2448479] Checking for cancel request [2026-09-07 12:08:23,505][ INFO][PID:2448479] Checking for cancel request [2026-09-07 12:08:28,506][ INFO][PID:2448479] Checking for cancel request [2026-09-07 12:08:33,507][ INFO][PID:2448479] Checking for cancel request [2026-09-07 12:08:38,508][ INFO][PID:2448479] Checking for cancel request [2026-09-07 12:08:43,509][ INFO][PID:2448479] Checking for cancel request [2026-09-07 12:08:48,510][ INFO][PID:2448479] Checking for cancel request [2026-09-07 12:08:53,511][ INFO][PID:2448479] Checking for cancel request [2026-09-07 12:08:58,512][ INFO][PID:2448479] Checking for cancel request [2026-09-07 12:09:03,513][ INFO][PID:2448479] Checking for cancel request [2026-09-07 12:09:08,514][ INFO][PID:2448479] Checking for cancel request [2026-09-07 12:09:13,515][ INFO][PID:2448479] Checking for cancel request [2026-09-07 12:09:18,516][ INFO][PID:2448479] Checking for cancel request [2026-09-07 12:09:23,517][ INFO][PID:2448479] Checking for cancel request [2026-09-07 12:09:28,518][ INFO][PID:2448479] Checking for cancel request [2026-09-07 12:09:33,519][ INFO][PID:2448479] Checking for cancel request [2026-09-07 12:09:38,520][ INFO][PID:2448479] Checking for cancel request [2026-09-07 12:09:43,521][ INFO][PID:2448479] Checking for cancel request [2026-09-07 12:09:48,522][ INFO][PID:2448479] Checking for cancel request [2026-09-07 12:09:53,523][ INFO][PID:2448479] Checking for cancel request [2026-09-07 12:09:58,524][ INFO][PID:2448479] Checking for cancel request [2026-09-07 12:10:03,525][ INFO][PID:2448479] Checking for cancel request [2026-09-07 12:10:08,526][ INFO][PID:2448479] Checking for cancel request [2026-09-07 12:10:13,527][ INFO][PID:2448479] Checking for cancel request [2026-09-07 12:10:18,528][ INFO][PID:2448479] Checking for cancel request [2026-09-07 12:10:23,529][ INFO][PID:2448479] Checking for cancel request [2026-09-07 12:10:28,529][ INFO][PID:2448479] Checking for cancel request [2026-09-07 12:10:33,531][ INFO][PID:2448479] Checking for cancel request [2026-09-07 12:10:38,531][ INFO][PID:2448479] Checking for cancel request [2026-09-07 12:10:43,532][ INFO][PID:2448479] Checking for cancel request [2026-09-07 12:10:48,533][ INFO][PID:2448479] Checking for cancel request [2026-09-07 12:10:53,534][ INFO][PID:2448479] Checking for cancel request [2026-09-07 12:10:58,535][ INFO][PID:2448479] Checking for cancel request [2026-09-07 12:11:03,536][ INFO][PID:2448479] Checking for cancel request [2026-09-07 12:11:08,537][ INFO][PID:2448479] Checking for cancel request [2026-09-07 12:11:13,538][ INFO][PID:2448479] Checking for cancel request [2026-09-07 12:11:18,539][ INFO][PID:2448479] Checking for cancel request [2026-09-07 12:11:23,540][ INFO][PID:2448479] Checking for cancel request [2026-09-07 12:11:28,541][ INFO][PID:2448479] Checking for cancel request [2026-09-07 12:11:33,542][ INFO][PID:2448479] Checking for cancel request [2026-09-07 12:11:38,543][ INFO][PID:2448479] Checking for cancel request [2026-09-07 12:11:43,544][ INFO][PID:2448479] Checking for cancel request [2026-09-07 12:11:48,544][ INFO][PID:2448479] Checking for cancel request [2026-09-07 12:11:53,545][ INFO][PID:2448479] Checking for cancel request [2026-09-07 12:11:58,546][ INFO][PID:2448479] Checking for cancel request [2026-09-07 12:12:03,547][ INFO][PID:2448479] Checking for cancel request [2026-09-07 12:12:08,548][ INFO][PID:2448479] Checking for cancel request [2026-09-07 12:12:13,549][ INFO][PID:2448479] Checking for cancel request [2026-09-07 12:12:18,550][ INFO][PID:2448479] Checking for cancel request [2026-09-07 12:12:23,551][ INFO][PID:2448479] Checking for cancel request [2026-09-07 12:12:28,552][ INFO][PID:2448479] Checking for cancel request [2026-09-07 12:12:33,553][ INFO][PID:2448479] Checking for cancel request [2026-09-07 12:12:38,553][ INFO][PID:2448479] Checking for cancel request [2026-09-07 12:12:43,554][ INFO][PID:2448479] Checking for cancel request [2026-09-07 12:12:48,555][ INFO][PID:2448479] Checking for cancel request [2026-09-07 12:12:53,556][ INFO][PID:2448479] Checking for cancel request [2026-09-07 12:12:58,557][ INFO][PID:2448479] Checking for cancel request [2026-09-07 12:13:03,558][ INFO][PID:2448479] Checking for cancel request [2026-09-07 12:13:08,559][ INFO][PID:2448479] Checking for cancel request [2026-09-07 12:13:13,560][ INFO][PID:2448479] Checking for cancel request [2026-09-07 12:13:18,561][ INFO][PID:2448479] Checking for cancel request [2026-09-07 12:13:23,561][ INFO][PID:2448479] Checking for cancel request [2026-09-07 12:13:28,562][ INFO][PID:2448479] Checking for cancel request [2026-09-07 12:13:33,563][ INFO][PID:2448479] Checking for cancel request [2026-09-07 12:13:38,564][ INFO][PID:2448479] Checking for cancel request [2026-09-07 12:13:43,565][ INFO][PID:2448479] Checking for cancel request [2026-09-07 12:13:48,566][ INFO][PID:2448479] Checking for cancel request [2026-09-07 12:13:53,567][ INFO][PID:2448479] Checking for cancel request [2026-09-07 12:13:58,568][ INFO][PID:2448479] Checking for cancel request [2026-09-07 12:14:03,569][ INFO][PID:2448479] Checking for cancel request [2026-09-07 12:14:08,569][ INFO][PID:2448479] Checking for cancel request [2026-09-07 12:14:13,570][ INFO][PID:2448479] Checking for cancel request [2026-09-07 12:14:18,571][ INFO][PID:2448479] Checking for cancel request [2026-09-07 12:14:23,572][ INFO][PID:2448479] Checking for cancel request [2026-09-07 12:14:28,573][ INFO][PID:2448479] Checking for cancel request [2026-09-07 12:14:33,574][ INFO][PID:2448479] Checking for cancel request [2026-09-07 12:14:38,575][ INFO][PID:2448479] Checking for cancel request [2026-09-07 12:14:43,576][ INFO][PID:2448479] Checking for cancel request [2026-09-07 12:14:48,576][ INFO][PID:2448479] Checking for cancel request [2026-09-07 12:14:53,577][ INFO][PID:2448479] Checking for cancel request [2026-09-07 12:14:58,578][ INFO][PID:2448479] Checking for cancel request [2026-09-07 12:15:03,579][ INFO][PID:2448479] Checking for cancel request [2026-09-07 12:15:08,580][ INFO][PID:2448479] Checking for cancel request [2026-09-07 12:15:13,581][ INFO][PID:2448479] Checking for cancel request [2026-09-07 12:15:18,582][ INFO][PID:2448479] Checking for cancel request [2026-09-07 12:15:23,583][ INFO][PID:2448479] Checking for cancel request [2026-09-07 12:15:28,584][ INFO][PID:2448479] Checking for cancel request [2026-09-07 12:15:33,585][ INFO][PID:2448479] Checking for cancel request [2026-09-07 12:15:38,586][ INFO][PID:2448479] Checking for cancel request [2026-09-07 12:15:43,587][ INFO][PID:2448479] Checking for cancel request [2026-09-07 12:15:48,587][ INFO][PID:2448479] Checking for cancel request [2026-09-07 12:15:53,588][ INFO][PID:2448479] Checking for cancel request [2026-09-07 12:15:58,589][ INFO][PID:2448479] Checking for cancel request [2026-09-07 12:16:03,590][ INFO][PID:2448479] Checking for cancel request [2026-09-07 12:16:08,591][ INFO][PID:2448479] Checking for cancel request [2026-09-07 12:16:13,592][ INFO][PID:2448479] Checking for cancel request [2026-09-07 12:16:18,593][ INFO][PID:2448479] Checking for cancel request [2026-09-07 12:16:23,594][ INFO][PID:2448479] Checking for cancel request [2026-09-07 12:16:28,596][ INFO][PID:2448479] Checking for cancel request [2026-09-07 12:16:33,597][ INFO][PID:2448479] Checking for cancel request [2026-09-07 12:16:38,598][ INFO][PID:2448479] Checking for cancel request [2026-09-07 12:16:43,599][ INFO][PID:2448479] Checking for cancel request [2026-09-07 12:16:48,599][ INFO][PID:2448479] Checking for cancel request [2026-09-07 12:16:53,600][ INFO][PID:2448479] Checking for cancel request [2026-09-07 12:16:58,601][ INFO][PID:2448479] Checking for cancel request [2026-09-07 12:17:03,602][ INFO][PID:2448479] Checking for cancel request [2026-09-07 12:17:08,603][ INFO][PID:2448479] Checking for cancel request [2026-09-07 12:17:13,604][ INFO][PID:2448479] Checking for cancel request [2026-09-07 12:17:18,605][ INFO][PID:2448479] Checking for cancel request [2026-09-07 12:17:23,605][ INFO][PID:2448479] Checking for cancel request [2026-09-07 12:17:28,606][ INFO][PID:2448479] Checking for cancel request [2026-09-07 12:17:33,607][ INFO][PID:2448479] Checking for cancel request [2026-09-07 12:17:38,608][ INFO][PID:2448479] Checking for cancel request [2026-09-07 12:17:43,609][ INFO][PID:2448479] Checking for cancel request [2026-09-07 12:17:48,610][ INFO][PID:2448479] Checking for cancel request [2026-09-07 12:17:53,615][ INFO][PID:2448479] Periodic builder liveness probe: alive [2026-09-07 12:17:53,615][ INFO][PID:2448479] Checking for cancel request [2026-09-07 12:17:58,616][ INFO][PID:2448479] Checking for cancel request [2026-09-07 12:18:03,616][ INFO][PID:2448479] Checking for cancel request [2026-09-07 12:18:08,617][ INFO][PID:2448479] Checking for cancel request [2026-09-07 12:18:13,618][ INFO][PID:2448479] Checking for cancel request [2026-09-07 12:18:18,619][ INFO][PID:2448479] Checking for cancel request [2026-09-07 12:18:23,620][ INFO][PID:2448479] Checking for cancel request [2026-09-07 12:18:28,621][ INFO][PID:2448479] Checking for cancel request [2026-09-07 12:18:33,622][ INFO][PID:2448479] Checking for cancel request [2026-09-07 12:18:38,622][ INFO][PID:2448479] Checking for cancel request [2026-09-07 12:18:42,242][ INFO][PID:2448479] Downloading results from builder [2026-09-07 12:18:42,242][ INFO][PID:2448479] rsyncing of mockbuilder@44.201.131.45:/var/lib/copr-rpmbuild/results/ to /var/lib/copr/public_html/results/lizardbyte/stable/srpm-builds/10956947 started [2026-09-07 12:18:42,243][ INFO][PID:2448479] Popen command started: /usr/bin/rsync -rltDvH --chmod=D755,F644 -e 'ssh -F /home/copr/.ssh/config' mockbuilder@44.201.131.45:/var/lib/copr-rpmbuild/results/ /var/lib/copr/public_html/results/lizardbyte/stable/srpm-builds/10956947/ &> /var/lib/copr/public_html/results/lizardbyte/stable/srpm-builds/10956947/build-10956947.rsync.log [2026-09-07 12:18:44,290][ INFO][PID:2448479] rsyncing finished. [2026-09-07 12:18:44,291][ INFO][PID:2448479] VM Release request [2026-09-07 12:18:44,297][ INFO][PID:2448479] Searching for 'success' file in resultdir [2026-09-07 12:18:44,297][ INFO][PID:2448479] Getting build details [2026-09-07 12:18:44,297][ INFO][PID:2448479] Retrieving SRPM info from /var/lib/copr/public_html/results/lizardbyte/stable/srpm-builds/10956947 [2026-09-07 12:18:44,298][ INFO][PID:2448479] SRPM URL: https://download.copr.fedorainfracloud.org/results/lizardbyte/stable/srpm-builds/10956947/Sunshine-2026.906.222525-1.src.rpm [2026-09-07 12:18:44,298][ INFO][PID:2448479] build details: {'srpm_url': 'https://download.copr.fedorainfracloud.org/results/lizardbyte/stable/srpm-builds/10956947/Sunshine-2026.906.222525-1.src.rpm', 'pkg_name': 'Sunshine', 'pkg_version': '2026.906.222525-1'} [2026-09-07 12:18:44,298][ INFO][PID:2448479] Finished build: id=10956947 failed=False timeout=108000 destdir=/var/lib/copr/public_html/results/lizardbyte/stable chroot=srpm-builds [2026-09-07 12:18:44,299][ INFO][PID:2448479] Worker succeeded build, took 657.493323802948 [2026-09-07 12:18:44,299][ INFO][PID:2448479] 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": "stable", "project_dirname": "stable", "submitter": null, "ended_on": 1788783524.2991078, "started_on": 1788782866.805784, "submitted_on": null, "status": 1, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10956947", "build_id": 10956947, "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\": \"tmp0q72vv__\", \"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/stable/srpm-builds/10956947/Sunshine-2026.906.222525-1.src.rpm", "uses_devel_repo": null, "sandbox": "lizardbyte/stable--a8f2e223-dc46-4d91-9c30-a2f0114f9223", "results": { "architecture_specific_tags": { "fedora-43": {}, "fedora-44": {}, "fedora-45": {}, "fedora-rawhide": {} }, "name": "Sunshine", "epoch": null, "version": "2026.906.222525", "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" ], "distributions_in_project": [ "fedora-43", "fedora-44", "fedora-45", "fedora-rawhide" ], "destdir": "/var/lib/copr/public_html/results/lizardbyte/stable", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/lizardbyte/stable", "result_dir": "10956947", "built_packages": "", "tags": [ "arch_x86_64" ], "rpmeta_prediction": null, "pkg_version": "2026.906.222525-1", "id": 10956947, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "stable", "vendor": "Fedora Project COPR (lizardbyte/stable)" } } ] } [2026-09-07 12:18:44,338][ INFO][PID:2448479] Sending fedora-messaging bus message in build.end [2026-09-07 12:18:44,409][ INFO][PID:2448479] Compressing /var/lib/copr/public_html/results/lizardbyte/stable/srpm-builds/10956947/builder-live.log by gzip [2026-09-07 12:18:44,410][ INFO][PID:2448479] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/stable/srpm-builds/10956947/builder-live.log' as PID 2596559 [2026-09-07 12:18:44,414][ INFO][PID:2448479] Finished after 0 seconds with exit code 0 (gzip /var/lib/copr/public_html/results/lizardbyte/stable/srpm-builds/10956947/builder-live.log) [2026-09-07 12:18:44,415][ INFO][PID:2448479] Compressing /var/lib/copr/public_html/results/lizardbyte/stable/srpm-builds/10956947/backend.log by gzip [2026-09-07 12:18:44,415][ INFO][PID:2448479] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/stable/srpm-builds/10956947/backend.log' as PID 2596560