[2026-06-24 00:18:37,162][ INFO][PID:2992968] Marking build as starting [2026-06-24 00:18:37,243][ INFO][PID:2992968] Checking for cancel request [2026-06-24 00:18:37,246][ INFO][PID:2992968] VM allocation process starts [2026-06-24 00:18:37,295][ INFO][PID:2992968] Trying to allocate VM: ResallocHost, ticket_id=3576661, requested_tags=['arch_x86_64', 'copr_builder'] [2026-06-24 00:18:42,298][ INFO][PID:2992968] Checking for cancel request [2026-06-24 00:18:47,300][ INFO][PID:2992968] Checking for cancel request [2026-06-24 00:18:52,303][ INFO][PID:2992968] Checking for cancel request [2026-06-24 00:18:55,406][ INFO][PID:2992968] Allocated host ResallocHost, ticket_id=3576661, hostname=3.237.4.9, name=aws_x86_64_reserved_prod_12559003_20260624_001415, requested_tags=['arch_x86_64', 'copr_builder'] [2026-06-24 00:18:55,408][ INFO][PID:2992968] Allocating ssh connection to builder [2026-06-24 00:18:55,411][ INFO][PID:2992968] Checking that builder machine is OK [2026-06-24 00:18:55,770][ INFO][PID:2992968] Installed copr-rpmbuild version: 1.8 [2026-06-24 00:18:55,771][ INFO][PID:2992968] Running remote command: copr-builder-ready srpm-builds [2026-06-24 00:18:56,021][ INFO][PID:2992968] Red Hat subscription not needed for srpm-builds Builder is ready to be used [2026-06-24 00:18:56,022][ INFO][PID:2992968] Filling build.info file with builder info [2026-06-24 00:18:56,023][ INFO][PID:2992968] Checking for cancel request [2026-06-24 00:18:56,025][ INFO][PID:2992968] 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:5194", "submitter": null, "ended_on": null, "started_on": 1782260336.0249045, "submitted_on": null, "status": 3, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10639783", "build_id": 10639783, "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\": \"tmpkgrkbto0\", \"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--56a34447-d537-483c-aa3c-efd873b7a70c", "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", "opensuse-leap-15.6" ], "distributions_in_project": [ "fedora-43", "fedora-44", "fedora-rawhide", "opensuse-leap-15.6" ], "destdir": "/var/lib/copr/public_html/results/lizardbyte/pulls:pr:5194", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5194", "result_dir": "10639783", "built_packages": "", "tags": [ "arch_x86_64" ], "rpmeta_prediction": null, "id": 10639783, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2026-06-24 00:18:56,084][ INFO][PID:2992968] Sending fedora-messaging bus message in build.start [2026-06-24 00:18:56,756][ INFO][PID:2992968] Sending fedora-messaging bus message in chroot.start [2026-06-24 00:18:56,799][ INFO][PID:2992968] Starting remote build: copr-rpmbuild --verbose --drop-resultdir --srpm --task-url https://copr.fedorainfracloud.org/backend/get-srpm-build-task/10639783 --detached [2026-06-24 00:18:57,319][ INFO][PID:2992968] The copr-rpmbuild seems started, per: stdout: stderr: Warning: Permanently added '3.237.4.9' (ED25519) to the list of known hosts. [2026-06-24 00:18:57,321][ INFO][PID:2992968] Downloading the builder-live.log file, attempt 1 [2026-06-24 00:18:57,325][ INFO][PID:2992968] Popen command started: ssh -F /home/copr/.ssh/config mockbuilder@3.237.4.9 copr-rpmbuild-log [2026-06-24 00:19:02,342][ INFO][PID:2992968] Periodic builder liveness probe: alive [2026-06-24 00:19:02,343][ INFO][PID:2992968] Checking for cancel request [2026-06-24 00:19:07,345][ INFO][PID:2992968] Checking for cancel request [2026-06-24 00:19:12,348][ INFO][PID:2992968] Checking for cancel request [2026-06-24 00:19:17,353][ INFO][PID:2992968] Checking for cancel request [2026-06-24 00:19:22,356][ INFO][PID:2992968] Checking for cancel request [2026-06-24 00:19:27,360][ INFO][PID:2992968] Checking for cancel request [2026-06-24 00:19:32,362][ INFO][PID:2992968] Checking for cancel request [2026-06-24 00:19:37,365][ INFO][PID:2992968] Checking for cancel request [2026-06-24 00:19:42,368][ INFO][PID:2992968] Checking for cancel request [2026-06-24 00:19:47,373][ INFO][PID:2992968] Checking for cancel request [2026-06-24 00:19:52,375][ INFO][PID:2992968] Checking for cancel request [2026-06-24 00:19:57,377][ INFO][PID:2992968] Checking for cancel request [2026-06-24 00:20:02,379][ INFO][PID:2992968] Checking for cancel request [2026-06-24 00:20:07,385][ INFO][PID:2992968] Checking for cancel request [2026-06-24 00:20:12,393][ INFO][PID:2992968] Checking for cancel request [2026-06-24 00:20:17,395][ INFO][PID:2992968] Checking for cancel request [2026-06-24 00:20:22,397][ INFO][PID:2992968] Checking for cancel request [2026-06-24 00:20:27,401][ INFO][PID:2992968] Checking for cancel request [2026-06-24 00:20:32,409][ INFO][PID:2992968] Checking for cancel request [2026-06-24 00:20:37,411][ INFO][PID:2992968] Checking for cancel request [2026-06-24 00:20:42,413][ INFO][PID:2992968] Checking for cancel request [2026-06-24 00:20:47,419][ INFO][PID:2992968] Checking for cancel request [2026-06-24 00:20:52,421][ INFO][PID:2992968] Checking for cancel request [2026-06-24 00:20:57,424][ INFO][PID:2992968] Checking for cancel request [2026-06-24 00:21:02,425][ INFO][PID:2992968] Checking for cancel request [2026-06-24 00:21:07,427][ INFO][PID:2992968] Checking for cancel request [2026-06-24 00:21:12,430][ INFO][PID:2992968] Checking for cancel request [2026-06-24 00:21:17,433][ INFO][PID:2992968] Checking for cancel request [2026-06-24 00:21:22,435][ INFO][PID:2992968] Checking for cancel request [2026-06-24 00:21:27,437][ INFO][PID:2992968] Checking for cancel request [2026-06-24 00:21:32,442][ INFO][PID:2992968] Checking for cancel request [2026-06-24 00:21:37,448][ INFO][PID:2992968] Checking for cancel request [2026-06-24 00:21:42,450][ INFO][PID:2992968] Checking for cancel request [2026-06-24 00:21:47,452][ INFO][PID:2992968] Checking for cancel request [2026-06-24 00:21:52,454][ INFO][PID:2992968] Checking for cancel request [2026-06-24 00:21:57,458][ INFO][PID:2992968] Checking for cancel request [2026-06-24 00:22:02,481][ INFO][PID:2992968] Checking for cancel request [2026-06-24 00:22:07,631][ INFO][PID:2992968] Checking for cancel request [2026-06-24 00:22:12,641][ INFO][PID:2992968] Checking for cancel request [2026-06-24 00:22:17,648][ INFO][PID:2992968] Checking for cancel request [2026-06-24 00:22:22,650][ INFO][PID:2992968] Checking for cancel request [2026-06-24 00:22:27,653][ INFO][PID:2992968] Checking for cancel request [2026-06-24 00:22:32,654][ INFO][PID:2992968] Checking for cancel request [2026-06-24 00:22:37,716][ INFO][PID:2992968] Checking for cancel request [2026-06-24 00:22:42,723][ INFO][PID:2992968] Checking for cancel request [2026-06-24 00:22:47,725][ INFO][PID:2992968] Checking for cancel request [2026-06-24 00:22:52,729][ INFO][PID:2992968] Checking for cancel request [2026-06-24 00:22:57,746][ INFO][PID:2992968] Checking for cancel request [2026-06-24 00:23:02,749][ INFO][PID:2992968] Checking for cancel request [2026-06-24 00:23:07,750][ INFO][PID:2992968] Checking for cancel request [2026-06-24 00:23:12,752][ INFO][PID:2992968] Checking for cancel request [2026-06-24 00:23:17,753][ INFO][PID:2992968] Checking for cancel request [2026-06-24 00:23:22,755][ INFO][PID:2992968] Checking for cancel request [2026-06-24 00:23:27,759][ INFO][PID:2992968] Checking for cancel request [2026-06-24 00:23:32,761][ INFO][PID:2992968] Checking for cancel request [2026-06-24 00:23:37,762][ INFO][PID:2992968] Checking for cancel request [2026-06-24 00:23:42,764][ INFO][PID:2992968] Checking for cancel request [2026-06-24 00:23:47,768][ INFO][PID:2992968] Checking for cancel request [2026-06-24 00:23:52,771][ INFO][PID:2992968] Checking for cancel request [2026-06-24 00:23:57,773][ INFO][PID:2992968] Checking for cancel request [2026-06-24 00:24:02,844][ INFO][PID:2992968] Checking for cancel request [2026-06-24 00:24:07,848][ INFO][PID:2992968] Checking for cancel request [2026-06-24 00:24:12,855][ INFO][PID:2992968] Checking for cancel request [2026-06-24 00:24:17,857][ INFO][PID:2992968] Checking for cancel request [2026-06-24 00:24:22,904][ INFO][PID:2992968] Checking for cancel request [2026-06-24 00:24:28,062][ INFO][PID:2992968] Checking for cancel request [2026-06-24 00:24:33,065][ INFO][PID:2992968] Checking for cancel request [2026-06-24 00:24:38,068][ INFO][PID:2992968] Checking for cancel request [2026-06-24 00:24:43,071][ INFO][PID:2992968] Checking for cancel request [2026-06-24 00:24:48,074][ INFO][PID:2992968] Checking for cancel request [2026-06-24 00:24:53,090][ INFO][PID:2992968] Checking for cancel request [2026-06-24 00:24:58,093][ INFO][PID:2992968] Checking for cancel request [2026-06-24 00:25:03,095][ INFO][PID:2992968] Checking for cancel request [2026-06-24 00:25:08,103][ INFO][PID:2992968] Checking for cancel request [2026-06-24 00:25:13,106][ INFO][PID:2992968] Checking for cancel request [2026-06-24 00:25:18,109][ INFO][PID:2992968] Checking for cancel request [2026-06-24 00:25:23,111][ INFO][PID:2992968] Checking for cancel request [2026-06-24 00:25:28,113][ INFO][PID:2992968] Checking for cancel request [2026-06-24 00:25:33,121][ INFO][PID:2992968] Checking for cancel request [2026-06-24 00:25:38,137][ INFO][PID:2992968] Checking for cancel request [2026-06-24 00:25:43,140][ INFO][PID:2992968] Checking for cancel request [2026-06-24 00:25:48,174][ INFO][PID:2992968] Checking for cancel request [2026-06-24 00:25:53,465][ INFO][PID:2992968] Checking for cancel request [2026-06-24 00:25:58,471][ INFO][PID:2992968] Checking for cancel request [2026-06-24 00:26:03,475][ INFO][PID:2992968] Checking for cancel request [2026-06-24 00:26:08,477][ INFO][PID:2992968] Checking for cancel request [2026-06-24 00:26:13,478][ INFO][PID:2992968] Checking for cancel request [2026-06-24 00:26:18,480][ INFO][PID:2992968] Checking for cancel request [2026-06-24 00:26:23,486][ INFO][PID:2992968] Checking for cancel request [2026-06-24 00:26:28,496][ INFO][PID:2992968] Checking for cancel request [2026-06-24 00:26:33,500][ INFO][PID:2992968] Checking for cancel request [2026-06-24 00:26:38,501][ INFO][PID:2992968] Checking for cancel request [2026-06-24 00:26:43,503][ INFO][PID:2992968] Checking for cancel request [2026-06-24 00:26:48,515][ INFO][PID:2992968] Checking for cancel request [2026-06-24 00:26:53,517][ INFO][PID:2992968] Checking for cancel request [2026-06-24 00:26:58,520][ INFO][PID:2992968] Checking for cancel request [2026-06-24 00:27:03,522][ INFO][PID:2992968] Checking for cancel request [2026-06-24 00:27:08,527][ INFO][PID:2992968] Checking for cancel request [2026-06-24 00:27:13,530][ INFO][PID:2992968] Checking for cancel request [2026-06-24 00:27:18,532][ INFO][PID:2992968] Checking for cancel request [2026-06-24 00:27:23,534][ INFO][PID:2992968] Checking for cancel request [2026-06-24 00:27:28,538][ INFO][PID:2992968] Checking for cancel request [2026-06-24 00:27:33,550][ INFO][PID:2992968] Checking for cancel request [2026-06-24 00:27:38,562][ INFO][PID:2992968] Checking for cancel request [2026-06-24 00:27:43,597][ INFO][PID:2992968] Checking for cancel request [2026-06-24 00:27:48,600][ INFO][PID:2992968] Checking for cancel request [2026-06-24 00:27:53,612][ INFO][PID:2992968] Checking for cancel request [2026-06-24 00:27:58,614][ INFO][PID:2992968] Checking for cancel request [2026-06-24 00:28:03,618][ INFO][PID:2992968] Checking for cancel request [2026-06-24 00:28:08,619][ INFO][PID:2992968] Checking for cancel request [2026-06-24 00:28:13,620][ INFO][PID:2992968] Checking for cancel request [2026-06-24 00:28:18,622][ INFO][PID:2992968] Checking for cancel request [2026-06-24 00:28:23,623][ INFO][PID:2992968] Checking for cancel request [2026-06-24 00:28:24,154][ INFO][PID:2992968] Downloading results from builder [2026-06-24 00:28:24,156][ INFO][PID:2992968] rsyncing of mockbuilder@3.237.4.9:/var/lib/copr-rpmbuild/results/ to /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5194/srpm-builds/10639783 started [2026-06-24 00:28:24,158][ INFO][PID:2992968] Popen command started: /usr/bin/rsync -rltDvH --chmod=D755,F644 -e 'ssh -F /home/copr/.ssh/config' mockbuilder@3.237.4.9:/var/lib/copr-rpmbuild/results/ /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5194/srpm-builds/10639783/ &> /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5194/srpm-builds/10639783/build-10639783.rsync.log [2026-06-24 00:28:30,149][ INFO][PID:2992968] rsyncing finished. [2026-06-24 00:28:30,150][ INFO][PID:2992968] VM Release request [2026-06-24 00:28:30,210][ INFO][PID:2992968] Searching for 'success' file in resultdir [2026-06-24 00:28:30,211][ INFO][PID:2992968] Getting build details [2026-06-24 00:28:30,212][ INFO][PID:2992968] Retrieving SRPM info from /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5194/srpm-builds/10639783 [2026-06-24 00:28:30,213][ INFO][PID:2992968] SRPM URL: https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5194/srpm-builds/10639783/Sunshine-0.0.5194-1.src.rpm [2026-06-24 00:28:30,214][ INFO][PID:2992968] build details: {'srpm_url': 'https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5194/srpm-builds/10639783/Sunshine-0.0.5194-1.src.rpm', 'pkg_name': 'Sunshine', 'pkg_version': '0.0.5194-1'} [2026-06-24 00:28:30,214][ INFO][PID:2992968] Finished build: id=10639783 failed=False timeout=108000 destdir=/var/lib/copr/public_html/results/lizardbyte/pulls:pr:5194 chroot=srpm-builds [2026-06-24 00:28:30,217][ INFO][PID:2992968] Worker succeeded build, took 574.1924915313721 [2026-06-24 00:28:30,218][ INFO][PID:2992968] 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:5194", "submitter": null, "ended_on": 1782260910.217396, "started_on": 1782260336.0249045, "submitted_on": null, "status": 1, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10639783", "build_id": 10639783, "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\": \"tmpkgrkbto0\", \"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:5194/srpm-builds/10639783/Sunshine-0.0.5194-1.src.rpm", "uses_devel_repo": null, "sandbox": "lizardbyte/pulls--56a34447-d537-483c-aa3c-efd873b7a70c", "results": { "architecture_specific_tags": { "fedora-43": {}, "fedora-44": {}, "fedora-rawhide": {}, "opensuse-leap-15.6": {} }, "name": "Sunshine", "epoch": null, "version": "0.0.5194", "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", "opensuse-leap-15.6" ], "distributions_in_project": [ "fedora-43", "fedora-44", "fedora-rawhide", "opensuse-leap-15.6" ], "destdir": "/var/lib/copr/public_html/results/lizardbyte/pulls:pr:5194", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5194", "result_dir": "10639783", "built_packages": "", "tags": [ "arch_x86_64" ], "rpmeta_prediction": null, "pkg_version": "0.0.5194-1", "id": 10639783, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2026-06-24 00:28:30,325][ INFO][PID:2992968] Sending fedora-messaging bus message in build.end [2026-06-24 00:28:30,367][ INFO][PID:2992968] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5194/srpm-builds/10639783/builder-live.log by gzip [2026-06-24 00:28:30,369][ INFO][PID:2992968] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5194/srpm-builds/10639783/builder-live.log' as PID 3094151 [2026-06-24 00:28:30,378][ INFO][PID:2992968] Finished after 0 seconds with exit code 0 (gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5194/srpm-builds/10639783/builder-live.log) [2026-06-24 00:28:30,379][ INFO][PID:2992968] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5194/srpm-builds/10639783/backend.log by gzip