[2026-09-16 04:16:13,688][ INFO][PID:3096427] Marking build as starting [2026-09-16 04:16:13,719][ INFO][PID:3096427] Checking for cancel request [2026-09-16 04:16:13,720][ INFO][PID:3096427] VM allocation process starts [2026-09-16 04:16:13,725][ INFO][PID:3096427] Trying to allocate VM: ResallocHost, ticket_id=5052917, requested_tags=['arch_x86_64', 'copr_builder'] [2026-09-16 04:16:16,734][ INFO][PID:3096427] Allocated host ResallocHost, ticket_id=5052917, hostname=3.82.220.47, name=aws_x86_64_reserved_prod_38297411_20260916_041239, requested_tags=['arch_x86_64', 'copr_builder'] [2026-09-16 04:16:16,735][ INFO][PID:3096427] Allocating ssh connection to builder [2026-09-16 04:16:16,735][ INFO][PID:3096427] Checking that builder machine is OK [2026-09-16 04:16:17,038][ INFO][PID:3096427] Installed copr-rpmbuild version: 1.9 [2026-09-16 04:16:17,038][ INFO][PID:3096427] Running remote command: copr-builder-ready srpm-builds [2026-09-16 04:16:17,202][ INFO][PID:3096427] Red Hat subscription not needed for srpm-builds Builder is ready to be used [2026-09-16 04:16:17,202][ INFO][PID:3096427] Filling build.info file with builder info [2026-09-16 04:16:17,203][ INFO][PID:3096427] Checking for cancel request [2026-09-16 04:16:17,203][ INFO][PID:3096427] 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:5731", "submitter": null, "ended_on": null, "started_on": 1789532177.2038207, "submitted_on": null, "status": 3, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10990614", "build_id": 10990614, "package_name": "Sunshine", "package_version": null, "git_repo": null, "git_hash": null, "git_branch": null, "source_type": 9, "source_json": "{\"script\": \"#!/usr/bin/env bash\\nset -x\\nset -e\\n\\nresultdir=\\\"${COPR_RESULTDIR}\\\"\\ngit clone \\\"https://github.com/${COPR_OWNER}/${COPR_PACKAGE}.git\\\" --depth 1\\ncd \\\"${COPR_PACKAGE}\\\"\\n\\n# get info from the webhook payload\\nif [[ -z \\\"$REVISION\\\" ]]; then\\n # the hook_payload file contains webhook JSON payload (copr creates it for us);\\n # it is created only if the build is triggered by Custom webhook.\\n if [[ -f \\\"$resultdir\\\"/hook_payload ]]; then\\n git clone https://github.com/praiskup/copr-ci-tooling \\\\\\n \\\"$resultdir/cct\\\" --depth 1\\n export PATH=\\\"$resultdir/cct:$PATH\\\"\\n\\n echo \\\"---\\\"\\n cat \\\"$resultdir\\\"/hook_payload\\n echo \\\"---\\\"\\n\\n # use jq to get the pr_id from the hook_payload\\n PR=$(jq -r '.pr_id // empty' \\\"$resultdir\\\"/hook_payload)\\n if [[ -z \\\"$PR\\\" ]]; then\\n BRANCH=\\\"master\\\"\\n else\\n BRANCH=\\\"pr/${PR}\\\"\\n fi\\n\\n copr-travis-checkout \\\"$resultdir\\\"/hook_payload\\n fi\\nelse\\n git checkout \\\"$REVISION\\\"\\nfi\\n\\n# read optional exclusions from .copr-ci config file\\n# each non-empty, non-comment line is treated as a submodule path or directory\\n# to exclude (relative to the repo root, e.g. \\\"third-party/build-deps\\\")\\nEXCLUDED_PATHS=()\\nif [[ -f \\\".copr-ci\\\" ]]; then\\n echo \\\"Found .copr-ci config file, reading exclusions...\\\"\\n while IFS= read -r line || [[ -n \\\"$line\\\" ]]; do\\n # skip empty lines and comments\\n [[ -z \\\"$line\\\" || \\\"$line\\\" =~ ^# ]] && continue\\n EXCLUDED_PATHS+=(\\\"$line\\\")\\n echo \\\" Excluding: $line\\\"\\n done < \\\".copr-ci\\\"\\nfi\\n\\n# initialize the submodules, skipping any excluded paths\\nif [[ ${#EXCLUDED_PATHS[@]} -gt 0 ]]; then\\n # get all top-level submodule paths, then init only the ones not excluded\\n mapfile -t TOP_SUBMODULES < <(git submodule status | awk '{print $2}')\\n\\n for submodule in \\\"${TOP_SUBMODULES[@]}\\\"; do\\n skip=false\\n for excluded in \\\"${EXCLUDED_PATHS[@]}\\\"; do\\n # match exact path or any path that starts with the excluded prefix\\n if [[ \\\"$submodule\\\" == \\\"$excluded\\\" || \\\"$submodule\\\" == \\\"$excluded/\\\"* ]]; then\\n skip=true\\n break\\n fi\\n done\\n if [[ \\\"$skip\\\" == false ]]; then\\n git submodule update --init --recursive --depth 1 -- \\\"$submodule\\\"\\n else\\n echo \\\"Skipping submodule: $submodule\\\"\\n fi\\n done\\nelse\\n git submodule update --init --recursive --depth 1\\nfi\\n\\n# get the tag of this commit IF it has one\\nTAG=$(git tag --points-at HEAD | head -n1)\\nif [[ -z \\\"$TAG\\\" ]]; then\\n TAG=\\\"0.0.$PR\\\"\\nfi\\nTAG=\\\"${TAG#v}\\\" # remove v prefix from the tag\\necho \\\"TAG=$TAG\\\"\\n\\n# get the commit\\nCOMMIT=$(git rev-parse HEAD)\\necho \\\"COMMIT=$COMMIT\\\"\\n\\n# move spec file to the correct location\\ndirectories=(\\n \\\".\\\"\\n \\\"./packaging/linux/copr\\\"\\n)\\nfor dir in \\\"${directories[@]}\\\"; do\\n if [[ -f \\\"${dir}/${COPR_PACKAGE}.spec\\\" ]]; then\\n echo \\\"Found spec file in ${dir}\\\"\\n rpmlint \\\"${dir}/${COPR_PACKAGE}.spec\\\"\\n\\n mv \\\"${dir}/${COPR_PACKAGE}.spec\\\" \\\"${resultdir}\\\"\\n break\\n fi\\ndone\\n\\n# fail if the spec file is not in the resultdir\\nif [[ ! -f \\\"${resultdir}/${COPR_PACKAGE}.spec\\\" ]]; then\\n echo \\\"ERROR: ${COPR_PACKAGE}.spec not found\\\" >&2\\n exit 1\\nfi\\n\\n# use sed to replace these values in the spec file\\nsed -i \\\"s|%global build_version 0|%global build_version ${TAG}|\\\" \\\"${resultdir}\\\"/*.spec\\nsed -i \\\"s|%global branch 0|%global branch ${BRANCH}|\\\" \\\"${resultdir}\\\"/*.spec\\nsed -i \\\"s|%global commit 0|%global commit ${COMMIT}|\\\" \\\"${resultdir}\\\"/*.spec\\n\\n# create a tarball of the source code, excluding any configured paths\\nTAR_EXCLUDE_ARGS=()\\nfor path in \\\"${EXCLUDED_PATHS[@]}\\\"; do\\n TAR_EXCLUDE_ARGS+=(\\\"--exclude=./${path}\\\")\\ndone\\ntar -czf \\\"${resultdir}/tarball.tar.gz\\\" \\\"${TAR_EXCLUDE_ARGS[@]}\\\" .\\n\", \"chroot\": \"fedora-45-x86_64\", \"builddeps\": \"git jq python3 rpmlint\", \"resultdir\": \"\", \"repos\": \"\", \"tmp\": \"tmpfwnnuvxs\", \"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--e441ddf7-e3ed-4f3f-893c-be16534acad5", "results": null, "appstream": false, "allow_user_ssh": null, "ssh_public_keys": null, "storage": null, "repos": [], "background": true, "distributions_in_build": [ "fedora-43", "fedora-44", "fedora-45", "fedora-rawhide", "opensuse-leap-16.0", "opensuse-tumbleweed" ], "distributions_in_project": [ "fedora-43", "fedora-44", "fedora-45", "fedora-rawhide", "opensuse-leap-16.0", "opensuse-tumbleweed" ], "destdir": "/var/lib/copr/public_html/results/lizardbyte/pulls:pr:5731", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5731", "result_dir": "10990614", "built_packages": "", "tags": [ "arch_x86_64" ], "rpmeta_prediction": null, "id": 10990614, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2026-09-16 04:16:17,230][ INFO][PID:3096427] Sending fedora-messaging bus message in build.start [2026-09-16 04:16:17,944][ INFO][PID:3096427] Sending fedora-messaging bus message in chroot.start [2026-09-16 04:16:18,024][ INFO][PID:3096427] Starting remote build: copr-rpmbuild --verbose --drop-resultdir --srpm --task-url https://copr.fedorainfracloud.org/backend/get-srpm-build-task/10990614 --detached [2026-09-16 04:16:18,467][ INFO][PID:3096427] The copr-rpmbuild seems started, per: stdout: stderr: Warning: Permanently added '3.82.220.47' (ED25519) to the list of known hosts. [2026-09-16 04:16:18,468][ INFO][PID:3096427] Downloading the builder-live.log file, attempt 1 [2026-09-16 04:16:18,469][ INFO][PID:3096427] Popen command started: ssh -F /home/copr/.ssh/config mockbuilder@3.82.220.47 copr-rpmbuild-log [2026-09-16 04:16:23,473][ INFO][PID:3096427] Periodic builder liveness probe: alive [2026-09-16 04:16:23,474][ INFO][PID:3096427] Checking for cancel request [2026-09-16 04:16:28,474][ INFO][PID:3096427] Checking for cancel request [2026-09-16 04:16:33,475][ INFO][PID:3096427] Checking for cancel request [2026-09-16 04:16:38,476][ INFO][PID:3096427] Checking for cancel request [2026-09-16 04:16:43,477][ INFO][PID:3096427] Checking for cancel request [2026-09-16 04:16:48,477][ INFO][PID:3096427] Checking for cancel request [2026-09-16 04:16:53,482][ INFO][PID:3096427] Checking for cancel request [2026-09-16 04:16:58,483][ INFO][PID:3096427] Checking for cancel request [2026-09-16 04:17:03,484][ INFO][PID:3096427] Checking for cancel request [2026-09-16 04:17:08,485][ INFO][PID:3096427] Checking for cancel request [2026-09-16 04:17:13,486][ INFO][PID:3096427] Checking for cancel request [2026-09-16 04:17:18,487][ INFO][PID:3096427] Checking for cancel request [2026-09-16 04:17:23,488][ INFO][PID:3096427] Checking for cancel request [2026-09-16 04:17:28,489][ INFO][PID:3096427] Checking for cancel request [2026-09-16 04:17:33,490][ INFO][PID:3096427] Checking for cancel request [2026-09-16 04:17:38,491][ INFO][PID:3096427] Checking for cancel request [2026-09-16 04:17:43,492][ INFO][PID:3096427] Checking for cancel request [2026-09-16 04:17:48,493][ INFO][PID:3096427] Checking for cancel request [2026-09-16 04:17:53,494][ INFO][PID:3096427] Checking for cancel request [2026-09-16 04:17:58,495][ INFO][PID:3096427] Checking for cancel request [2026-09-16 04:18:03,496][ INFO][PID:3096427] Checking for cancel request [2026-09-16 04:18:08,497][ INFO][PID:3096427] Checking for cancel request [2026-09-16 04:18:13,498][ INFO][PID:3096427] Checking for cancel request [2026-09-16 04:18:18,499][ INFO][PID:3096427] Checking for cancel request [2026-09-16 04:18:23,500][ INFO][PID:3096427] Checking for cancel request [2026-09-16 04:18:28,501][ INFO][PID:3096427] Checking for cancel request [2026-09-16 04:18:33,501][ INFO][PID:3096427] Checking for cancel request [2026-09-16 04:18:38,502][ INFO][PID:3096427] Checking for cancel request [2026-09-16 04:18:43,503][ INFO][PID:3096427] Checking for cancel request [2026-09-16 04:18:48,504][ INFO][PID:3096427] Checking for cancel request [2026-09-16 04:18:53,505][ INFO][PID:3096427] Checking for cancel request [2026-09-16 04:18:58,506][ INFO][PID:3096427] Checking for cancel request [2026-09-16 04:19:03,507][ INFO][PID:3096427] Checking for cancel request [2026-09-16 04:19:08,508][ INFO][PID:3096427] Checking for cancel request [2026-09-16 04:19:13,508][ INFO][PID:3096427] Checking for cancel request [2026-09-16 04:19:18,509][ INFO][PID:3096427] Checking for cancel request [2026-09-16 04:19:23,510][ INFO][PID:3096427] Checking for cancel request [2026-09-16 04:19:28,532][ INFO][PID:3096427] Checking for cancel request [2026-09-16 04:19:33,533][ INFO][PID:3096427] Checking for cancel request [2026-09-16 04:19:38,534][ INFO][PID:3096427] Checking for cancel request [2026-09-16 04:19:43,535][ INFO][PID:3096427] Checking for cancel request [2026-09-16 04:19:48,535][ INFO][PID:3096427] Checking for cancel request [2026-09-16 04:19:53,536][ INFO][PID:3096427] Checking for cancel request [2026-09-16 04:19:58,537][ INFO][PID:3096427] Checking for cancel request [2026-09-16 04:20:03,538][ INFO][PID:3096427] Checking for cancel request [2026-09-16 04:20:08,539][ INFO][PID:3096427] Checking for cancel request [2026-09-16 04:20:13,540][ INFO][PID:3096427] Checking for cancel request [2026-09-16 04:20:18,541][ INFO][PID:3096427] Checking for cancel request [2026-09-16 04:20:23,542][ INFO][PID:3096427] Checking for cancel request [2026-09-16 04:20:28,543][ INFO][PID:3096427] Checking for cancel request [2026-09-16 04:20:33,543][ INFO][PID:3096427] Checking for cancel request [2026-09-16 04:20:38,546][ INFO][PID:3096427] Checking for cancel request [2026-09-16 04:20:43,550][ INFO][PID:3096427] Checking for cancel request [2026-09-16 04:20:48,551][ INFO][PID:3096427] Checking for cancel request [2026-09-16 04:20:53,552][ INFO][PID:3096427] Checking for cancel request [2026-09-16 04:20:58,553][ INFO][PID:3096427] Checking for cancel request [2026-09-16 04:21:03,554][ INFO][PID:3096427] Checking for cancel request [2026-09-16 04:21:08,555][ INFO][PID:3096427] Checking for cancel request [2026-09-16 04:21:13,556][ INFO][PID:3096427] Checking for cancel request [2026-09-16 04:21:18,557][ INFO][PID:3096427] Checking for cancel request [2026-09-16 04:21:23,561][ INFO][PID:3096427] Checking for cancel request [2026-09-16 04:21:28,562][ INFO][PID:3096427] Checking for cancel request [2026-09-16 04:21:33,563][ INFO][PID:3096427] Checking for cancel request [2026-09-16 04:21:38,563][ INFO][PID:3096427] Checking for cancel request [2026-09-16 04:21:43,564][ INFO][PID:3096427] Checking for cancel request [2026-09-16 04:21:48,565][ INFO][PID:3096427] Checking for cancel request [2026-09-16 04:21:53,566][ INFO][PID:3096427] Checking for cancel request [2026-09-16 04:21:58,567][ INFO][PID:3096427] Checking for cancel request [2026-09-16 04:22:03,568][ INFO][PID:3096427] Checking for cancel request [2026-09-16 04:22:08,569][ INFO][PID:3096427] Checking for cancel request [2026-09-16 04:22:13,570][ INFO][PID:3096427] Checking for cancel request [2026-09-16 04:22:18,571][ INFO][PID:3096427] Checking for cancel request [2026-09-16 04:22:23,572][ INFO][PID:3096427] Checking for cancel request [2026-09-16 04:22:28,573][ INFO][PID:3096427] Checking for cancel request [2026-09-16 04:22:33,574][ INFO][PID:3096427] Checking for cancel request [2026-09-16 04:22:38,574][ INFO][PID:3096427] Checking for cancel request [2026-09-16 04:22:43,575][ INFO][PID:3096427] Checking for cancel request [2026-09-16 04:22:48,576][ INFO][PID:3096427] Checking for cancel request [2026-09-16 04:22:53,577][ INFO][PID:3096427] Checking for cancel request [2026-09-16 04:22:58,578][ INFO][PID:3096427] Checking for cancel request [2026-09-16 04:23:03,579][ INFO][PID:3096427] Checking for cancel request [2026-09-16 04:23:08,580][ INFO][PID:3096427] Checking for cancel request [2026-09-16 04:23:13,581][ INFO][PID:3096427] Checking for cancel request [2026-09-16 04:23:18,581][ INFO][PID:3096427] Checking for cancel request [2026-09-16 04:23:23,582][ INFO][PID:3096427] Checking for cancel request [2026-09-16 04:23:28,583][ INFO][PID:3096427] Checking for cancel request [2026-09-16 04:23:33,584][ INFO][PID:3096427] Checking for cancel request [2026-09-16 04:23:38,585][ INFO][PID:3096427] Checking for cancel request [2026-09-16 04:23:43,586][ INFO][PID:3096427] Checking for cancel request [2026-09-16 04:23:48,587][ INFO][PID:3096427] Checking for cancel request [2026-09-16 04:23:53,587][ INFO][PID:3096427] Checking for cancel request [2026-09-16 04:23:58,588][ INFO][PID:3096427] Checking for cancel request [2026-09-16 04:24:03,589][ INFO][PID:3096427] Checking for cancel request [2026-09-16 04:24:08,590][ INFO][PID:3096427] Checking for cancel request [2026-09-16 04:24:13,591][ INFO][PID:3096427] Checking for cancel request [2026-09-16 04:24:18,592][ INFO][PID:3096427] Checking for cancel request [2026-09-16 04:24:23,593][ INFO][PID:3096427] Checking for cancel request [2026-09-16 04:24:28,594][ INFO][PID:3096427] Checking for cancel request [2026-09-16 04:24:33,594][ INFO][PID:3096427] Checking for cancel request [2026-09-16 04:24:38,595][ INFO][PID:3096427] Checking for cancel request [2026-09-16 04:24:43,596][ INFO][PID:3096427] Checking for cancel request [2026-09-16 04:24:48,597][ INFO][PID:3096427] Checking for cancel request [2026-09-16 04:24:53,598][ INFO][PID:3096427] Checking for cancel request [2026-09-16 04:24:58,599][ INFO][PID:3096427] Checking for cancel request [2026-09-16 04:25:03,600][ INFO][PID:3096427] Checking for cancel request [2026-09-16 04:25:08,600][ INFO][PID:3096427] Checking for cancel request [2026-09-16 04:25:13,601][ INFO][PID:3096427] Checking for cancel request [2026-09-16 04:25:18,602][ INFO][PID:3096427] Checking for cancel request [2026-09-16 04:25:23,603][ INFO][PID:3096427] Checking for cancel request [2026-09-16 04:25:28,605][ INFO][PID:3096427] Checking for cancel request [2026-09-16 04:25:33,606][ INFO][PID:3096427] Checking for cancel request [2026-09-16 04:25:38,606][ INFO][PID:3096427] Checking for cancel request [2026-09-16 04:25:43,607][ INFO][PID:3096427] Checking for cancel request [2026-09-16 04:25:48,608][ INFO][PID:3096427] Checking for cancel request [2026-09-16 04:25:53,609][ INFO][PID:3096427] Checking for cancel request [2026-09-16 04:25:58,610][ INFO][PID:3096427] Checking for cancel request [2026-09-16 04:26:03,611][ INFO][PID:3096427] Checking for cancel request [2026-09-16 04:26:08,613][ INFO][PID:3096427] Checking for cancel request [2026-09-16 04:26:13,613][ INFO][PID:3096427] Checking for cancel request [2026-09-16 04:26:18,614][ INFO][PID:3096427] Checking for cancel request [2026-09-16 04:26:19,765][ INFO][PID:3096427] Downloading results from builder [2026-09-16 04:26:19,765][ INFO][PID:3096427] rsyncing of mockbuilder@3.82.220.47:/var/lib/copr-rpmbuild/results/ to /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5731/srpm-builds/10990614 started [2026-09-16 04:26:19,766][ INFO][PID:3096427] Popen command started: /usr/bin/rsync -rltDvH --chmod=D755,F644 -e 'ssh -F /home/copr/.ssh/config' mockbuilder@3.82.220.47:/var/lib/copr-rpmbuild/results/ /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5731/srpm-builds/10990614/ &> /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5731/srpm-builds/10990614/build-10990614.rsync.log [2026-09-16 04:26:21,788][ INFO][PID:3096427] rsyncing finished. [2026-09-16 04:26:21,788][ INFO][PID:3096427] VM Release request [2026-09-16 04:26:21,794][ INFO][PID:3096427] Searching for 'success' file in resultdir [2026-09-16 04:26:21,794][ INFO][PID:3096427] Getting build details [2026-09-16 04:26:21,794][ INFO][PID:3096427] Retrieving SRPM info from /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5731/srpm-builds/10990614 [2026-09-16 04:26:21,795][ INFO][PID:3096427] SRPM URL: https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5731/srpm-builds/10990614/Sunshine-0.0.5731-1.src.rpm [2026-09-16 04:26:21,795][ INFO][PID:3096427] build details: {'srpm_url': 'https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5731/srpm-builds/10990614/Sunshine-0.0.5731-1.src.rpm', 'pkg_name': 'Sunshine', 'pkg_version': '0.0.5731-1'} [2026-09-16 04:26:21,795][ INFO][PID:3096427] Finished build: id=10990614 failed=False timeout=108000 destdir=/var/lib/copr/public_html/results/lizardbyte/pulls:pr:5731 chroot=srpm-builds [2026-09-16 04:26:21,796][ INFO][PID:3096427] Worker succeeded build, took 604.5922586917877 [2026-09-16 04:26:21,796][ INFO][PID:3096427] 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:5731", "submitter": null, "ended_on": 1789532781.7960794, "started_on": 1789532177.2038207, "submitted_on": null, "status": 1, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10990614", "build_id": 10990614, "package_name": "Sunshine", "package_version": null, "git_repo": null, "git_hash": null, "git_branch": null, "source_type": 9, "source_json": "{\"script\": \"#!/usr/bin/env bash\\nset -x\\nset -e\\n\\nresultdir=\\\"${COPR_RESULTDIR}\\\"\\ngit clone \\\"https://github.com/${COPR_OWNER}/${COPR_PACKAGE}.git\\\" --depth 1\\ncd \\\"${COPR_PACKAGE}\\\"\\n\\n# get info from the webhook payload\\nif [[ -z \\\"$REVISION\\\" ]]; then\\n # the hook_payload file contains webhook JSON payload (copr creates it for us);\\n # it is created only if the build is triggered by Custom webhook.\\n if [[ -f \\\"$resultdir\\\"/hook_payload ]]; then\\n git clone https://github.com/praiskup/copr-ci-tooling \\\\\\n \\\"$resultdir/cct\\\" --depth 1\\n export PATH=\\\"$resultdir/cct:$PATH\\\"\\n\\n echo \\\"---\\\"\\n cat \\\"$resultdir\\\"/hook_payload\\n echo \\\"---\\\"\\n\\n # use jq to get the pr_id from the hook_payload\\n PR=$(jq -r '.pr_id // empty' \\\"$resultdir\\\"/hook_payload)\\n if [[ -z \\\"$PR\\\" ]]; then\\n BRANCH=\\\"master\\\"\\n else\\n BRANCH=\\\"pr/${PR}\\\"\\n fi\\n\\n copr-travis-checkout \\\"$resultdir\\\"/hook_payload\\n fi\\nelse\\n git checkout \\\"$REVISION\\\"\\nfi\\n\\n# read optional exclusions from .copr-ci config file\\n# each non-empty, non-comment line is treated as a submodule path or directory\\n# to exclude (relative to the repo root, e.g. \\\"third-party/build-deps\\\")\\nEXCLUDED_PATHS=()\\nif [[ -f \\\".copr-ci\\\" ]]; then\\n echo \\\"Found .copr-ci config file, reading exclusions...\\\"\\n while IFS= read -r line || [[ -n \\\"$line\\\" ]]; do\\n # skip empty lines and comments\\n [[ -z \\\"$line\\\" || \\\"$line\\\" =~ ^# ]] && continue\\n EXCLUDED_PATHS+=(\\\"$line\\\")\\n echo \\\" Excluding: $line\\\"\\n done < \\\".copr-ci\\\"\\nfi\\n\\n# initialize the submodules, skipping any excluded paths\\nif [[ ${#EXCLUDED_PATHS[@]} -gt 0 ]]; then\\n # get all top-level submodule paths, then init only the ones not excluded\\n mapfile -t TOP_SUBMODULES < <(git submodule status | awk '{print $2}')\\n\\n for submodule in \\\"${TOP_SUBMODULES[@]}\\\"; do\\n skip=false\\n for excluded in \\\"${EXCLUDED_PATHS[@]}\\\"; do\\n # match exact path or any path that starts with the excluded prefix\\n if [[ \\\"$submodule\\\" == \\\"$excluded\\\" || \\\"$submodule\\\" == \\\"$excluded/\\\"* ]]; then\\n skip=true\\n break\\n fi\\n done\\n if [[ \\\"$skip\\\" == false ]]; then\\n git submodule update --init --recursive --depth 1 -- \\\"$submodule\\\"\\n else\\n echo \\\"Skipping submodule: $submodule\\\"\\n fi\\n done\\nelse\\n git submodule update --init --recursive --depth 1\\nfi\\n\\n# get the tag of this commit IF it has one\\nTAG=$(git tag --points-at HEAD | head -n1)\\nif [[ -z \\\"$TAG\\\" ]]; then\\n TAG=\\\"0.0.$PR\\\"\\nfi\\nTAG=\\\"${TAG#v}\\\" # remove v prefix from the tag\\necho \\\"TAG=$TAG\\\"\\n\\n# get the commit\\nCOMMIT=$(git rev-parse HEAD)\\necho \\\"COMMIT=$COMMIT\\\"\\n\\n# move spec file to the correct location\\ndirectories=(\\n \\\".\\\"\\n \\\"./packaging/linux/copr\\\"\\n)\\nfor dir in \\\"${directories[@]}\\\"; do\\n if [[ -f \\\"${dir}/${COPR_PACKAGE}.spec\\\" ]]; then\\n echo \\\"Found spec file in ${dir}\\\"\\n rpmlint \\\"${dir}/${COPR_PACKAGE}.spec\\\"\\n\\n mv \\\"${dir}/${COPR_PACKAGE}.spec\\\" \\\"${resultdir}\\\"\\n break\\n fi\\ndone\\n\\n# fail if the spec file is not in the resultdir\\nif [[ ! -f \\\"${resultdir}/${COPR_PACKAGE}.spec\\\" ]]; then\\n echo \\\"ERROR: ${COPR_PACKAGE}.spec not found\\\" >&2\\n exit 1\\nfi\\n\\n# use sed to replace these values in the spec file\\nsed -i \\\"s|%global build_version 0|%global build_version ${TAG}|\\\" \\\"${resultdir}\\\"/*.spec\\nsed -i \\\"s|%global branch 0|%global branch ${BRANCH}|\\\" \\\"${resultdir}\\\"/*.spec\\nsed -i \\\"s|%global commit 0|%global commit ${COMMIT}|\\\" \\\"${resultdir}\\\"/*.spec\\n\\n# create a tarball of the source code, excluding any configured paths\\nTAR_EXCLUDE_ARGS=()\\nfor path in \\\"${EXCLUDED_PATHS[@]}\\\"; do\\n TAR_EXCLUDE_ARGS+=(\\\"--exclude=./${path}\\\")\\ndone\\ntar -czf \\\"${resultdir}/tarball.tar.gz\\\" \\\"${TAR_EXCLUDE_ARGS[@]}\\\" .\\n\", \"chroot\": \"fedora-45-x86_64\", \"builddeps\": \"git jq python3 rpmlint\", \"resultdir\": \"\", \"repos\": \"\", \"tmp\": \"tmpfwnnuvxs\", \"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:5731/srpm-builds/10990614/Sunshine-0.0.5731-1.src.rpm", "uses_devel_repo": null, "sandbox": "lizardbyte/pulls--e441ddf7-e3ed-4f3f-893c-be16534acad5", "results": { "architecture_specific_tags": { "fedora-43": {}, "fedora-44": {}, "fedora-45": {}, "fedora-rawhide": {}, "opensuse-leap-16.0": {}, "opensuse-tumbleweed": {} }, "name": "Sunshine", "epoch": null, "version": "0.0.5731", "release": "1" }, "appstream": false, "allow_user_ssh": null, "ssh_public_keys": null, "storage": null, "repos": [], "background": true, "distributions_in_build": [ "fedora-43", "fedora-44", "fedora-45", "fedora-rawhide", "opensuse-leap-16.0", "opensuse-tumbleweed" ], "distributions_in_project": [ "fedora-43", "fedora-44", "fedora-45", "fedora-rawhide", "opensuse-leap-16.0", "opensuse-tumbleweed" ], "destdir": "/var/lib/copr/public_html/results/lizardbyte/pulls:pr:5731", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5731", "result_dir": "10990614", "built_packages": "", "tags": [ "arch_x86_64" ], "rpmeta_prediction": null, "pkg_version": "0.0.5731-1", "id": 10990614, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2026-09-16 04:26:21,859][ INFO][PID:3096427] Sending fedora-messaging bus message in build.end [2026-09-16 04:26:21,896][ INFO][PID:3096427] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5731/srpm-builds/10990614/builder-live.log by gzip [2026-09-16 04:26:21,897][ INFO][PID:3096427] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5731/srpm-builds/10990614/builder-live.log' as PID 3235130 [2026-09-16 04:26:21,917][ INFO][PID:3096427] Finished after 0 seconds with exit code 0 (gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5731/srpm-builds/10990614/builder-live.log) [2026-09-16 04:26:21,917][ INFO][PID:3096427] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5731/srpm-builds/10990614/backend.log by gzip [2026-09-16 04:26:21,919][ INFO][PID:3096427] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5731/srpm-builds/10990614/backend.log' as PID 3235152