[2026-09-12 06:21:25,721][ INFO][PID:1538179] Marking build as starting [2026-09-12 06:21:25,751][ INFO][PID:1538179] Checking for cancel request [2026-09-12 06:21:25,751][ INFO][PID:1538179] VM allocation process starts [2026-09-12 06:21:25,785][ INFO][PID:1538179] Trying to allocate VM: ResallocHost, ticket_id=4982945, requested_tags=['arch_x86_64', 'copr_builder'] [2026-09-12 06:21:28,830][ INFO][PID:1538179] Allocated host ResallocHost, ticket_id=4982945, hostname=13.222.103.112, name=aws_x86_64_reserved_prod_34932971_20260912_060914, requested_tags=['arch_x86_64', 'copr_builder'] [2026-09-12 06:21:28,831][ INFO][PID:1538179] Allocating ssh connection to builder [2026-09-12 06:21:28,831][ INFO][PID:1538179] Checking that builder machine is OK [2026-09-12 06:21:29,106][ INFO][PID:1538179] Installed copr-rpmbuild version: 1.9 [2026-09-12 06:21:29,164][ INFO][PID:1538179] Running remote command: copr-builder-ready srpm-builds [2026-09-12 06:21:29,307][ INFO][PID:1538179] Red Hat subscription not needed for srpm-builds Builder is ready to be used [2026-09-12 06:21:29,307][ INFO][PID:1538179] Filling build.info file with builder info [2026-09-12 06:21:29,308][ INFO][PID:1538179] Checking for cancel request [2026-09-12 06:21:29,308][ INFO][PID:1538179] 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:5694", "submitter": null, "ended_on": null, "started_on": 1789194089.3085103, "submitted_on": null, "status": 3, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10978920", "build_id": 10978920, "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\": \"tmposi2hgp4\", \"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--8f2cf59f-acad-4733-b3f6-acdd2a495721", "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:5694", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5694", "result_dir": "10978920", "built_packages": "", "tags": [ "arch_x86_64" ], "rpmeta_prediction": null, "id": 10978920, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2026-09-12 06:21:29,338][ INFO][PID:1538179] Sending fedora-messaging bus message in build.start [2026-09-12 06:21:29,713][ INFO][PID:1538179] Sending fedora-messaging bus message in chroot.start [2026-09-12 06:21:29,733][ INFO][PID:1538179] Starting remote build: copr-rpmbuild --verbose --drop-resultdir --srpm --task-url https://copr.fedorainfracloud.org/backend/get-srpm-build-task/10978920 --detached [2026-09-12 06:21:30,303][ INFO][PID:1538179] The copr-rpmbuild seems started, per: stdout: stderr: Warning: Permanently added '13.222.103.112' (ED25519) to the list of known hosts. [2026-09-12 06:21:30,303][ INFO][PID:1538179] Downloading the builder-live.log file, attempt 1 [2026-09-12 06:21:30,304][ INFO][PID:1538179] Popen command started: ssh -F /home/copr/.ssh/config mockbuilder@13.222.103.112 copr-rpmbuild-log [2026-09-12 06:21:35,307][ INFO][PID:1538179] Periodic builder liveness probe: alive [2026-09-12 06:21:35,307][ INFO][PID:1538179] Checking for cancel request [2026-09-12 06:21:40,308][ INFO][PID:1538179] Checking for cancel request [2026-09-12 06:21:45,309][ INFO][PID:1538179] Checking for cancel request [2026-09-12 06:21:50,310][ INFO][PID:1538179] Checking for cancel request [2026-09-12 06:21:55,311][ INFO][PID:1538179] Checking for cancel request [2026-09-12 06:22:00,311][ INFO][PID:1538179] Checking for cancel request [2026-09-12 06:22:05,312][ INFO][PID:1538179] Checking for cancel request [2026-09-12 06:22:10,313][ INFO][PID:1538179] Checking for cancel request [2026-09-12 06:22:15,314][ INFO][PID:1538179] Checking for cancel request [2026-09-12 06:22:20,315][ INFO][PID:1538179] Checking for cancel request [2026-09-12 06:22:25,316][ INFO][PID:1538179] Checking for cancel request [2026-09-12 06:22:30,317][ INFO][PID:1538179] Checking for cancel request [2026-09-12 06:22:35,318][ INFO][PID:1538179] Checking for cancel request [2026-09-12 06:22:40,319][ INFO][PID:1538179] Checking for cancel request [2026-09-12 06:22:45,319][ INFO][PID:1538179] Checking for cancel request [2026-09-12 06:22:50,320][ INFO][PID:1538179] Checking for cancel request [2026-09-12 06:22:55,321][ INFO][PID:1538179] Checking for cancel request [2026-09-12 06:23:00,322][ INFO][PID:1538179] Checking for cancel request [2026-09-12 06:23:05,323][ INFO][PID:1538179] Checking for cancel request [2026-09-12 06:23:10,324][ INFO][PID:1538179] Checking for cancel request [2026-09-12 06:23:15,325][ INFO][PID:1538179] Checking for cancel request [2026-09-12 06:23:20,326][ INFO][PID:1538179] Checking for cancel request [2026-09-12 06:23:25,327][ INFO][PID:1538179] Checking for cancel request [2026-09-12 06:23:30,328][ INFO][PID:1538179] Checking for cancel request [2026-09-12 06:23:35,328][ INFO][PID:1538179] Checking for cancel request [2026-09-12 06:23:40,329][ INFO][PID:1538179] Checking for cancel request [2026-09-12 06:23:45,330][ INFO][PID:1538179] Checking for cancel request [2026-09-12 06:23:50,331][ INFO][PID:1538179] Checking for cancel request [2026-09-12 06:23:55,332][ INFO][PID:1538179] Checking for cancel request [2026-09-12 06:24:00,333][ INFO][PID:1538179] Checking for cancel request [2026-09-12 06:24:05,334][ INFO][PID:1538179] Checking for cancel request [2026-09-12 06:24:10,335][ INFO][PID:1538179] Checking for cancel request [2026-09-12 06:24:15,335][ INFO][PID:1538179] Checking for cancel request [2026-09-12 06:24:20,336][ INFO][PID:1538179] Checking for cancel request [2026-09-12 06:24:25,337][ INFO][PID:1538179] Checking for cancel request [2026-09-12 06:24:30,338][ INFO][PID:1538179] Checking for cancel request [2026-09-12 06:24:35,339][ INFO][PID:1538179] Checking for cancel request [2026-09-12 06:24:40,340][ INFO][PID:1538179] Checking for cancel request [2026-09-12 06:24:45,341][ INFO][PID:1538179] Checking for cancel request [2026-09-12 06:24:50,342][ INFO][PID:1538179] Checking for cancel request [2026-09-12 06:24:55,342][ INFO][PID:1538179] Checking for cancel request [2026-09-12 06:25:00,344][ INFO][PID:1538179] Checking for cancel request [2026-09-12 06:25:05,344][ INFO][PID:1538179] Checking for cancel request [2026-09-12 06:25:10,345][ INFO][PID:1538179] Checking for cancel request [2026-09-12 06:25:15,346][ INFO][PID:1538179] Checking for cancel request [2026-09-12 06:25:20,347][ INFO][PID:1538179] Checking for cancel request [2026-09-12 06:25:25,348][ INFO][PID:1538179] Checking for cancel request [2026-09-12 06:25:30,349][ INFO][PID:1538179] Checking for cancel request [2026-09-12 06:25:35,349][ INFO][PID:1538179] Checking for cancel request [2026-09-12 06:25:40,350][ INFO][PID:1538179] Checking for cancel request [2026-09-12 06:25:45,351][ INFO][PID:1538179] Checking for cancel request [2026-09-12 06:25:50,352][ INFO][PID:1538179] Checking for cancel request [2026-09-12 06:25:55,353][ INFO][PID:1538179] Checking for cancel request [2026-09-12 06:26:00,354][ INFO][PID:1538179] Checking for cancel request [2026-09-12 06:26:05,355][ INFO][PID:1538179] Checking for cancel request [2026-09-12 06:26:10,355][ INFO][PID:1538179] Checking for cancel request [2026-09-12 06:26:15,356][ INFO][PID:1538179] Checking for cancel request [2026-09-12 06:26:20,357][ INFO][PID:1538179] Checking for cancel request [2026-09-12 06:26:25,358][ INFO][PID:1538179] Checking for cancel request [2026-09-12 06:26:30,359][ INFO][PID:1538179] Checking for cancel request [2026-09-12 06:26:35,360][ INFO][PID:1538179] Checking for cancel request [2026-09-12 06:26:40,360][ INFO][PID:1538179] Checking for cancel request [2026-09-12 06:26:45,361][ INFO][PID:1538179] Checking for cancel request [2026-09-12 06:26:50,362][ INFO][PID:1538179] Checking for cancel request [2026-09-12 06:26:55,363][ INFO][PID:1538179] Checking for cancel request [2026-09-12 06:27:00,364][ INFO][PID:1538179] Checking for cancel request [2026-09-12 06:27:05,365][ INFO][PID:1538179] Checking for cancel request [2026-09-12 06:27:10,366][ INFO][PID:1538179] Checking for cancel request [2026-09-12 06:27:15,367][ INFO][PID:1538179] Checking for cancel request [2026-09-12 06:27:20,368][ INFO][PID:1538179] Checking for cancel request [2026-09-12 06:27:25,368][ INFO][PID:1538179] Checking for cancel request [2026-09-12 06:27:30,369][ INFO][PID:1538179] Checking for cancel request [2026-09-12 06:27:35,370][ INFO][PID:1538179] Checking for cancel request [2026-09-12 06:27:40,371][ INFO][PID:1538179] Checking for cancel request [2026-09-12 06:27:45,372][ INFO][PID:1538179] Checking for cancel request [2026-09-12 06:27:50,373][ INFO][PID:1538179] Checking for cancel request [2026-09-12 06:27:55,374][ INFO][PID:1538179] Checking for cancel request [2026-09-12 06:28:00,375][ INFO][PID:1538179] Checking for cancel request [2026-09-12 06:28:05,376][ INFO][PID:1538179] Checking for cancel request [2026-09-12 06:28:10,376][ INFO][PID:1538179] Checking for cancel request [2026-09-12 06:28:15,377][ INFO][PID:1538179] Checking for cancel request [2026-09-12 06:28:20,378][ INFO][PID:1538179] Checking for cancel request [2026-09-12 06:28:25,379][ INFO][PID:1538179] Checking for cancel request [2026-09-12 06:28:30,380][ INFO][PID:1538179] Checking for cancel request [2026-09-12 06:28:35,381][ INFO][PID:1538179] Checking for cancel request [2026-09-12 06:28:40,382][ INFO][PID:1538179] Checking for cancel request [2026-09-12 06:28:45,383][ INFO][PID:1538179] Checking for cancel request [2026-09-12 06:28:50,384][ INFO][PID:1538179] Checking for cancel request [2026-09-12 06:28:55,385][ INFO][PID:1538179] Checking for cancel request [2026-09-12 06:29:00,386][ INFO][PID:1538179] Checking for cancel request [2026-09-12 06:29:05,387][ INFO][PID:1538179] Checking for cancel request [2026-09-12 06:29:10,388][ INFO][PID:1538179] Checking for cancel request [2026-09-12 06:29:15,388][ INFO][PID:1538179] Checking for cancel request [2026-09-12 06:29:20,389][ INFO][PID:1538179] Checking for cancel request [2026-09-12 06:29:25,390][ INFO][PID:1538179] Checking for cancel request [2026-09-12 06:29:30,391][ INFO][PID:1538179] Checking for cancel request [2026-09-12 06:29:35,392][ INFO][PID:1538179] Checking for cancel request [2026-09-12 06:29:40,393][ INFO][PID:1538179] Checking for cancel request [2026-09-12 06:29:45,394][ INFO][PID:1538179] Checking for cancel request [2026-09-12 06:29:50,395][ INFO][PID:1538179] Checking for cancel request [2026-09-12 06:29:55,396][ INFO][PID:1538179] Checking for cancel request [2026-09-12 06:30:00,397][ INFO][PID:1538179] Checking for cancel request [2026-09-12 06:30:05,398][ INFO][PID:1538179] Checking for cancel request [2026-09-12 06:30:10,398][ INFO][PID:1538179] Checking for cancel request [2026-09-12 06:30:15,399][ INFO][PID:1538179] Checking for cancel request [2026-09-12 06:30:20,400][ INFO][PID:1538179] Checking for cancel request [2026-09-12 06:30:25,401][ INFO][PID:1538179] Checking for cancel request [2026-09-12 06:30:30,402][ INFO][PID:1538179] Checking for cancel request [2026-09-12 06:30:35,403][ INFO][PID:1538179] Checking for cancel request [2026-09-12 06:30:40,404][ INFO][PID:1538179] Checking for cancel request [2026-09-12 06:30:45,405][ INFO][PID:1538179] Checking for cancel request [2026-09-12 06:30:50,406][ INFO][PID:1538179] Checking for cancel request [2026-09-12 06:30:55,407][ INFO][PID:1538179] Checking for cancel request [2026-09-12 06:31:00,476][ INFO][PID:1538179] Checking for cancel request [2026-09-12 06:31:05,477][ INFO][PID:1538179] Checking for cancel request [2026-09-12 06:31:10,478][ INFO][PID:1538179] Checking for cancel request [2026-09-12 06:31:15,478][ INFO][PID:1538179] Checking for cancel request [2026-09-12 06:31:20,479][ INFO][PID:1538179] Checking for cancel request [2026-09-12 06:31:25,480][ INFO][PID:1538179] Checking for cancel request [2026-09-12 06:31:30,507][ INFO][PID:1538179] Checking for cancel request [2026-09-12 06:31:35,511][ INFO][PID:1538179] Periodic builder liveness probe: alive [2026-09-12 06:31:35,512][ INFO][PID:1538179] Checking for cancel request [2026-09-12 06:31:40,512][ INFO][PID:1538179] Checking for cancel request [2026-09-12 06:31:45,513][ INFO][PID:1538179] Checking for cancel request [2026-09-12 06:31:50,514][ INFO][PID:1538179] Checking for cancel request [2026-09-12 06:31:55,515][ INFO][PID:1538179] Checking for cancel request [2026-09-12 06:32:00,546][ INFO][PID:1538179] Checking for cancel request [2026-09-12 06:32:05,450][ INFO][PID:1538179] Downloading results from builder [2026-09-12 06:32:05,450][ INFO][PID:1538179] rsyncing of mockbuilder@13.222.103.112:/var/lib/copr-rpmbuild/results/ to /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5694/srpm-builds/10978920 started [2026-09-12 06:32:05,451][ INFO][PID:1538179] Popen command started: /usr/bin/rsync -rltDvH --chmod=D755,F644 -e 'ssh -F /home/copr/.ssh/config' mockbuilder@13.222.103.112:/var/lib/copr-rpmbuild/results/ /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5694/srpm-builds/10978920/ &> /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5694/srpm-builds/10978920/build-10978920.rsync.log [2026-09-12 06:32:07,552][ INFO][PID:1538179] rsyncing finished. [2026-09-12 06:32:07,553][ INFO][PID:1538179] VM Release request [2026-09-12 06:32:07,565][ INFO][PID:1538179] Searching for 'success' file in resultdir [2026-09-12 06:32:07,565][ INFO][PID:1538179] Getting build details [2026-09-12 06:32:07,566][ INFO][PID:1538179] Retrieving SRPM info from /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5694/srpm-builds/10978920 [2026-09-12 06:32:07,566][ INFO][PID:1538179] SRPM URL: https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5694/srpm-builds/10978920/Sunshine-0.0.5694-1.src.rpm [2026-09-12 06:32:07,566][ INFO][PID:1538179] build details: {'srpm_url': 'https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5694/srpm-builds/10978920/Sunshine-0.0.5694-1.src.rpm', 'pkg_name': 'Sunshine', 'pkg_version': '0.0.5694-1'} [2026-09-12 06:32:07,566][ INFO][PID:1538179] Finished build: id=10978920 failed=False timeout=108000 destdir=/var/lib/copr/public_html/results/lizardbyte/pulls:pr:5694 chroot=srpm-builds [2026-09-12 06:32:07,567][ INFO][PID:1538179] Worker succeeded build, took 638.2586660385132 [2026-09-12 06:32:07,567][ INFO][PID:1538179] 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:5694", "submitter": null, "ended_on": 1789194727.5671763, "started_on": 1789194089.3085103, "submitted_on": null, "status": 1, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10978920", "build_id": 10978920, "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\": \"tmposi2hgp4\", \"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:5694/srpm-builds/10978920/Sunshine-0.0.5694-1.src.rpm", "uses_devel_repo": null, "sandbox": "lizardbyte/pulls--8f2cf59f-acad-4733-b3f6-acdd2a495721", "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.5694", "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:5694", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5694", "result_dir": "10978920", "built_packages": "", "tags": [ "arch_x86_64" ], "rpmeta_prediction": null, "pkg_version": "0.0.5694-1", "id": 10978920, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2026-09-12 06:32:07,609][ INFO][PID:1538179] Sending fedora-messaging bus message in build.end [2026-09-12 06:32:07,629][ INFO][PID:1538179] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5694/srpm-builds/10978920/builder-live.log by gzip [2026-09-12 06:32:07,630][ INFO][PID:1538179] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5694/srpm-builds/10978920/builder-live.log' as PID 1641925 [2026-09-12 06:32:07,701][ INFO][PID:1538179] Finished after 0 seconds with exit code 0 (gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5694/srpm-builds/10978920/builder-live.log) [2026-09-12 06:32:07,702][ INFO][PID:1538179] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5694/srpm-builds/10978920/backend.log by gzip [2026-09-12 06:32:07,703][ INFO][PID:1538179] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5694/srpm-builds/10978920/backend.log' as PID 1641946