[2026-09-17 20:30:19,227][ INFO][PID:2403314] Marking build as starting [2026-09-17 20:30:19,321][ INFO][PID:2403314] Checking for cancel request [2026-09-17 20:30:19,322][ INFO][PID:2403314] VM allocation process starts [2026-09-17 20:30:19,329][ INFO][PID:2403314] Trying to allocate VM: ResallocHost, ticket_id=5090109, requested_tags=['arch_x86_64', 'copr_builder'] [2026-09-17 20:30:22,338][ INFO][PID:2403314] Allocated host ResallocHost, ticket_id=5090109, hostname=3.219.237.21, name=aws_x86_64_reserved_prod_39841131_20260917_202332, requested_tags=['arch_x86_64', 'copr_builder'] [2026-09-17 20:30:22,338][ INFO][PID:2403314] Allocating ssh connection to builder [2026-09-17 20:30:22,338][ INFO][PID:2403314] Checking that builder machine is OK [2026-09-17 20:30:22,623][ INFO][PID:2403314] Installed copr-rpmbuild version: 1.9 [2026-09-17 20:30:22,624][ INFO][PID:2403314] Running remote command: copr-builder-ready srpm-builds [2026-09-17 20:30:22,778][ INFO][PID:2403314] Red Hat subscription not needed for srpm-builds Builder is ready to be used [2026-09-17 20:30:22,778][ INFO][PID:2403314] Filling build.info file with builder info [2026-09-17 20:30:22,778][ INFO][PID:2403314] Checking for cancel request [2026-09-17 20:30:22,779][ INFO][PID:2403314] 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": 1789677022.7791684, "submitted_on": null, "status": 3, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10997953", "build_id": 10997953, "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\": \"tmpcv355941\", \"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--d44f9e16-8998-408c-8732-f4f623fe1d46", "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": "10997953", "built_packages": "", "tags": [ "arch_x86_64" ], "rpmeta_prediction": null, "id": 10997953, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2026-09-17 20:30:22,804][ INFO][PID:2403314] Sending fedora-messaging bus message in build.start [2026-09-17 20:30:23,168][ INFO][PID:2403314] Sending fedora-messaging bus message in chroot.start [2026-09-17 20:30:23,190][ INFO][PID:2403314] Starting remote build: copr-rpmbuild --verbose --drop-resultdir --srpm --task-url https://copr.fedorainfracloud.org/backend/get-srpm-build-task/10997953 --detached [2026-09-17 20:30:23,628][ INFO][PID:2403314] The copr-rpmbuild seems started, per: stdout: stderr: Warning: Permanently added '3.219.237.21' (ED25519) to the list of known hosts. [2026-09-17 20:30:23,629][ INFO][PID:2403314] Downloading the builder-live.log file, attempt 1 [2026-09-17 20:30:23,630][ INFO][PID:2403314] Popen command started: ssh -F /home/copr/.ssh/config mockbuilder@3.219.237.21 copr-rpmbuild-log [2026-09-17 20:30:28,633][ INFO][PID:2403314] Periodic builder liveness probe: alive [2026-09-17 20:30:28,634][ INFO][PID:2403314] Checking for cancel request [2026-09-17 20:30:33,634][ INFO][PID:2403314] Checking for cancel request [2026-09-17 20:30:38,635][ INFO][PID:2403314] Checking for cancel request [2026-09-17 20:30:43,636][ INFO][PID:2403314] Checking for cancel request [2026-09-17 20:30:48,637][ INFO][PID:2403314] Checking for cancel request [2026-09-17 20:30:53,638][ INFO][PID:2403314] Checking for cancel request [2026-09-17 20:30:58,638][ INFO][PID:2403314] Checking for cancel request [2026-09-17 20:31:03,639][ INFO][PID:2403314] Checking for cancel request [2026-09-17 20:31:08,640][ INFO][PID:2403314] Checking for cancel request [2026-09-17 20:31:13,641][ INFO][PID:2403314] Checking for cancel request [2026-09-17 20:31:18,642][ INFO][PID:2403314] Checking for cancel request [2026-09-17 20:31:23,643][ INFO][PID:2403314] Checking for cancel request [2026-09-17 20:31:28,644][ INFO][PID:2403314] Checking for cancel request [2026-09-17 20:31:33,644][ INFO][PID:2403314] Checking for cancel request [2026-09-17 20:31:38,645][ INFO][PID:2403314] Checking for cancel request [2026-09-17 20:31:43,646][ INFO][PID:2403314] Checking for cancel request [2026-09-17 20:31:48,647][ INFO][PID:2403314] Checking for cancel request [2026-09-17 20:31:53,648][ INFO][PID:2403314] Checking for cancel request [2026-09-17 20:31:58,649][ INFO][PID:2403314] Checking for cancel request [2026-09-17 20:32:03,650][ INFO][PID:2403314] Checking for cancel request [2026-09-17 20:32:08,651][ INFO][PID:2403314] Checking for cancel request [2026-09-17 20:32:13,652][ INFO][PID:2403314] Checking for cancel request [2026-09-17 20:32:18,652][ INFO][PID:2403314] Checking for cancel request [2026-09-17 20:32:23,653][ INFO][PID:2403314] Checking for cancel request [2026-09-17 20:32:28,654][ INFO][PID:2403314] Checking for cancel request [2026-09-17 20:32:33,655][ INFO][PID:2403314] Checking for cancel request [2026-09-17 20:32:38,656][ INFO][PID:2403314] Checking for cancel request [2026-09-17 20:32:43,657][ INFO][PID:2403314] Checking for cancel request [2026-09-17 20:32:48,658][ INFO][PID:2403314] Checking for cancel request [2026-09-17 20:32:53,659][ INFO][PID:2403314] Checking for cancel request [2026-09-17 20:32:58,659][ INFO][PID:2403314] Checking for cancel request [2026-09-17 20:33:03,660][ INFO][PID:2403314] Checking for cancel request [2026-09-17 20:33:08,661][ INFO][PID:2403314] Checking for cancel request [2026-09-17 20:33:13,662][ INFO][PID:2403314] Checking for cancel request [2026-09-17 20:33:18,663][ INFO][PID:2403314] Checking for cancel request [2026-09-17 20:33:23,664][ INFO][PID:2403314] Checking for cancel request [2026-09-17 20:33:28,665][ INFO][PID:2403314] Checking for cancel request [2026-09-17 20:33:33,666][ INFO][PID:2403314] Checking for cancel request [2026-09-17 20:33:38,667][ INFO][PID:2403314] Checking for cancel request [2026-09-17 20:33:43,668][ INFO][PID:2403314] Checking for cancel request [2026-09-17 20:33:48,669][ INFO][PID:2403314] Checking for cancel request [2026-09-17 20:33:53,669][ INFO][PID:2403314] Checking for cancel request [2026-09-17 20:33:58,670][ INFO][PID:2403314] Checking for cancel request [2026-09-17 20:34:03,671][ INFO][PID:2403314] Checking for cancel request [2026-09-17 20:34:08,672][ INFO][PID:2403314] Checking for cancel request [2026-09-17 20:34:13,673][ INFO][PID:2403314] Checking for cancel request [2026-09-17 20:34:18,674][ INFO][PID:2403314] Checking for cancel request [2026-09-17 20:34:23,674][ INFO][PID:2403314] Checking for cancel request [2026-09-17 20:34:28,675][ INFO][PID:2403314] Checking for cancel request [2026-09-17 20:34:33,676][ INFO][PID:2403314] Checking for cancel request [2026-09-17 20:34:38,678][ INFO][PID:2403314] Checking for cancel request [2026-09-17 20:34:43,679][ INFO][PID:2403314] Checking for cancel request [2026-09-17 20:34:48,680][ INFO][PID:2403314] Checking for cancel request [2026-09-17 20:34:53,681][ INFO][PID:2403314] Checking for cancel request [2026-09-17 20:34:58,682][ INFO][PID:2403314] Checking for cancel request [2026-09-17 20:35:03,683][ INFO][PID:2403314] Checking for cancel request [2026-09-17 20:35:08,684][ INFO][PID:2403314] Checking for cancel request [2026-09-17 20:35:13,685][ INFO][PID:2403314] Checking for cancel request [2026-09-17 20:35:18,686][ INFO][PID:2403314] Checking for cancel request [2026-09-17 20:35:23,687][ INFO][PID:2403314] Checking for cancel request [2026-09-17 20:35:28,687][ INFO][PID:2403314] Checking for cancel request [2026-09-17 20:35:33,688][ INFO][PID:2403314] Checking for cancel request [2026-09-17 20:35:38,689][ INFO][PID:2403314] Checking for cancel request [2026-09-17 20:35:43,690][ INFO][PID:2403314] Checking for cancel request [2026-09-17 20:35:48,692][ INFO][PID:2403314] Checking for cancel request [2026-09-17 20:35:53,693][ INFO][PID:2403314] Checking for cancel request [2026-09-17 20:35:58,694][ INFO][PID:2403314] Checking for cancel request [2026-09-17 20:36:03,694][ INFO][PID:2403314] Checking for cancel request [2026-09-17 20:36:08,695][ INFO][PID:2403314] Checking for cancel request [2026-09-17 20:36:13,696][ INFO][PID:2403314] Checking for cancel request [2026-09-17 20:36:18,697][ INFO][PID:2403314] Checking for cancel request [2026-09-17 20:36:23,698][ INFO][PID:2403314] Checking for cancel request [2026-09-17 20:36:28,700][ INFO][PID:2403314] Checking for cancel request [2026-09-17 20:36:33,701][ INFO][PID:2403314] Checking for cancel request [2026-09-17 20:36:38,702][ INFO][PID:2403314] Checking for cancel request [2026-09-17 20:36:43,703][ INFO][PID:2403314] Checking for cancel request [2026-09-17 20:36:48,705][ INFO][PID:2403314] Checking for cancel request [2026-09-17 20:36:53,706][ INFO][PID:2403314] Checking for cancel request [2026-09-17 20:36:58,706][ INFO][PID:2403314] Checking for cancel request [2026-09-17 20:37:03,707][ INFO][PID:2403314] Checking for cancel request [2026-09-17 20:37:08,708][ INFO][PID:2403314] Checking for cancel request [2026-09-17 20:37:13,709][ INFO][PID:2403314] Checking for cancel request [2026-09-17 20:37:18,710][ INFO][PID:2403314] Checking for cancel request [2026-09-17 20:37:23,711][ INFO][PID:2403314] Checking for cancel request [2026-09-17 20:37:28,712][ INFO][PID:2403314] Checking for cancel request [2026-09-17 20:37:33,713][ INFO][PID:2403314] Checking for cancel request [2026-09-17 20:37:38,714][ INFO][PID:2403314] Checking for cancel request [2026-09-17 20:37:43,715][ INFO][PID:2403314] Checking for cancel request [2026-09-17 20:37:48,716][ INFO][PID:2403314] Checking for cancel request [2026-09-17 20:37:53,717][ INFO][PID:2403314] Checking for cancel request [2026-09-17 20:37:58,717][ INFO][PID:2403314] Checking for cancel request [2026-09-17 20:38:03,718][ INFO][PID:2403314] Checking for cancel request [2026-09-17 20:38:08,719][ INFO][PID:2403314] Checking for cancel request [2026-09-17 20:38:13,720][ INFO][PID:2403314] Checking for cancel request [2026-09-17 20:38:18,721][ INFO][PID:2403314] Checking for cancel request [2026-09-17 20:38:23,722][ INFO][PID:2403314] Checking for cancel request [2026-09-17 20:38:28,723][ INFO][PID:2403314] Checking for cancel request [2026-09-17 20:38:33,723][ INFO][PID:2403314] Checking for cancel request [2026-09-17 20:38:38,724][ INFO][PID:2403314] Checking for cancel request [2026-09-17 20:38:43,725][ INFO][PID:2403314] Checking for cancel request [2026-09-17 20:38:48,726][ INFO][PID:2403314] Checking for cancel request [2026-09-17 20:38:53,727][ INFO][PID:2403314] Checking for cancel request [2026-09-17 20:38:58,728][ INFO][PID:2403314] Checking for cancel request [2026-09-17 20:39:03,728][ INFO][PID:2403314] Checking for cancel request [2026-09-17 20:39:08,729][ INFO][PID:2403314] Checking for cancel request [2026-09-17 20:39:13,730][ INFO][PID:2403314] Checking for cancel request [2026-09-17 20:39:18,731][ INFO][PID:2403314] Checking for cancel request [2026-09-17 20:39:23,732][ INFO][PID:2403314] Checking for cancel request [2026-09-17 20:39:28,733][ INFO][PID:2403314] Checking for cancel request [2026-09-17 20:39:33,733][ INFO][PID:2403314] Checking for cancel request [2026-09-17 20:39:38,734][ INFO][PID:2403314] Checking for cancel request [2026-09-17 20:39:43,735][ INFO][PID:2403314] Checking for cancel request [2026-09-17 20:39:48,736][ INFO][PID:2403314] Checking for cancel request [2026-09-17 20:39:53,737][ INFO][PID:2403314] Checking for cancel request [2026-09-17 20:39:58,738][ INFO][PID:2403314] Checking for cancel request [2026-09-17 20:40:03,739][ INFO][PID:2403314] Checking for cancel request [2026-09-17 20:40:08,740][ INFO][PID:2403314] Checking for cancel request [2026-09-17 20:40:13,740][ INFO][PID:2403314] Checking for cancel request [2026-09-17 20:40:18,741][ INFO][PID:2403314] Checking for cancel request [2026-09-17 20:40:23,742][ INFO][PID:2403314] Checking for cancel request [2026-09-17 20:40:28,748][ INFO][PID:2403314] Periodic builder liveness probe: alive [2026-09-17 20:40:28,749][ INFO][PID:2403314] Checking for cancel request [2026-09-17 20:40:33,749][ INFO][PID:2403314] Checking for cancel request [2026-09-17 20:40:38,750][ INFO][PID:2403314] Checking for cancel request [2026-09-17 20:40:43,751][ INFO][PID:2403314] Checking for cancel request [2026-09-17 20:40:48,752][ INFO][PID:2403314] Checking for cancel request [2026-09-17 20:40:53,753][ INFO][PID:2403314] Checking for cancel request [2026-09-17 20:40:58,754][ INFO][PID:2403314] Checking for cancel request [2026-09-17 20:41:03,755][ INFO][PID:2403314] Checking for cancel request [2026-09-17 20:41:05,666][ INFO][PID:2403314] Downloading results from builder [2026-09-17 20:41:05,667][ INFO][PID:2403314] rsyncing of mockbuilder@3.219.237.21:/var/lib/copr-rpmbuild/results/ to /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5739/srpm-builds/10997953 started [2026-09-17 20:41:05,668][ INFO][PID:2403314] Popen command started: /usr/bin/rsync -rltDvH --chmod=D755,F644 -e 'ssh -F /home/copr/.ssh/config' mockbuilder@3.219.237.21:/var/lib/copr-rpmbuild/results/ /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5739/srpm-builds/10997953/ &> /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5739/srpm-builds/10997953/build-10997953.rsync.log [2026-09-17 20:41:08,371][ INFO][PID:2403314] rsyncing finished. [2026-09-17 20:41:08,372][ INFO][PID:2403314] VM Release request [2026-09-17 20:41:08,377][ INFO][PID:2403314] Searching for 'success' file in resultdir [2026-09-17 20:41:08,378][ INFO][PID:2403314] Getting build details [2026-09-17 20:41:08,378][ INFO][PID:2403314] Retrieving SRPM info from /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5739/srpm-builds/10997953 [2026-09-17 20:41:08,379][ INFO][PID:2403314] SRPM URL: https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5739/srpm-builds/10997953/Sunshine-0.0.5739-1.src.rpm [2026-09-17 20:41:08,379][ INFO][PID:2403314] build details: {'srpm_url': 'https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5739/srpm-builds/10997953/Sunshine-0.0.5739-1.src.rpm', 'pkg_name': 'Sunshine', 'pkg_version': '0.0.5739-1'} [2026-09-17 20:41:08,379][ INFO][PID:2403314] Finished build: id=10997953 failed=False timeout=108000 destdir=/var/lib/copr/public_html/results/lizardbyte/pulls:pr:5739 chroot=srpm-builds [2026-09-17 20:41:08,380][ INFO][PID:2403314] Worker succeeded build, took 645.6008634567261 [2026-09-17 20:41:08,380][ INFO][PID:2403314] 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": 1789677668.3800318, "started_on": 1789677022.7791684, "submitted_on": null, "status": 1, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10997953", "build_id": 10997953, "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\": \"tmpcv355941\", \"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/10997953/Sunshine-0.0.5739-1.src.rpm", "uses_devel_repo": null, "sandbox": "lizardbyte/pulls--d44f9e16-8998-408c-8732-f4f623fe1d46", "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": "10997953", "built_packages": "", "tags": [ "arch_x86_64" ], "rpmeta_prediction": null, "pkg_version": "0.0.5739-1", "id": 10997953, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2026-09-17 20:41:08,426][ INFO][PID:2403314] Sending fedora-messaging bus message in build.end [2026-09-17 20:41:08,448][ INFO][PID:2403314] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5739/srpm-builds/10997953/builder-live.log by gzip [2026-09-17 20:41:08,448][ INFO][PID:2403314] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5739/srpm-builds/10997953/builder-live.log' as PID 2565758 [2026-09-17 20:41:08,453][ INFO][PID:2403314] Finished after 0 seconds with exit code 0 (gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5739/srpm-builds/10997953/builder-live.log) [2026-09-17 20:41:08,453][ INFO][PID:2403314] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5739/srpm-builds/10997953/backend.log by gzip [2026-09-17 20:41:08,454][ INFO][PID:2403314] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5739/srpm-builds/10997953/backend.log' as PID 2565761