[2026-08-14 17:32:47,300][ INFO][PID:3002644] Marking build as starting [2026-08-14 17:32:47,341][ INFO][PID:3002644] Checking for cancel request [2026-08-14 17:32:47,343][ INFO][PID:3002644] VM allocation process starts [2026-08-14 17:32:47,355][ INFO][PID:3002644] Trying to allocate VM: ResallocHost, ticket_id=4453059, requested_tags=['arch_x86_64', 'copr_builder'] [2026-08-14 17:32:50,380][ INFO][PID:3002644] Allocated host ResallocHost, ticket_id=4453059, hostname=3.92.177.122, name=aws_x86_64_reserved_prod_18522822_20260814_172605, requested_tags=['arch_x86_64', 'copr_builder'] [2026-08-14 17:32:50,382][ INFO][PID:3002644] Allocating ssh connection to builder [2026-08-14 17:32:50,384][ INFO][PID:3002644] Checking that builder machine is OK [2026-08-14 17:32:50,723][ INFO][PID:3002644] Installed copr-rpmbuild version: 1.9 [2026-08-14 17:32:50,725][ INFO][PID:3002644] Running remote command: copr-builder-ready srpm-builds [2026-08-14 17:32:50,919][ INFO][PID:3002644] Red Hat subscription not needed for srpm-builds Builder is ready to be used [2026-08-14 17:32:50,920][ INFO][PID:3002644] Filling build.info file with builder info [2026-08-14 17:32:50,965][ INFO][PID:3002644] Checking for cancel request [2026-08-14 17:32:50,967][ INFO][PID:3002644] 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:5368", "submitter": null, "ended_on": null, "started_on": 1786728770.9672348, "submitted_on": null, "status": 3, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10866035", "build_id": 10866035, "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\": \"tmpqcm2ry_i\", \"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--2278fc38-9033-41df-8708-536adc4cfec2", "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:5368", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5368", "result_dir": "10866035", "built_packages": "", "tags": [ "arch_x86_64" ], "rpmeta_prediction": null, "id": 10866035, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2026-08-14 17:32:51,016][ INFO][PID:3002644] Sending fedora-messaging bus message in build.start [2026-08-14 17:32:51,662][ INFO][PID:3002644] Sending fedora-messaging bus message in chroot.start [2026-08-14 17:32:51,702][ INFO][PID:3002644] Starting remote build: copr-rpmbuild --verbose --drop-resultdir --srpm --task-url https://copr.fedorainfracloud.org/backend/get-srpm-build-task/10866035 --detached [2026-08-14 17:32:52,196][ INFO][PID:3002644] The copr-rpmbuild seems started, per: stdout: stderr: Warning: Permanently added '3.92.177.122' (ED25519) to the list of known hosts. [2026-08-14 17:32:52,198][ INFO][PID:3002644] Downloading the builder-live.log file, attempt 1 [2026-08-14 17:32:52,200][ INFO][PID:3002644] Popen command started: ssh -F /home/copr/.ssh/config mockbuilder@3.92.177.122 copr-rpmbuild-log [2026-08-14 17:32:57,262][ INFO][PID:3002644] Periodic builder liveness probe: alive [2026-08-14 17:32:57,264][ INFO][PID:3002644] Checking for cancel request [2026-08-14 17:33:02,266][ INFO][PID:3002644] Checking for cancel request [2026-08-14 17:33:07,273][ INFO][PID:3002644] Checking for cancel request [2026-08-14 17:33:12,277][ INFO][PID:3002644] Checking for cancel request [2026-08-14 17:33:17,278][ INFO][PID:3002644] Checking for cancel request [2026-08-14 17:33:22,280][ INFO][PID:3002644] Checking for cancel request [2026-08-14 17:33:27,289][ INFO][PID:3002644] Checking for cancel request [2026-08-14 17:33:32,308][ INFO][PID:3002644] Checking for cancel request [2026-08-14 17:33:37,309][ INFO][PID:3002644] Checking for cancel request [2026-08-14 17:33:42,311][ INFO][PID:3002644] Checking for cancel request [2026-08-14 17:33:47,369][ INFO][PID:3002644] Checking for cancel request [2026-08-14 17:33:52,372][ INFO][PID:3002644] Checking for cancel request [2026-08-14 17:33:57,378][ INFO][PID:3002644] Checking for cancel request [2026-08-14 17:34:02,411][ INFO][PID:3002644] Checking for cancel request [2026-08-14 17:34:07,413][ INFO][PID:3002644] Checking for cancel request [2026-08-14 17:34:12,416][ INFO][PID:3002644] Checking for cancel request [2026-08-14 17:34:17,430][ INFO][PID:3002644] Checking for cancel request [2026-08-14 17:34:22,658][ INFO][PID:3002644] Checking for cancel request [2026-08-14 17:34:27,663][ INFO][PID:3002644] Checking for cancel request [2026-08-14 17:34:32,666][ INFO][PID:3002644] Checking for cancel request [2026-08-14 17:34:37,668][ INFO][PID:3002644] Checking for cancel request [2026-08-14 17:34:42,837][ INFO][PID:3002644] Checking for cancel request [2026-08-14 17:34:47,848][ INFO][PID:3002644] Checking for cancel request [2026-08-14 17:34:52,851][ INFO][PID:3002644] Checking for cancel request [2026-08-14 17:34:57,855][ INFO][PID:3002644] Checking for cancel request [2026-08-14 17:35:03,095][ INFO][PID:3002644] Checking for cancel request [2026-08-14 17:35:08,140][ INFO][PID:3002644] Checking for cancel request [2026-08-14 17:35:13,167][ INFO][PID:3002644] Checking for cancel request [2026-08-14 17:35:18,171][ INFO][PID:3002644] Checking for cancel request [2026-08-14 17:35:23,382][ INFO][PID:3002644] Checking for cancel request [2026-08-14 17:35:28,572][ INFO][PID:3002644] Checking for cancel request [2026-08-14 17:35:33,758][ INFO][PID:3002644] Checking for cancel request [2026-08-14 17:35:38,764][ INFO][PID:3002644] Checking for cancel request [2026-08-14 17:35:43,776][ INFO][PID:3002644] Checking for cancel request [2026-08-14 17:35:48,779][ INFO][PID:3002644] Checking for cancel request [2026-08-14 17:35:53,800][ INFO][PID:3002644] Checking for cancel request [2026-08-14 17:35:58,866][ INFO][PID:3002644] Checking for cancel request [2026-08-14 17:36:03,889][ INFO][PID:3002644] Checking for cancel request [2026-08-14 17:36:08,890][ INFO][PID:3002644] Checking for cancel request [2026-08-14 17:36:14,049][ INFO][PID:3002644] Checking for cancel request [2026-08-14 17:36:19,051][ INFO][PID:3002644] Checking for cancel request [2026-08-14 17:36:24,055][ INFO][PID:3002644] Checking for cancel request [2026-08-14 17:36:29,058][ INFO][PID:3002644] Checking for cancel request [2026-08-14 17:36:34,061][ INFO][PID:3002644] Checking for cancel request [2026-08-14 17:36:39,088][ INFO][PID:3002644] Checking for cancel request [2026-08-14 17:36:44,090][ INFO][PID:3002644] Checking for cancel request [2026-08-14 17:36:49,092][ INFO][PID:3002644] Checking for cancel request [2026-08-14 17:36:54,093][ INFO][PID:3002644] Checking for cancel request [2026-08-14 17:36:59,094][ INFO][PID:3002644] Checking for cancel request [2026-08-14 17:37:04,096][ INFO][PID:3002644] Checking for cancel request [2026-08-14 17:37:09,098][ INFO][PID:3002644] Checking for cancel request [2026-08-14 17:37:14,099][ INFO][PID:3002644] Checking for cancel request [2026-08-14 17:37:19,101][ INFO][PID:3002644] Checking for cancel request [2026-08-14 17:37:24,208][ INFO][PID:3002644] Checking for cancel request [2026-08-14 17:37:29,209][ INFO][PID:3002644] Checking for cancel request [2026-08-14 17:37:34,211][ INFO][PID:3002644] Checking for cancel request [2026-08-14 17:37:39,212][ INFO][PID:3002644] Checking for cancel request [2026-08-14 17:37:44,214][ INFO][PID:3002644] Checking for cancel request [2026-08-14 17:37:49,215][ INFO][PID:3002644] Checking for cancel request [2026-08-14 17:37:54,217][ INFO][PID:3002644] Checking for cancel request [2026-08-14 17:37:59,265][ INFO][PID:3002644] Checking for cancel request [2026-08-14 17:38:04,285][ INFO][PID:3002644] Checking for cancel request [2026-08-14 17:38:09,300][ INFO][PID:3002644] Checking for cancel request [2026-08-14 17:38:14,304][ INFO][PID:3002644] Checking for cancel request [2026-08-14 17:38:19,308][ INFO][PID:3002644] Checking for cancel request [2026-08-14 17:38:24,310][ INFO][PID:3002644] Checking for cancel request [2026-08-14 17:38:29,331][ INFO][PID:3002644] Checking for cancel request [2026-08-14 17:38:34,410][ INFO][PID:3002644] Checking for cancel request [2026-08-14 17:38:39,411][ INFO][PID:3002644] Checking for cancel request [2026-08-14 17:38:44,413][ INFO][PID:3002644] Checking for cancel request [2026-08-14 17:38:49,415][ INFO][PID:3002644] Checking for cancel request [2026-08-14 17:38:54,416][ INFO][PID:3002644] Checking for cancel request [2026-08-14 17:38:59,418][ INFO][PID:3002644] Checking for cancel request [2026-08-14 17:39:04,445][ INFO][PID:3002644] Checking for cancel request [2026-08-14 17:39:09,677][ INFO][PID:3002644] Checking for cancel request [2026-08-14 17:39:14,679][ INFO][PID:3002644] Checking for cancel request [2026-08-14 17:39:19,681][ INFO][PID:3002644] Checking for cancel request [2026-08-14 17:39:24,683][ INFO][PID:3002644] Checking for cancel request [2026-08-14 17:39:29,685][ INFO][PID:3002644] Checking for cancel request [2026-08-14 17:39:34,687][ INFO][PID:3002644] Checking for cancel request [2026-08-14 17:39:39,694][ INFO][PID:3002644] Checking for cancel request [2026-08-14 17:39:44,695][ INFO][PID:3002644] Checking for cancel request [2026-08-14 17:39:49,697][ INFO][PID:3002644] Checking for cancel request [2026-08-14 17:39:54,698][ INFO][PID:3002644] Checking for cancel request [2026-08-14 17:39:59,699][ INFO][PID:3002644] Checking for cancel request [2026-08-14 17:40:04,747][ INFO][PID:3002644] Checking for cancel request [2026-08-14 17:40:09,749][ INFO][PID:3002644] Checking for cancel request [2026-08-14 17:40:14,855][ INFO][PID:3002644] Checking for cancel request [2026-08-14 17:40:19,856][ INFO][PID:3002644] Checking for cancel request [2026-08-14 17:40:24,858][ INFO][PID:3002644] Checking for cancel request [2026-08-14 17:40:29,859][ INFO][PID:3002644] Checking for cancel request [2026-08-14 17:40:34,860][ INFO][PID:3002644] Checking for cancel request [2026-08-14 17:40:39,861][ INFO][PID:3002644] Checking for cancel request [2026-08-14 17:40:44,863][ INFO][PID:3002644] Checking for cancel request [2026-08-14 17:40:49,880][ INFO][PID:3002644] Checking for cancel request [2026-08-14 17:40:54,921][ INFO][PID:3002644] Checking for cancel request [2026-08-14 17:40:59,922][ INFO][PID:3002644] Checking for cancel request [2026-08-14 17:41:04,924][ INFO][PID:3002644] Checking for cancel request [2026-08-14 17:41:09,928][ INFO][PID:3002644] Checking for cancel request [2026-08-14 17:41:14,937][ INFO][PID:3002644] Checking for cancel request [2026-08-14 17:41:19,940][ INFO][PID:3002644] Checking for cancel request [2026-08-14 17:41:24,943][ INFO][PID:3002644] Checking for cancel request [2026-08-14 17:41:29,945][ INFO][PID:3002644] Checking for cancel request [2026-08-14 17:41:34,947][ INFO][PID:3002644] Checking for cancel request [2026-08-14 17:41:39,949][ INFO][PID:3002644] Checking for cancel request [2026-08-14 17:41:44,952][ INFO][PID:3002644] Checking for cancel request [2026-08-14 17:41:50,282][ INFO][PID:3002644] Checking for cancel request [2026-08-14 17:41:55,290][ INFO][PID:3002644] Checking for cancel request [2026-08-14 17:42:00,292][ INFO][PID:3002644] Checking for cancel request [2026-08-14 17:42:05,296][ INFO][PID:3002644] Checking for cancel request [2026-08-14 17:42:10,341][ INFO][PID:3002644] Checking for cancel request [2026-08-14 17:42:15,345][ INFO][PID:3002644] Checking for cancel request [2026-08-14 17:42:20,350][ INFO][PID:3002644] Checking for cancel request [2026-08-14 17:42:25,359][ INFO][PID:3002644] Checking for cancel request [2026-08-14 17:42:30,365][ INFO][PID:3002644] Checking for cancel request [2026-08-14 17:42:35,367][ INFO][PID:3002644] Checking for cancel request [2026-08-14 17:42:40,414][ INFO][PID:3002644] Checking for cancel request [2026-08-14 17:42:45,420][ INFO][PID:3002644] Checking for cancel request [2026-08-14 17:42:50,422][ INFO][PID:3002644] Checking for cancel request [2026-08-14 17:42:55,425][ INFO][PID:3002644] Checking for cancel request [2026-08-14 17:43:00,443][ INFO][PID:3002644] Periodic builder liveness probe: alive [2026-08-14 17:43:00,445][ INFO][PID:3002644] Checking for cancel request [2026-08-14 17:43:05,448][ INFO][PID:3002644] Checking for cancel request [2026-08-14 17:43:10,454][ INFO][PID:3002644] Checking for cancel request [2026-08-14 17:43:15,488][ INFO][PID:3002644] Checking for cancel request [2026-08-14 17:43:20,194][ INFO][PID:3002644] Downloading results from builder [2026-08-14 17:43:20,200][ INFO][PID:3002644] rsyncing of mockbuilder@3.92.177.122:/var/lib/copr-rpmbuild/results/ to /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5368/srpm-builds/10866035 started [2026-08-14 17:43:20,215][ INFO][PID:3002644] Popen command started: /usr/bin/rsync -rltDvH --chmod=D755,F644 -e 'ssh -F /home/copr/.ssh/config' mockbuilder@3.92.177.122:/var/lib/copr-rpmbuild/results/ /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5368/srpm-builds/10866035/ &> /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5368/srpm-builds/10866035/build-10866035.rsync.log [2026-08-14 17:43:29,300][ INFO][PID:3002644] rsyncing finished. [2026-08-14 17:43:29,302][ INFO][PID:3002644] VM Release request [2026-08-14 17:43:29,360][ INFO][PID:3002644] Searching for 'success' file in resultdir [2026-08-14 17:43:29,362][ INFO][PID:3002644] Getting build details [2026-08-14 17:43:29,365][ INFO][PID:3002644] Retrieving SRPM info from /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5368/srpm-builds/10866035 [2026-08-14 17:43:29,368][ INFO][PID:3002644] SRPM URL: https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5368/srpm-builds/10866035/Sunshine-0.0.5368-1.src.rpm [2026-08-14 17:43:29,370][ INFO][PID:3002644] build details: {'srpm_url': 'https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5368/srpm-builds/10866035/Sunshine-0.0.5368-1.src.rpm', 'pkg_name': 'Sunshine', 'pkg_version': '0.0.5368-1'} [2026-08-14 17:43:29,373][ INFO][PID:3002644] Finished build: id=10866035 failed=False timeout=108000 destdir=/var/lib/copr/public_html/results/lizardbyte/pulls:pr:5368 chroot=srpm-builds [2026-08-14 17:43:29,377][ INFO][PID:3002644] Worker succeeded build, took 638.4103446006775 [2026-08-14 17:43:29,380][ INFO][PID:3002644] 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:5368", "submitter": null, "ended_on": 1786729409.3775795, "started_on": 1786728770.9672348, "submitted_on": null, "status": 1, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10866035", "build_id": 10866035, "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\": \"tmpqcm2ry_i\", \"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:5368/srpm-builds/10866035/Sunshine-0.0.5368-1.src.rpm", "uses_devel_repo": null, "sandbox": "lizardbyte/pulls--2278fc38-9033-41df-8708-536adc4cfec2", "results": { "architecture_specific_tags": { "fedora-43": {}, "fedora-44": {}, "fedora-rawhide": {} }, "name": "Sunshine", "epoch": null, "version": "0.0.5368", "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:5368", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5368", "result_dir": "10866035", "built_packages": "", "tags": [ "arch_x86_64" ], "rpmeta_prediction": null, "pkg_version": "0.0.5368-1", "id": 10866035, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2026-08-14 17:43:29,462][ INFO][PID:3002644] Sending fedora-messaging bus message in build.end [2026-08-14 17:43:29,510][ INFO][PID:3002644] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5368/srpm-builds/10866035/builder-live.log by gzip [2026-08-14 17:43:29,515][ INFO][PID:3002644] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5368/srpm-builds/10866035/builder-live.log' as PID 3063065 [2026-08-14 17:43:29,536][ INFO][PID:3002644] Finished after 0 seconds with exit code 0 (gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5368/srpm-builds/10866035/builder-live.log) [2026-08-14 17:43:29,537][ INFO][PID:3002644] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5368/srpm-builds/10866035/backend.log by gzip [2026-08-14 17:43:29,540][ INFO][PID:3002644] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5368/srpm-builds/10866035/backend.log' as PID 3063070