[2026-07-07 13:52:37,249][ INFO][PID:2824664] Marking build as starting [2026-07-07 13:52:37,301][ INFO][PID:2824664] Checking for cancel request [2026-07-07 13:52:37,303][ INFO][PID:2824664] VM allocation process starts [2026-07-07 13:52:37,311][ INFO][PID:2824664] Trying to allocate VM: ResallocHost, ticket_id=3794364, requested_tags=['arch_x86_64', 'copr_builder'] [2026-07-07 13:52:40,363][ INFO][PID:2824664] Allocated host ResallocHost, ticket_id=3794364, hostname=3.91.134.58, name=aws_x86_64_reserved_prod_12935994_20260707_134944, requested_tags=['arch_x86_64', 'copr_builder'] [2026-07-07 13:52:40,364][ INFO][PID:2824664] Allocating ssh connection to builder [2026-07-07 13:52:40,365][ INFO][PID:2824664] Checking that builder machine is OK [2026-07-07 13:52:40,673][ INFO][PID:2824664] Installed copr-rpmbuild version: 1.8 [2026-07-07 13:52:40,674][ INFO][PID:2824664] Running remote command: copr-builder-ready srpm-builds [2026-07-07 13:52:40,851][ INFO][PID:2824664] Red Hat subscription not needed for srpm-builds Builder is ready to be used [2026-07-07 13:52:40,851][ INFO][PID:2824664] Filling build.info file with builder info [2026-07-07 13:52:40,852][ INFO][PID:2824664] Checking for cancel request [2026-07-07 13:52:40,853][ INFO][PID:2824664] 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:5387", "submitter": null, "ended_on": null, "started_on": 1783432360.8531177, "submitted_on": null, "status": 3, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10693612", "build_id": 10693612, "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\": \"tmp3p0cirzr\", \"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--a8be4dc0-4505-44e6-9544-4b327b4bb27a", "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:5387", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5387", "result_dir": "10693612", "built_packages": "", "tags": [ "arch_x86_64" ], "rpmeta_prediction": null, "id": 10693612, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2026-07-07 13:52:40,899][ INFO][PID:2824664] Sending fedora-messaging bus message in build.start [2026-07-07 13:52:41,339][ INFO][PID:2824664] Sending fedora-messaging bus message in chroot.start [2026-07-07 13:52:41,368][ INFO][PID:2824664] Starting remote build: copr-rpmbuild --verbose --drop-resultdir --srpm --task-url https://copr.fedorainfracloud.org/backend/get-srpm-build-task/10693612 --detached [2026-07-07 13:52:41,833][ INFO][PID:2824664] The copr-rpmbuild seems started, per: stdout: stderr: Warning: Permanently added '3.91.134.58' (ED25519) to the list of known hosts. [2026-07-07 13:52:41,834][ INFO][PID:2824664] Downloading the builder-live.log file, attempt 1 [2026-07-07 13:52:41,836][ INFO][PID:2824664] Popen command started: ssh -F /home/copr/.ssh/config mockbuilder@3.91.134.58 copr-rpmbuild-log [2026-07-07 13:52:46,842][ INFO][PID:2824664] Periodic builder liveness probe: alive [2026-07-07 13:52:46,843][ INFO][PID:2824664] Checking for cancel request [2026-07-07 13:52:51,845][ INFO][PID:2824664] Checking for cancel request [2026-07-07 13:52:56,846][ INFO][PID:2824664] Checking for cancel request [2026-07-07 13:53:01,847][ INFO][PID:2824664] Checking for cancel request [2026-07-07 13:53:06,849][ INFO][PID:2824664] Checking for cancel request [2026-07-07 13:53:11,850][ INFO][PID:2824664] Checking for cancel request [2026-07-07 13:53:16,853][ INFO][PID:2824664] Checking for cancel request [2026-07-07 13:53:21,855][ INFO][PID:2824664] Checking for cancel request [2026-07-07 13:53:26,860][ INFO][PID:2824664] Checking for cancel request [2026-07-07 13:53:31,870][ INFO][PID:2824664] Checking for cancel request [2026-07-07 13:53:36,872][ INFO][PID:2824664] Checking for cancel request [2026-07-07 13:53:41,873][ INFO][PID:2824664] Checking for cancel request [2026-07-07 13:53:46,874][ INFO][PID:2824664] Checking for cancel request [2026-07-07 13:53:51,876][ INFO][PID:2824664] Checking for cancel request [2026-07-07 13:53:56,878][ INFO][PID:2824664] Checking for cancel request [2026-07-07 13:54:01,880][ INFO][PID:2824664] Checking for cancel request [2026-07-07 13:54:06,886][ INFO][PID:2824664] Checking for cancel request [2026-07-07 13:54:11,889][ INFO][PID:2824664] Checking for cancel request [2026-07-07 13:54:16,890][ INFO][PID:2824664] Checking for cancel request [2026-07-07 13:54:21,892][ INFO][PID:2824664] Checking for cancel request [2026-07-07 13:54:26,893][ INFO][PID:2824664] Checking for cancel request [2026-07-07 13:54:31,894][ INFO][PID:2824664] Checking for cancel request [2026-07-07 13:54:36,896][ INFO][PID:2824664] Checking for cancel request [2026-07-07 13:54:41,906][ INFO][PID:2824664] Checking for cancel request [2026-07-07 13:54:46,908][ INFO][PID:2824664] Checking for cancel request [2026-07-07 13:54:51,909][ INFO][PID:2824664] Checking for cancel request [2026-07-07 13:54:56,910][ INFO][PID:2824664] Checking for cancel request [2026-07-07 13:55:01,912][ INFO][PID:2824664] Checking for cancel request [2026-07-07 13:55:06,913][ INFO][PID:2824664] Checking for cancel request [2026-07-07 13:55:11,923][ INFO][PID:2824664] Checking for cancel request [2026-07-07 13:55:16,924][ INFO][PID:2824664] Checking for cancel request [2026-07-07 13:55:21,926][ INFO][PID:2824664] Checking for cancel request [2026-07-07 13:55:26,927][ INFO][PID:2824664] Checking for cancel request [2026-07-07 13:55:31,928][ INFO][PID:2824664] Checking for cancel request [2026-07-07 13:55:36,929][ INFO][PID:2824664] Checking for cancel request [2026-07-07 13:55:41,931][ INFO][PID:2824664] Checking for cancel request [2026-07-07 13:55:46,965][ INFO][PID:2824664] Checking for cancel request [2026-07-07 13:55:51,967][ INFO][PID:2824664] Checking for cancel request [2026-07-07 13:55:56,969][ INFO][PID:2824664] Checking for cancel request [2026-07-07 13:56:01,970][ INFO][PID:2824664] Checking for cancel request [2026-07-07 13:56:06,973][ INFO][PID:2824664] Checking for cancel request [2026-07-07 13:56:11,974][ INFO][PID:2824664] Checking for cancel request [2026-07-07 13:56:16,976][ INFO][PID:2824664] Checking for cancel request [2026-07-07 13:56:21,980][ INFO][PID:2824664] Checking for cancel request [2026-07-07 13:56:26,983][ INFO][PID:2824664] Checking for cancel request [2026-07-07 13:56:31,984][ INFO][PID:2824664] Checking for cancel request [2026-07-07 13:56:36,986][ INFO][PID:2824664] Checking for cancel request [2026-07-07 13:56:41,988][ INFO][PID:2824664] Checking for cancel request [2026-07-07 13:56:46,992][ INFO][PID:2824664] Checking for cancel request [2026-07-07 13:56:51,994][ INFO][PID:2824664] Checking for cancel request [2026-07-07 13:56:56,997][ INFO][PID:2824664] Checking for cancel request [2026-07-07 13:57:01,999][ INFO][PID:2824664] Checking for cancel request [2026-07-07 13:57:07,021][ INFO][PID:2824664] Checking for cancel request [2026-07-07 13:57:12,024][ INFO][PID:2824664] Checking for cancel request [2026-07-07 13:57:17,032][ INFO][PID:2824664] Checking for cancel request [2026-07-07 13:57:22,033][ INFO][PID:2824664] Checking for cancel request [2026-07-07 13:57:27,036][ INFO][PID:2824664] Checking for cancel request [2026-07-07 13:57:32,050][ INFO][PID:2824664] Checking for cancel request [2026-07-07 13:57:37,066][ INFO][PID:2824664] Checking for cancel request [2026-07-07 13:57:42,067][ INFO][PID:2824664] Checking for cancel request [2026-07-07 13:57:47,070][ INFO][PID:2824664] Checking for cancel request [2026-07-07 13:57:52,072][ INFO][PID:2824664] Checking for cancel request [2026-07-07 13:57:57,073][ INFO][PID:2824664] Checking for cancel request [2026-07-07 13:58:02,075][ INFO][PID:2824664] Checking for cancel request [2026-07-07 13:58:07,076][ INFO][PID:2824664] Checking for cancel request [2026-07-07 13:58:12,092][ INFO][PID:2824664] Checking for cancel request [2026-07-07 13:58:17,093][ INFO][PID:2824664] Checking for cancel request [2026-07-07 13:58:22,095][ INFO][PID:2824664] Checking for cancel request [2026-07-07 13:58:27,097][ INFO][PID:2824664] Checking for cancel request [2026-07-07 13:58:32,098][ INFO][PID:2824664] Checking for cancel request [2026-07-07 13:58:37,100][ INFO][PID:2824664] Checking for cancel request [2026-07-07 13:58:42,116][ INFO][PID:2824664] Checking for cancel request [2026-07-07 13:58:47,118][ INFO][PID:2824664] Checking for cancel request [2026-07-07 13:58:52,119][ INFO][PID:2824664] Checking for cancel request [2026-07-07 13:58:57,121][ INFO][PID:2824664] Checking for cancel request [2026-07-07 13:59:02,129][ INFO][PID:2824664] Checking for cancel request [2026-07-07 13:59:07,130][ INFO][PID:2824664] Checking for cancel request [2026-07-07 13:59:12,134][ INFO][PID:2824664] Checking for cancel request [2026-07-07 13:59:17,135][ INFO][PID:2824664] Checking for cancel request [2026-07-07 13:59:22,136][ INFO][PID:2824664] Checking for cancel request [2026-07-07 13:59:27,139][ INFO][PID:2824664] Checking for cancel request [2026-07-07 13:59:32,140][ INFO][PID:2824664] Checking for cancel request [2026-07-07 13:59:37,142][ INFO][PID:2824664] Checking for cancel request [2026-07-07 13:59:42,143][ INFO][PID:2824664] Checking for cancel request [2026-07-07 13:59:47,144][ INFO][PID:2824664] Checking for cancel request [2026-07-07 13:59:52,146][ INFO][PID:2824664] Checking for cancel request [2026-07-07 13:59:57,147][ INFO][PID:2824664] Checking for cancel request [2026-07-07 14:00:02,149][ INFO][PID:2824664] Checking for cancel request [2026-07-07 14:00:07,151][ INFO][PID:2824664] Checking for cancel request [2026-07-07 14:00:12,160][ INFO][PID:2824664] Checking for cancel request [2026-07-07 14:00:17,168][ INFO][PID:2824664] Checking for cancel request [2026-07-07 14:00:22,171][ INFO][PID:2824664] Checking for cancel request [2026-07-07 14:00:27,181][ INFO][PID:2824664] Checking for cancel request [2026-07-07 14:00:32,183][ INFO][PID:2824664] Checking for cancel request [2026-07-07 14:00:37,200][ INFO][PID:2824664] Checking for cancel request [2026-07-07 14:00:42,201][ INFO][PID:2824664] Checking for cancel request [2026-07-07 14:00:47,203][ INFO][PID:2824664] Checking for cancel request [2026-07-07 14:00:52,205][ INFO][PID:2824664] Checking for cancel request [2026-07-07 14:00:57,209][ INFO][PID:2824664] Checking for cancel request [2026-07-07 14:01:02,210][ INFO][PID:2824664] Checking for cancel request [2026-07-07 14:01:07,268][ INFO][PID:2824664] Checking for cancel request [2026-07-07 14:01:12,271][ INFO][PID:2824664] Checking for cancel request [2026-07-07 14:01:17,283][ INFO][PID:2824664] Checking for cancel request [2026-07-07 14:01:22,288][ INFO][PID:2824664] Checking for cancel request [2026-07-07 14:01:27,290][ INFO][PID:2824664] Checking for cancel request [2026-07-07 14:01:32,293][ INFO][PID:2824664] Checking for cancel request [2026-07-07 14:01:37,296][ INFO][PID:2824664] Checking for cancel request [2026-07-07 14:01:42,303][ INFO][PID:2824664] Checking for cancel request [2026-07-07 14:01:47,304][ INFO][PID:2824664] Checking for cancel request [2026-07-07 14:01:52,307][ INFO][PID:2824664] Checking for cancel request [2026-07-07 14:01:57,308][ INFO][PID:2824664] Checking for cancel request [2026-07-07 14:02:02,310][ INFO][PID:2824664] Checking for cancel request [2026-07-07 14:02:07,312][ INFO][PID:2824664] Checking for cancel request [2026-07-07 14:02:12,313][ INFO][PID:2824664] Checking for cancel request [2026-07-07 14:02:17,316][ INFO][PID:2824664] Checking for cancel request [2026-07-07 14:02:22,318][ INFO][PID:2824664] Checking for cancel request [2026-07-07 14:02:27,322][ INFO][PID:2824664] Checking for cancel request [2026-07-07 14:02:32,325][ INFO][PID:2824664] Checking for cancel request [2026-07-07 14:02:32,872][ INFO][PID:2824664] Downloading results from builder [2026-07-07 14:02:32,970][ INFO][PID:2824664] rsyncing of mockbuilder@3.91.134.58:/var/lib/copr-rpmbuild/results/ to /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5387/srpm-builds/10693612 started [2026-07-07 14:02:33,188][ INFO][PID:2824664] Popen command started: /usr/bin/rsync -rltDvH --chmod=D755,F644 -e 'ssh -F /home/copr/.ssh/config' mockbuilder@3.91.134.58:/var/lib/copr-rpmbuild/results/ /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5387/srpm-builds/10693612/ &> /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5387/srpm-builds/10693612/build-10693612.rsync.log [2026-07-07 14:02:42,224][ INFO][PID:2824664] rsyncing finished. [2026-07-07 14:02:42,229][ INFO][PID:2824664] VM Release request [2026-07-07 14:02:42,501][ INFO][PID:2824664] Searching for 'success' file in resultdir [2026-07-07 14:02:42,565][ INFO][PID:2824664] Getting build details [2026-07-07 14:02:42,567][ INFO][PID:2824664] Retrieving SRPM info from /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5387/srpm-builds/10693612 [2026-07-07 14:02:42,646][ INFO][PID:2824664] SRPM URL: https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5387/srpm-builds/10693612/Sunshine-0.0.5387-1.src.rpm [2026-07-07 14:02:42,649][ INFO][PID:2824664] build details: {'srpm_url': 'https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5387/srpm-builds/10693612/Sunshine-0.0.5387-1.src.rpm', 'pkg_name': 'Sunshine', 'pkg_version': '0.0.5387-1'} [2026-07-07 14:02:42,662][ INFO][PID:2824664] Finished build: id=10693612 failed=False timeout=108000 destdir=/var/lib/copr/public_html/results/lizardbyte/pulls:pr:5387 chroot=srpm-builds [2026-07-07 14:02:42,768][ INFO][PID:2824664] Worker succeeded build, took 601.9147796630859 [2026-07-07 14:02:42,785][ INFO][PID:2824664] 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:5387", "submitter": null, "ended_on": 1783432962.7678974, "started_on": 1783432360.8531177, "submitted_on": null, "status": 1, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10693612", "build_id": 10693612, "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\": \"tmp3p0cirzr\", \"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:5387/srpm-builds/10693612/Sunshine-0.0.5387-1.src.rpm", "uses_devel_repo": null, "sandbox": "lizardbyte/pulls--a8be4dc0-4505-44e6-9544-4b327b4bb27a", "results": { "architecture_specific_tags": { "fedora-43": {}, "fedora-44": {}, "fedora-rawhide": {}, "opensuse-leap-15.6": {} }, "name": "Sunshine", "epoch": null, "version": "0.0.5387", "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:5387", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5387", "result_dir": "10693612", "built_packages": "", "tags": [ "arch_x86_64" ], "rpmeta_prediction": null, "pkg_version": "0.0.5387-1", "id": 10693612, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2026-07-07 14:02:43,718][ INFO][PID:2824664] Sending fedora-messaging bus message in build.end [2026-07-07 14:02:44,200][ INFO][PID:2824664] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5387/srpm-builds/10693612/builder-live.log by gzip [2026-07-07 14:02:44,231][ INFO][PID:2824664] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5387/srpm-builds/10693612/builder-live.log' as PID 2898764 [2026-07-07 14:02:44,298][ INFO][PID:2824664] Finished after 0 seconds with exit code 0 (gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5387/srpm-builds/10693612/builder-live.log) [2026-07-07 14:02:44,304][ INFO][PID:2824664] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5387/srpm-builds/10693612/backend.log by gzip [2026-07-07 14:02:44,306][ INFO][PID:2824664] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5387/srpm-builds/10693612/backend.log' as PID 2898783