[2026-08-16 04:22:32,941][ INFO][PID:3495221] Marking build as starting [2026-08-16 04:22:32,988][ INFO][PID:3495221] Checking for cancel request [2026-08-16 04:22:32,991][ INFO][PID:3495221] VM allocation process starts [2026-08-16 04:22:33,005][ INFO][PID:3495221] Trying to allocate VM: ResallocHost, ticket_id=4465114, requested_tags=['arch_x86_64', 'copr_builder'] [2026-08-16 04:22:36,027][ INFO][PID:3495221] Allocated host ResallocHost, ticket_id=4465114, hostname=44.222.230.154, name=aws_x86_64_reserved_prod_18846592_20260816_041353, requested_tags=['arch_x86_64', 'copr_builder'] [2026-08-16 04:22:36,028][ INFO][PID:3495221] Allocating ssh connection to builder [2026-08-16 04:22:36,028][ INFO][PID:3495221] Checking that builder machine is OK [2026-08-16 04:22:36,340][ INFO][PID:3495221] Installed copr-rpmbuild version: 1.9 [2026-08-16 04:22:36,342][ INFO][PID:3495221] Running remote command: copr-builder-ready srpm-builds [2026-08-16 04:22:36,525][ INFO][PID:3495221] Red Hat subscription not needed for srpm-builds Builder is ready to be used [2026-08-16 04:22:36,526][ INFO][PID:3495221] Filling build.info file with builder info [2026-08-16 04:22:36,526][ INFO][PID:3495221] Checking for cancel request [2026-08-16 04:22:36,528][ INFO][PID:3495221] 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": 1786854156.5279324, "submitted_on": null, "status": 3, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10868849", "build_id": 10868849, "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\": \"tmpsmgaoufp\", \"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--050457c6-6797-4703-8e82-081381fef136", "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": "10868849", "built_packages": "", "tags": [ "arch_x86_64" ], "rpmeta_prediction": null, "id": 10868849, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2026-08-16 04:22:36,574][ INFO][PID:3495221] Sending fedora-messaging bus message in build.start [2026-08-16 04:22:37,390][ INFO][PID:3495221] Sending fedora-messaging bus message in chroot.start [2026-08-16 04:22:37,433][ INFO][PID:3495221] Starting remote build: copr-rpmbuild --verbose --drop-resultdir --srpm --task-url https://copr.fedorainfracloud.org/backend/get-srpm-build-task/10868849 --detached [2026-08-16 04:22:37,934][ INFO][PID:3495221] The copr-rpmbuild seems started, per: stdout: stderr: Warning: Permanently added '44.222.230.154' (ED25519) to the list of known hosts. [2026-08-16 04:22:37,937][ INFO][PID:3495221] Downloading the builder-live.log file, attempt 1 [2026-08-16 04:22:37,943][ INFO][PID:3495221] Popen command started: ssh -F /home/copr/.ssh/config mockbuilder@44.222.230.154 copr-rpmbuild-log [2026-08-16 04:22:42,952][ INFO][PID:3495221] Periodic builder liveness probe: alive [2026-08-16 04:22:42,953][ INFO][PID:3495221] Checking for cancel request [2026-08-16 04:22:47,955][ INFO][PID:3495221] Checking for cancel request [2026-08-16 04:22:52,957][ INFO][PID:3495221] Checking for cancel request [2026-08-16 04:22:57,962][ INFO][PID:3495221] Checking for cancel request [2026-08-16 04:23:02,969][ INFO][PID:3495221] Checking for cancel request [2026-08-16 04:23:07,971][ INFO][PID:3495221] Checking for cancel request [2026-08-16 04:23:12,973][ INFO][PID:3495221] Checking for cancel request [2026-08-16 04:23:17,978][ INFO][PID:3495221] Checking for cancel request [2026-08-16 04:23:22,979][ INFO][PID:3495221] Checking for cancel request [2026-08-16 04:23:27,981][ INFO][PID:3495221] Checking for cancel request [2026-08-16 04:23:32,987][ INFO][PID:3495221] Checking for cancel request [2026-08-16 04:23:37,997][ INFO][PID:3495221] Checking for cancel request [2026-08-16 04:23:42,999][ INFO][PID:3495221] Checking for cancel request [2026-08-16 04:23:48,001][ INFO][PID:3495221] Checking for cancel request [2026-08-16 04:23:53,008][ INFO][PID:3495221] Checking for cancel request [2026-08-16 04:23:58,010][ INFO][PID:3495221] Checking for cancel request [2026-08-16 04:24:03,014][ INFO][PID:3495221] Checking for cancel request [2026-08-16 04:24:08,021][ INFO][PID:3495221] Checking for cancel request [2026-08-16 04:24:13,025][ INFO][PID:3495221] Checking for cancel request [2026-08-16 04:24:18,046][ INFO][PID:3495221] Checking for cancel request [2026-08-16 04:24:23,075][ INFO][PID:3495221] Checking for cancel request [2026-08-16 04:24:28,080][ INFO][PID:3495221] Checking for cancel request [2026-08-16 04:24:33,088][ INFO][PID:3495221] Checking for cancel request [2026-08-16 04:24:38,090][ INFO][PID:3495221] Checking for cancel request [2026-08-16 04:24:43,094][ INFO][PID:3495221] Checking for cancel request [2026-08-16 04:24:48,097][ INFO][PID:3495221] Checking for cancel request [2026-08-16 04:24:53,101][ INFO][PID:3495221] Checking for cancel request [2026-08-16 04:24:58,108][ INFO][PID:3495221] Checking for cancel request [2026-08-16 04:25:03,110][ INFO][PID:3495221] Checking for cancel request [2026-08-16 04:25:08,112][ INFO][PID:3495221] Checking for cancel request [2026-08-16 04:25:13,116][ INFO][PID:3495221] Checking for cancel request [2026-08-16 04:25:18,122][ INFO][PID:3495221] Checking for cancel request [2026-08-16 04:25:23,129][ INFO][PID:3495221] Checking for cancel request [2026-08-16 04:25:28,135][ INFO][PID:3495221] Checking for cancel request [2026-08-16 04:25:33,143][ INFO][PID:3495221] Checking for cancel request [2026-08-16 04:25:38,146][ INFO][PID:3495221] Checking for cancel request [2026-08-16 04:25:43,151][ INFO][PID:3495221] Checking for cancel request [2026-08-16 04:25:48,157][ INFO][PID:3495221] Checking for cancel request [2026-08-16 04:25:53,159][ INFO][PID:3495221] Checking for cancel request [2026-08-16 04:25:58,163][ INFO][PID:3495221] Checking for cancel request [2026-08-16 04:26:03,171][ INFO][PID:3495221] Checking for cancel request [2026-08-16 04:26:08,182][ INFO][PID:3495221] Checking for cancel request [2026-08-16 04:26:13,195][ INFO][PID:3495221] Checking for cancel request [2026-08-16 04:26:18,208][ INFO][PID:3495221] Checking for cancel request [2026-08-16 04:26:23,213][ INFO][PID:3495221] Checking for cancel request [2026-08-16 04:26:28,216][ INFO][PID:3495221] Checking for cancel request [2026-08-16 04:26:33,225][ INFO][PID:3495221] Checking for cancel request [2026-08-16 04:26:38,227][ INFO][PID:3495221] Checking for cancel request [2026-08-16 04:26:43,239][ INFO][PID:3495221] Checking for cancel request [2026-08-16 04:26:48,246][ INFO][PID:3495221] Checking for cancel request [2026-08-16 04:26:53,251][ INFO][PID:3495221] Checking for cancel request [2026-08-16 04:26:58,253][ INFO][PID:3495221] Checking for cancel request [2026-08-16 04:27:03,255][ INFO][PID:3495221] Checking for cancel request [2026-08-16 04:27:08,261][ INFO][PID:3495221] Checking for cancel request [2026-08-16 04:27:13,264][ INFO][PID:3495221] Checking for cancel request [2026-08-16 04:27:18,272][ INFO][PID:3495221] Checking for cancel request [2026-08-16 04:27:23,275][ INFO][PID:3495221] Checking for cancel request [2026-08-16 04:27:28,281][ INFO][PID:3495221] Checking for cancel request [2026-08-16 04:27:33,284][ INFO][PID:3495221] Checking for cancel request [2026-08-16 04:27:38,287][ INFO][PID:3495221] Checking for cancel request [2026-08-16 04:27:43,293][ INFO][PID:3495221] Checking for cancel request [2026-08-16 04:27:48,298][ INFO][PID:3495221] Checking for cancel request [2026-08-16 04:27:53,305][ INFO][PID:3495221] Checking for cancel request [2026-08-16 04:27:58,310][ INFO][PID:3495221] Checking for cancel request [2026-08-16 04:28:03,317][ INFO][PID:3495221] Checking for cancel request [2026-08-16 04:28:08,321][ INFO][PID:3495221] Checking for cancel request [2026-08-16 04:28:13,328][ INFO][PID:3495221] Checking for cancel request [2026-08-16 04:28:18,332][ INFO][PID:3495221] Checking for cancel request [2026-08-16 04:28:23,338][ INFO][PID:3495221] Checking for cancel request [2026-08-16 04:28:28,340][ INFO][PID:3495221] Checking for cancel request [2026-08-16 04:28:33,345][ INFO][PID:3495221] Checking for cancel request [2026-08-16 04:28:38,350][ INFO][PID:3495221] Checking for cancel request [2026-08-16 04:28:43,358][ INFO][PID:3495221] Checking for cancel request [2026-08-16 04:28:48,363][ INFO][PID:3495221] Checking for cancel request [2026-08-16 04:28:53,368][ INFO][PID:3495221] Checking for cancel request [2026-08-16 04:28:58,371][ INFO][PID:3495221] Checking for cancel request [2026-08-16 04:29:03,382][ INFO][PID:3495221] Checking for cancel request [2026-08-16 04:29:08,397][ INFO][PID:3495221] Checking for cancel request [2026-08-16 04:29:13,407][ INFO][PID:3495221] Checking for cancel request [2026-08-16 04:29:18,409][ INFO][PID:3495221] Checking for cancel request [2026-08-16 04:29:23,429][ INFO][PID:3495221] Checking for cancel request [2026-08-16 04:29:28,434][ INFO][PID:3495221] Checking for cancel request [2026-08-16 04:29:33,450][ INFO][PID:3495221] Checking for cancel request [2026-08-16 04:29:38,454][ INFO][PID:3495221] Checking for cancel request [2026-08-16 04:29:43,461][ INFO][PID:3495221] Checking for cancel request [2026-08-16 04:29:48,466][ INFO][PID:3495221] Checking for cancel request [2026-08-16 04:29:53,470][ INFO][PID:3495221] Checking for cancel request [2026-08-16 04:29:58,476][ INFO][PID:3495221] Checking for cancel request [2026-08-16 04:30:03,479][ INFO][PID:3495221] Checking for cancel request [2026-08-16 04:30:08,481][ INFO][PID:3495221] Checking for cancel request [2026-08-16 04:30:13,486][ INFO][PID:3495221] Checking for cancel request [2026-08-16 04:30:18,502][ INFO][PID:3495221] Checking for cancel request [2026-08-16 04:30:23,508][ INFO][PID:3495221] Checking for cancel request [2026-08-16 04:30:28,512][ INFO][PID:3495221] Checking for cancel request [2026-08-16 04:30:33,520][ INFO][PID:3495221] Checking for cancel request [2026-08-16 04:30:38,533][ INFO][PID:3495221] Checking for cancel request [2026-08-16 04:30:43,535][ INFO][PID:3495221] Checking for cancel request [2026-08-16 04:30:48,536][ INFO][PID:3495221] Checking for cancel request [2026-08-16 04:30:53,542][ INFO][PID:3495221] Checking for cancel request [2026-08-16 04:30:58,546][ INFO][PID:3495221] Checking for cancel request [2026-08-16 04:31:03,550][ INFO][PID:3495221] Checking for cancel request [2026-08-16 04:31:08,561][ INFO][PID:3495221] Checking for cancel request [2026-08-16 04:31:13,563][ INFO][PID:3495221] Checking for cancel request [2026-08-16 04:31:18,565][ INFO][PID:3495221] Checking for cancel request [2026-08-16 04:31:23,587][ INFO][PID:3495221] Checking for cancel request [2026-08-16 04:31:28,591][ INFO][PID:3495221] Checking for cancel request [2026-08-16 04:31:33,594][ INFO][PID:3495221] Checking for cancel request [2026-08-16 04:31:38,597][ INFO][PID:3495221] Checking for cancel request [2026-08-16 04:31:43,598][ INFO][PID:3495221] Checking for cancel request [2026-08-16 04:31:48,600][ INFO][PID:3495221] Checking for cancel request [2026-08-16 04:31:53,603][ INFO][PID:3495221] Checking for cancel request [2026-08-16 04:31:58,605][ INFO][PID:3495221] Checking for cancel request [2026-08-16 04:32:03,606][ INFO][PID:3495221] Checking for cancel request [2026-08-16 04:32:08,608][ INFO][PID:3495221] Checking for cancel request [2026-08-16 04:32:13,609][ INFO][PID:3495221] Checking for cancel request [2026-08-16 04:32:18,611][ INFO][PID:3495221] Checking for cancel request [2026-08-16 04:32:23,612][ INFO][PID:3495221] Checking for cancel request [2026-08-16 04:32:28,614][ INFO][PID:3495221] Checking for cancel request [2026-08-16 04:32:33,616][ INFO][PID:3495221] Checking for cancel request [2026-08-16 04:32:38,617][ INFO][PID:3495221] Checking for cancel request [2026-08-16 04:32:43,626][ INFO][PID:3495221] Periodic builder liveness probe: alive [2026-08-16 04:32:43,627][ INFO][PID:3495221] Checking for cancel request [2026-08-16 04:32:48,628][ INFO][PID:3495221] Checking for cancel request [2026-08-16 04:32:53,630][ INFO][PID:3495221] Checking for cancel request [2026-08-16 04:32:58,632][ INFO][PID:3495221] Checking for cancel request [2026-08-16 04:33:03,635][ INFO][PID:3495221] Checking for cancel request [2026-08-16 04:33:08,636][ INFO][PID:3495221] Checking for cancel request [2026-08-16 04:33:13,638][ INFO][PID:3495221] Checking for cancel request [2026-08-16 04:33:18,641][ INFO][PID:3495221] Checking for cancel request [2026-08-16 04:33:23,651][ INFO][PID:3495221] Checking for cancel request [2026-08-16 04:33:28,653][ INFO][PID:3495221] Checking for cancel request [2026-08-16 04:33:33,654][ INFO][PID:3495221] Checking for cancel request [2026-08-16 04:33:38,656][ INFO][PID:3495221] Checking for cancel request [2026-08-16 04:33:43,657][ INFO][PID:3495221] Checking for cancel request [2026-08-16 04:33:44,055][ INFO][PID:3495221] Downloading results from builder [2026-08-16 04:33:44,056][ INFO][PID:3495221] rsyncing of mockbuilder@44.222.230.154:/var/lib/copr-rpmbuild/results/ to /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5368/srpm-builds/10868849 started [2026-08-16 04:33:44,060][ INFO][PID:3495221] Popen command started: /usr/bin/rsync -rltDvH --chmod=D755,F644 -e 'ssh -F /home/copr/.ssh/config' mockbuilder@44.222.230.154:/var/lib/copr-rpmbuild/results/ /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5368/srpm-builds/10868849/ &> /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5368/srpm-builds/10868849/build-10868849.rsync.log [2026-08-16 04:33:49,601][ INFO][PID:3495221] rsyncing finished. [2026-08-16 04:33:49,602][ INFO][PID:3495221] VM Release request [2026-08-16 04:33:49,613][ INFO][PID:3495221] Searching for 'success' file in resultdir [2026-08-16 04:33:49,614][ INFO][PID:3495221] Getting build details [2026-08-16 04:33:49,615][ INFO][PID:3495221] Retrieving SRPM info from /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5368/srpm-builds/10868849 [2026-08-16 04:33:49,616][ INFO][PID:3495221] SRPM URL: https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5368/srpm-builds/10868849/Sunshine-0.0.5368-1.src.rpm [2026-08-16 04:33:49,617][ INFO][PID:3495221] build details: {'srpm_url': 'https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5368/srpm-builds/10868849/Sunshine-0.0.5368-1.src.rpm', 'pkg_name': 'Sunshine', 'pkg_version': '0.0.5368-1'} [2026-08-16 04:33:49,617][ INFO][PID:3495221] Finished build: id=10868849 failed=False timeout=108000 destdir=/var/lib/copr/public_html/results/lizardbyte/pulls:pr:5368 chroot=srpm-builds [2026-08-16 04:33:49,618][ INFO][PID:3495221] Worker succeeded build, took 673.0908164978027 [2026-08-16 04:33:49,619][ INFO][PID:3495221] 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": 1786854829.618749, "started_on": 1786854156.5279324, "submitted_on": null, "status": 1, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10868849", "build_id": 10868849, "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\": \"tmpsmgaoufp\", \"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/10868849/Sunshine-0.0.5368-1.src.rpm", "uses_devel_repo": null, "sandbox": "lizardbyte/pulls--050457c6-6797-4703-8e82-081381fef136", "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": "10868849", "built_packages": "", "tags": [ "arch_x86_64" ], "rpmeta_prediction": null, "pkg_version": "0.0.5368-1", "id": 10868849, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2026-08-16 04:33:49,678][ INFO][PID:3495221] Sending fedora-messaging bus message in build.end [2026-08-16 04:33:49,707][ INFO][PID:3495221] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5368/srpm-builds/10868849/builder-live.log by gzip [2026-08-16 04:33:49,709][ INFO][PID:3495221] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5368/srpm-builds/10868849/builder-live.log' as PID 3617274 [2026-08-16 04:33:49,732][ INFO][PID:3495221] Finished after 0 seconds with exit code 0 (gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5368/srpm-builds/10868849/builder-live.log) [2026-08-16 04:33:49,733][ INFO][PID:3495221] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5368/srpm-builds/10868849/backend.log by gzip [2026-08-16 04:33:49,735][ INFO][PID:3495221] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5368/srpm-builds/10868849/backend.log' as PID 3617280