[2026-08-15 13:17:24,577][ INFO][PID:1990290] Marking build as starting [2026-08-15 13:17:24,615][ INFO][PID:1990290] Checking for cancel request [2026-08-15 13:17:24,616][ INFO][PID:1990290] VM allocation process starts [2026-08-15 13:17:24,626][ INFO][PID:1990290] Trying to allocate VM: ResallocHost, ticket_id=4459872, requested_tags=['arch_x86_64', 'copr_builder'] [2026-08-15 13:17:27,684][ INFO][PID:1990290] Allocated host ResallocHost, ticket_id=4459872, hostname=13.221.178.216, name=aws_x86_64_reserved_prod_18698377_20260815_130253, requested_tags=['arch_x86_64', 'copr_builder'] [2026-08-15 13:17:27,685][ INFO][PID:1990290] Allocating ssh connection to builder [2026-08-15 13:17:27,685][ INFO][PID:1990290] Checking that builder machine is OK [2026-08-15 13:17:27,970][ INFO][PID:1990290] Installed copr-rpmbuild version: 1.9 [2026-08-15 13:17:27,971][ INFO][PID:1990290] Running remote command: copr-builder-ready srpm-builds [2026-08-15 13:17:28,147][ INFO][PID:1990290] Red Hat subscription not needed for srpm-builds Builder is ready to be used [2026-08-15 13:17:28,147][ INFO][PID:1990290] Filling build.info file with builder info [2026-08-15 13:17:28,148][ INFO][PID:1990290] Checking for cancel request [2026-08-15 13:17:28,149][ INFO][PID:1990290] 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": 1786799848.1494255, "submitted_on": null, "status": 3, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10867614", "build_id": 10867614, "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\": \"tmp47tnyat1\", \"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--9c62f3a8-1621-44d8-b63c-4a4a7705d8b3", "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": "10867614", "built_packages": "", "tags": [ "arch_x86_64" ], "rpmeta_prediction": null, "id": 10867614, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2026-08-15 13:17:28,187][ INFO][PID:1990290] Sending fedora-messaging bus message in build.start [2026-08-15 13:17:28,892][ INFO][PID:1990290] Sending fedora-messaging bus message in chroot.start [2026-08-15 13:17:28,921][ INFO][PID:1990290] Starting remote build: copr-rpmbuild --verbose --drop-resultdir --srpm --task-url https://copr.fedorainfracloud.org/backend/get-srpm-build-task/10867614 --detached [2026-08-15 13:17:29,345][ INFO][PID:1990290] The copr-rpmbuild seems started, per: stdout: stderr: Warning: Permanently added '13.221.178.216' (ED25519) to the list of known hosts. [2026-08-15 13:17:29,346][ INFO][PID:1990290] Downloading the builder-live.log file, attempt 1 [2026-08-15 13:17:29,348][ INFO][PID:1990290] Popen command started: ssh -F /home/copr/.ssh/config mockbuilder@13.221.178.216 copr-rpmbuild-log [2026-08-15 13:17:34,352][ INFO][PID:1990290] Periodic builder liveness probe: alive [2026-08-15 13:17:34,353][ INFO][PID:1990290] Checking for cancel request [2026-08-15 13:17:39,354][ INFO][PID:1990290] Checking for cancel request [2026-08-15 13:17:44,356][ INFO][PID:1990290] Checking for cancel request [2026-08-15 13:17:49,357][ INFO][PID:1990290] Checking for cancel request [2026-08-15 13:17:54,359][ INFO][PID:1990290] Checking for cancel request [2026-08-15 13:17:59,360][ INFO][PID:1990290] Checking for cancel request [2026-08-15 13:18:04,361][ INFO][PID:1990290] Checking for cancel request [2026-08-15 13:18:09,363][ INFO][PID:1990290] Checking for cancel request [2026-08-15 13:18:14,364][ INFO][PID:1990290] Checking for cancel request [2026-08-15 13:18:19,365][ INFO][PID:1990290] Checking for cancel request [2026-08-15 13:18:24,367][ INFO][PID:1990290] Checking for cancel request [2026-08-15 13:18:29,368][ INFO][PID:1990290] Checking for cancel request [2026-08-15 13:18:34,369][ INFO][PID:1990290] Checking for cancel request [2026-08-15 13:18:39,371][ INFO][PID:1990290] Checking for cancel request [2026-08-15 13:18:44,372][ INFO][PID:1990290] Checking for cancel request [2026-08-15 13:18:49,374][ INFO][PID:1990290] Checking for cancel request [2026-08-15 13:18:54,375][ INFO][PID:1990290] Checking for cancel request [2026-08-15 13:18:59,376][ INFO][PID:1990290] Checking for cancel request [2026-08-15 13:19:04,378][ INFO][PID:1990290] Checking for cancel request [2026-08-15 13:19:09,381][ INFO][PID:1990290] Checking for cancel request [2026-08-15 13:19:14,383][ INFO][PID:1990290] Checking for cancel request [2026-08-15 13:19:19,384][ INFO][PID:1990290] Checking for cancel request [2026-08-15 13:19:24,386][ INFO][PID:1990290] Checking for cancel request [2026-08-15 13:19:29,387][ INFO][PID:1990290] Checking for cancel request [2026-08-15 13:19:34,389][ INFO][PID:1990290] Checking for cancel request [2026-08-15 13:19:39,390][ INFO][PID:1990290] Checking for cancel request [2026-08-15 13:19:44,391][ INFO][PID:1990290] Checking for cancel request [2026-08-15 13:19:49,392][ INFO][PID:1990290] Checking for cancel request [2026-08-15 13:19:54,394][ INFO][PID:1990290] Checking for cancel request [2026-08-15 13:19:59,395][ INFO][PID:1990290] Checking for cancel request [2026-08-15 13:20:04,396][ INFO][PID:1990290] Checking for cancel request [2026-08-15 13:20:09,398][ INFO][PID:1990290] Checking for cancel request [2026-08-15 13:20:14,399][ INFO][PID:1990290] Checking for cancel request [2026-08-15 13:20:19,401][ INFO][PID:1990290] Checking for cancel request [2026-08-15 13:20:24,402][ INFO][PID:1990290] Checking for cancel request [2026-08-15 13:20:29,404][ INFO][PID:1990290] Checking for cancel request [2026-08-15 13:20:34,405][ INFO][PID:1990290] Checking for cancel request [2026-08-15 13:20:39,406][ INFO][PID:1990290] Checking for cancel request [2026-08-15 13:20:44,408][ INFO][PID:1990290] Checking for cancel request [2026-08-15 13:20:49,409][ INFO][PID:1990290] Checking for cancel request [2026-08-15 13:20:54,410][ INFO][PID:1990290] Checking for cancel request [2026-08-15 13:20:59,412][ INFO][PID:1990290] Checking for cancel request [2026-08-15 13:21:04,413][ INFO][PID:1990290] Checking for cancel request [2026-08-15 13:21:09,415][ INFO][PID:1990290] Checking for cancel request [2026-08-15 13:21:14,416][ INFO][PID:1990290] Checking for cancel request [2026-08-15 13:21:19,418][ INFO][PID:1990290] Checking for cancel request [2026-08-15 13:21:24,420][ INFO][PID:1990290] Checking for cancel request [2026-08-15 13:21:29,422][ INFO][PID:1990290] Checking for cancel request [2026-08-15 13:21:34,423][ INFO][PID:1990290] Checking for cancel request [2026-08-15 13:21:39,425][ INFO][PID:1990290] Checking for cancel request [2026-08-15 13:21:44,427][ INFO][PID:1990290] Checking for cancel request [2026-08-15 13:21:49,428][ INFO][PID:1990290] Checking for cancel request [2026-08-15 13:21:54,429][ INFO][PID:1990290] Checking for cancel request [2026-08-15 13:21:59,431][ INFO][PID:1990290] Checking for cancel request [2026-08-15 13:22:04,432][ INFO][PID:1990290] Checking for cancel request [2026-08-15 13:22:09,434][ INFO][PID:1990290] Checking for cancel request [2026-08-15 13:22:14,435][ INFO][PID:1990290] Checking for cancel request [2026-08-15 13:22:19,436][ INFO][PID:1990290] Checking for cancel request [2026-08-15 13:22:24,437][ INFO][PID:1990290] Checking for cancel request [2026-08-15 13:22:29,439][ INFO][PID:1990290] Checking for cancel request [2026-08-15 13:22:34,440][ INFO][PID:1990290] Checking for cancel request [2026-08-15 13:22:39,441][ INFO][PID:1990290] Checking for cancel request [2026-08-15 13:22:44,444][ INFO][PID:1990290] Checking for cancel request [2026-08-15 13:22:49,446][ INFO][PID:1990290] Checking for cancel request [2026-08-15 13:22:54,448][ INFO][PID:1990290] Checking for cancel request [2026-08-15 13:22:59,450][ INFO][PID:1990290] Checking for cancel request [2026-08-15 13:23:04,451][ INFO][PID:1990290] Checking for cancel request [2026-08-15 13:23:09,452][ INFO][PID:1990290] Checking for cancel request [2026-08-15 13:23:14,454][ INFO][PID:1990290] Checking for cancel request [2026-08-15 13:23:19,473][ INFO][PID:1990290] Checking for cancel request [2026-08-15 13:23:24,513][ INFO][PID:1990290] Checking for cancel request [2026-08-15 13:23:29,514][ INFO][PID:1990290] Checking for cancel request [2026-08-15 13:23:34,612][ INFO][PID:1990290] Checking for cancel request [2026-08-15 13:23:39,614][ INFO][PID:1990290] Checking for cancel request [2026-08-15 13:23:44,616][ INFO][PID:1990290] Checking for cancel request [2026-08-15 13:23:49,618][ INFO][PID:1990290] Checking for cancel request [2026-08-15 13:23:54,620][ INFO][PID:1990290] Checking for cancel request [2026-08-15 13:23:59,651][ INFO][PID:1990290] Checking for cancel request [2026-08-15 13:24:04,652][ INFO][PID:1990290] Checking for cancel request [2026-08-15 13:24:09,654][ INFO][PID:1990290] Checking for cancel request [2026-08-15 13:24:14,657][ INFO][PID:1990290] Checking for cancel request [2026-08-15 13:24:19,659][ INFO][PID:1990290] Checking for cancel request [2026-08-15 13:24:24,705][ INFO][PID:1990290] Checking for cancel request [2026-08-15 13:24:29,844][ INFO][PID:1990290] Checking for cancel request [2026-08-15 13:24:34,868][ INFO][PID:1990290] Checking for cancel request [2026-08-15 13:24:40,044][ INFO][PID:1990290] Checking for cancel request [2026-08-15 13:24:45,048][ INFO][PID:1990290] Checking for cancel request [2026-08-15 13:24:50,050][ INFO][PID:1990290] Checking for cancel request [2026-08-15 13:24:55,052][ INFO][PID:1990290] Checking for cancel request [2026-08-15 13:25:00,054][ INFO][PID:1990290] Checking for cancel request [2026-08-15 13:25:05,069][ INFO][PID:1990290] Checking for cancel request [2026-08-15 13:25:10,073][ INFO][PID:1990290] Checking for cancel request [2026-08-15 13:25:15,229][ INFO][PID:1990290] Checking for cancel request [2026-08-15 13:25:20,232][ INFO][PID:1990290] Checking for cancel request [2026-08-15 13:25:25,234][ INFO][PID:1990290] Checking for cancel request [2026-08-15 13:25:30,235][ INFO][PID:1990290] Checking for cancel request [2026-08-15 13:25:35,237][ INFO][PID:1990290] Checking for cancel request [2026-08-15 13:25:40,262][ INFO][PID:1990290] Checking for cancel request [2026-08-15 13:25:45,265][ INFO][PID:1990290] Checking for cancel request [2026-08-15 13:25:50,268][ INFO][PID:1990290] Checking for cancel request [2026-08-15 13:25:55,270][ INFO][PID:1990290] Checking for cancel request [2026-08-15 13:26:00,271][ INFO][PID:1990290] Checking for cancel request [2026-08-15 13:26:05,273][ INFO][PID:1990290] Checking for cancel request [2026-08-15 13:26:10,274][ INFO][PID:1990290] Checking for cancel request [2026-08-15 13:26:15,446][ INFO][PID:1990290] Checking for cancel request [2026-08-15 13:26:20,449][ INFO][PID:1990290] Checking for cancel request [2026-08-15 13:26:25,452][ INFO][PID:1990290] Checking for cancel request [2026-08-15 13:26:30,454][ INFO][PID:1990290] Checking for cancel request [2026-08-15 13:26:35,457][ INFO][PID:1990290] Checking for cancel request [2026-08-15 13:26:40,458][ INFO][PID:1990290] Checking for cancel request [2026-08-15 13:26:45,461][ INFO][PID:1990290] Checking for cancel request [2026-08-15 13:26:50,527][ INFO][PID:1990290] Checking for cancel request [2026-08-15 13:26:55,528][ INFO][PID:1990290] Checking for cancel request [2026-08-15 13:27:00,530][ INFO][PID:1990290] Checking for cancel request [2026-08-15 13:27:05,532][ INFO][PID:1990290] Checking for cancel request [2026-08-15 13:27:10,533][ INFO][PID:1990290] Checking for cancel request [2026-08-15 13:27:15,535][ INFO][PID:1990290] Checking for cancel request [2026-08-15 13:27:20,537][ INFO][PID:1990290] Checking for cancel request [2026-08-15 13:27:25,538][ INFO][PID:1990290] Checking for cancel request [2026-08-15 13:27:30,539][ INFO][PID:1990290] Checking for cancel request [2026-08-15 13:27:35,548][ INFO][PID:1990290] Periodic builder liveness probe: alive [2026-08-15 13:27:35,549][ INFO][PID:1990290] Checking for cancel request [2026-08-15 13:27:40,550][ INFO][PID:1990290] Checking for cancel request [2026-08-15 13:27:45,551][ INFO][PID:1990290] Checking for cancel request [2026-08-15 13:27:50,553][ INFO][PID:1990290] Checking for cancel request [2026-08-15 13:27:55,554][ INFO][PID:1990290] Checking for cancel request [2026-08-15 13:28:00,555][ INFO][PID:1990290] Checking for cancel request [2026-08-15 13:28:05,557][ INFO][PID:1990290] Checking for cancel request [2026-08-15 13:28:10,558][ INFO][PID:1990290] Checking for cancel request [2026-08-15 13:28:15,560][ INFO][PID:1990290] Checking for cancel request [2026-08-15 13:28:17,875][ INFO][PID:1990290] Downloading results from builder [2026-08-15 13:28:17,876][ INFO][PID:1990290] rsyncing of mockbuilder@13.221.178.216:/var/lib/copr-rpmbuild/results/ to /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5368/srpm-builds/10867614 started [2026-08-15 13:28:17,877][ INFO][PID:1990290] Popen command started: /usr/bin/rsync -rltDvH --chmod=D755,F644 -e 'ssh -F /home/copr/.ssh/config' mockbuilder@13.221.178.216:/var/lib/copr-rpmbuild/results/ /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5368/srpm-builds/10867614/ &> /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5368/srpm-builds/10867614/build-10867614.rsync.log [2026-08-15 13:28:22,908][ INFO][PID:1990290] rsyncing finished. [2026-08-15 13:28:22,987][ INFO][PID:1990290] VM Release request [2026-08-15 13:28:22,996][ INFO][PID:1990290] Searching for 'success' file in resultdir [2026-08-15 13:28:22,998][ INFO][PID:1990290] Getting build details [2026-08-15 13:28:22,998][ INFO][PID:1990290] Retrieving SRPM info from /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5368/srpm-builds/10867614 [2026-08-15 13:28:22,999][ INFO][PID:1990290] SRPM URL: https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5368/srpm-builds/10867614/Sunshine-0.0.5368-1.src.rpm [2026-08-15 13:28:23,000][ INFO][PID:1990290] build details: {'srpm_url': 'https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5368/srpm-builds/10867614/Sunshine-0.0.5368-1.src.rpm', 'pkg_name': 'Sunshine', 'pkg_version': '0.0.5368-1'} [2026-08-15 13:28:23,000][ INFO][PID:1990290] Finished build: id=10867614 failed=False timeout=108000 destdir=/var/lib/copr/public_html/results/lizardbyte/pulls:pr:5368 chroot=srpm-builds [2026-08-15 13:28:23,001][ INFO][PID:1990290] Worker succeeded build, took 654.8521749973297 [2026-08-15 13:28:23,002][ INFO][PID:1990290] 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": 1786800503.0016005, "started_on": 1786799848.1494255, "submitted_on": null, "status": 1, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10867614", "build_id": 10867614, "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\": \"tmp47tnyat1\", \"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/10867614/Sunshine-0.0.5368-1.src.rpm", "uses_devel_repo": null, "sandbox": "lizardbyte/pulls--9c62f3a8-1621-44d8-b63c-4a4a7705d8b3", "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": "10867614", "built_packages": "", "tags": [ "arch_x86_64" ], "rpmeta_prediction": null, "pkg_version": "0.0.5368-1", "id": 10867614, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2026-08-15 13:28:23,053][ INFO][PID:1990290] Sending fedora-messaging bus message in build.end [2026-08-15 13:28:23,084][ INFO][PID:1990290] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5368/srpm-builds/10867614/builder-live.log by gzip [2026-08-15 13:28:23,086][ INFO][PID:1990290] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5368/srpm-builds/10867614/builder-live.log' as PID 2058148 [2026-08-15 13:28:23,110][ INFO][PID:1990290] Finished after 0 seconds with exit code 0 (gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5368/srpm-builds/10867614/builder-live.log) [2026-08-15 13:28:23,111][ INFO][PID:1990290] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5368/srpm-builds/10867614/backend.log by gzip [2026-08-15 13:28:23,112][ INFO][PID:1990290] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5368/srpm-builds/10867614/backend.log' as PID 2058153