[2026-09-16 14:31:34,059][ INFO][PID:124890] Marking build as starting [2026-09-16 14:31:34,112][ INFO][PID:124890] Checking for cancel request [2026-09-16 14:31:34,116][ INFO][PID:124890] VM allocation process starts [2026-09-16 14:31:34,147][ INFO][PID:124890] Trying to allocate VM: ResallocHost, ticket_id=5063502, requested_tags=['arch_x86_64', 'copr_builder'] [2026-09-16 14:31:37,170][ INFO][PID:124890] Allocated host ResallocHost, ticket_id=5063502, hostname=18.204.203.124, name=aws_x86_64_reserved_prod_38650156_20260916_142951, requested_tags=['arch_x86_64', 'copr_builder'] [2026-09-16 14:31:37,170][ INFO][PID:124890] Allocating ssh connection to builder [2026-09-16 14:31:37,170][ INFO][PID:124890] Checking that builder machine is OK [2026-09-16 14:31:37,448][ INFO][PID:124890] Installed copr-rpmbuild version: 1.9 [2026-09-16 14:31:38,438][ INFO][PID:124890] Running remote command: copr-builder-ready srpm-builds [2026-09-16 14:31:38,625][ INFO][PID:124890] Red Hat subscription not needed for srpm-builds Builder is ready to be used [2026-09-16 14:31:38,625][ INFO][PID:124890] Filling build.info file with builder info [2026-09-16 14:31:38,625][ INFO][PID:124890] Checking for cancel request [2026-09-16 14:31:38,626][ INFO][PID:124890] 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:5735", "submitter": null, "ended_on": null, "started_on": 1789569098.6261764, "submitted_on": null, "status": 3, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10992357", "build_id": 10992357, "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\": \"tmp4xcc4eju\", \"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--e0d44986-da97-4782-b53f-d2ae08d6c98f", "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:5735", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5735", "result_dir": "10992357", "built_packages": "", "tags": [ "arch_x86_64" ], "rpmeta_prediction": null, "id": 10992357, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2026-09-16 14:31:38,657][ INFO][PID:124890] Sending fedora-messaging bus message in build.start [2026-09-16 14:31:39,031][ INFO][PID:124890] Sending fedora-messaging bus message in chroot.start [2026-09-16 14:31:39,052][ INFO][PID:124890] Starting remote build: copr-rpmbuild --verbose --drop-resultdir --srpm --task-url https://copr.fedorainfracloud.org/backend/get-srpm-build-task/10992357 --detached [2026-09-16 14:31:39,609][ INFO][PID:124890] The copr-rpmbuild seems started, per: stdout: stderr: Warning: Permanently added '18.204.203.124' (ED25519) to the list of known hosts. [2026-09-16 14:31:39,610][ INFO][PID:124890] Downloading the builder-live.log file, attempt 1 [2026-09-16 14:31:39,611][ INFO][PID:124890] Popen command started: ssh -F /home/copr/.ssh/config mockbuilder@18.204.203.124 copr-rpmbuild-log [2026-09-16 14:31:44,614][ INFO][PID:124890] Periodic builder liveness probe: alive [2026-09-16 14:31:44,615][ INFO][PID:124890] Checking for cancel request [2026-09-16 14:31:49,615][ INFO][PID:124890] Checking for cancel request [2026-09-16 14:31:54,616][ INFO][PID:124890] Checking for cancel request [2026-09-16 14:31:59,617][ INFO][PID:124890] Checking for cancel request [2026-09-16 14:32:04,618][ INFO][PID:124890] Checking for cancel request [2026-09-16 14:32:09,619][ INFO][PID:124890] Checking for cancel request [2026-09-16 14:32:14,620][ INFO][PID:124890] Checking for cancel request [2026-09-16 14:32:19,621][ INFO][PID:124890] Checking for cancel request [2026-09-16 14:32:24,622][ INFO][PID:124890] Checking for cancel request [2026-09-16 14:32:29,622][ INFO][PID:124890] Checking for cancel request [2026-09-16 14:32:34,624][ INFO][PID:124890] Checking for cancel request [2026-09-16 14:32:39,626][ INFO][PID:124890] Checking for cancel request [2026-09-16 14:32:44,627][ INFO][PID:124890] Checking for cancel request [2026-09-16 14:32:49,628][ INFO][PID:124890] Checking for cancel request [2026-09-16 14:32:54,628][ INFO][PID:124890] Checking for cancel request [2026-09-16 14:32:59,630][ INFO][PID:124890] Checking for cancel request [2026-09-16 14:33:04,630][ INFO][PID:124890] Checking for cancel request [2026-09-16 14:33:09,631][ INFO][PID:124890] Checking for cancel request [2026-09-16 14:33:14,632][ INFO][PID:124890] Checking for cancel request [2026-09-16 14:33:19,633][ INFO][PID:124890] Checking for cancel request [2026-09-16 14:33:24,634][ INFO][PID:124890] Checking for cancel request [2026-09-16 14:33:29,635][ INFO][PID:124890] Checking for cancel request [2026-09-16 14:33:34,636][ INFO][PID:124890] Checking for cancel request [2026-09-16 14:33:39,637][ INFO][PID:124890] Checking for cancel request [2026-09-16 14:33:44,638][ INFO][PID:124890] Checking for cancel request [2026-09-16 14:33:49,638][ INFO][PID:124890] Checking for cancel request [2026-09-16 14:33:54,639][ INFO][PID:124890] Checking for cancel request [2026-09-16 14:33:59,640][ INFO][PID:124890] Checking for cancel request [2026-09-16 14:34:04,644][ INFO][PID:124890] Checking for cancel request [2026-09-16 14:34:09,645][ INFO][PID:124890] Checking for cancel request [2026-09-16 14:34:14,646][ INFO][PID:124890] Checking for cancel request [2026-09-16 14:34:19,647][ INFO][PID:124890] Checking for cancel request [2026-09-16 14:34:24,647][ INFO][PID:124890] Checking for cancel request [2026-09-16 14:34:29,648][ INFO][PID:124890] Checking for cancel request [2026-09-16 14:34:34,650][ INFO][PID:124890] Checking for cancel request [2026-09-16 14:34:39,651][ INFO][PID:124890] Checking for cancel request [2026-09-16 14:34:44,652][ INFO][PID:124890] Checking for cancel request [2026-09-16 14:34:49,653][ INFO][PID:124890] Checking for cancel request [2026-09-16 14:34:54,654][ INFO][PID:124890] Checking for cancel request [2026-09-16 14:34:59,655][ INFO][PID:124890] Checking for cancel request [2026-09-16 14:35:04,656][ INFO][PID:124890] Checking for cancel request [2026-09-16 14:35:09,657][ INFO][PID:124890] Checking for cancel request [2026-09-16 14:35:14,659][ INFO][PID:124890] Checking for cancel request [2026-09-16 14:35:19,660][ INFO][PID:124890] Checking for cancel request [2026-09-16 14:35:24,661][ INFO][PID:124890] Checking for cancel request [2026-09-16 14:35:29,662][ INFO][PID:124890] Checking for cancel request [2026-09-16 14:35:34,663][ INFO][PID:124890] Checking for cancel request [2026-09-16 14:35:39,664][ INFO][PID:124890] Checking for cancel request [2026-09-16 14:35:44,665][ INFO][PID:124890] Checking for cancel request [2026-09-16 14:35:49,665][ INFO][PID:124890] Checking for cancel request [2026-09-16 14:35:54,666][ INFO][PID:124890] Checking for cancel request [2026-09-16 14:35:59,667][ INFO][PID:124890] Checking for cancel request [2026-09-16 14:36:04,668][ INFO][PID:124890] Checking for cancel request [2026-09-16 14:36:09,669][ INFO][PID:124890] Checking for cancel request [2026-09-16 14:36:14,670][ INFO][PID:124890] Checking for cancel request [2026-09-16 14:36:19,675][ INFO][PID:124890] Checking for cancel request [2026-09-16 14:36:24,676][ INFO][PID:124890] Checking for cancel request [2026-09-16 14:36:29,684][ INFO][PID:124890] Checking for cancel request [2026-09-16 14:36:34,686][ INFO][PID:124890] Checking for cancel request [2026-09-16 14:36:39,687][ INFO][PID:124890] Checking for cancel request [2026-09-16 14:36:44,690][ INFO][PID:124890] Checking for cancel request [2026-09-16 14:36:49,692][ INFO][PID:124890] Checking for cancel request [2026-09-16 14:36:54,693][ INFO][PID:124890] Checking for cancel request [2026-09-16 14:36:59,694][ INFO][PID:124890] Checking for cancel request [2026-09-16 14:37:04,695][ INFO][PID:124890] Checking for cancel request [2026-09-16 14:37:09,696][ INFO][PID:124890] Checking for cancel request [2026-09-16 14:37:14,697][ INFO][PID:124890] Checking for cancel request [2026-09-16 14:37:19,698][ INFO][PID:124890] Checking for cancel request [2026-09-16 14:37:24,699][ INFO][PID:124890] Checking for cancel request [2026-09-16 14:37:29,700][ INFO][PID:124890] Checking for cancel request [2026-09-16 14:37:34,702][ INFO][PID:124890] Checking for cancel request [2026-09-16 14:37:39,703][ INFO][PID:124890] Checking for cancel request [2026-09-16 14:37:44,703][ INFO][PID:124890] Checking for cancel request [2026-09-16 14:37:49,704][ INFO][PID:124890] Checking for cancel request [2026-09-16 14:37:54,705][ INFO][PID:124890] Checking for cancel request [2026-09-16 14:37:59,706][ INFO][PID:124890] Checking for cancel request [2026-09-16 14:38:04,708][ INFO][PID:124890] Checking for cancel request [2026-09-16 14:38:09,710][ INFO][PID:124890] Checking for cancel request [2026-09-16 14:38:14,710][ INFO][PID:124890] Checking for cancel request [2026-09-16 14:38:19,711][ INFO][PID:124890] Checking for cancel request [2026-09-16 14:38:24,712][ INFO][PID:124890] Checking for cancel request [2026-09-16 14:38:29,713][ INFO][PID:124890] Checking for cancel request [2026-09-16 14:38:35,030][ INFO][PID:124890] Checking for cancel request [2026-09-16 14:38:40,032][ INFO][PID:124890] Checking for cancel request [2026-09-16 14:38:45,034][ INFO][PID:124890] Checking for cancel request [2026-09-16 14:38:50,035][ INFO][PID:124890] Checking for cancel request [2026-09-16 14:38:55,036][ INFO][PID:124890] Checking for cancel request [2026-09-16 14:39:00,036][ INFO][PID:124890] Checking for cancel request [2026-09-16 14:39:05,037][ INFO][PID:124890] Checking for cancel request [2026-09-16 14:39:10,038][ INFO][PID:124890] Checking for cancel request [2026-09-16 14:39:15,041][ INFO][PID:124890] Checking for cancel request [2026-09-16 14:39:20,042][ INFO][PID:124890] Checking for cancel request [2026-09-16 14:39:25,043][ INFO][PID:124890] Checking for cancel request [2026-09-16 14:39:30,044][ INFO][PID:124890] Checking for cancel request [2026-09-16 14:39:35,045][ INFO][PID:124890] Checking for cancel request [2026-09-16 14:39:40,046][ INFO][PID:124890] Checking for cancel request [2026-09-16 14:39:45,047][ INFO][PID:124890] Checking for cancel request [2026-09-16 14:39:50,048][ INFO][PID:124890] Checking for cancel request [2026-09-16 14:39:55,049][ INFO][PID:124890] Checking for cancel request [2026-09-16 14:40:00,050][ INFO][PID:124890] Checking for cancel request [2026-09-16 14:40:05,050][ INFO][PID:124890] Checking for cancel request [2026-09-16 14:40:10,051][ INFO][PID:124890] Checking for cancel request [2026-09-16 14:40:15,052][ INFO][PID:124890] Checking for cancel request [2026-09-16 14:40:20,053][ INFO][PID:124890] Checking for cancel request [2026-09-16 14:40:25,054][ INFO][PID:124890] Checking for cancel request [2026-09-16 14:40:30,055][ INFO][PID:124890] Checking for cancel request [2026-09-16 14:40:35,056][ INFO][PID:124890] Checking for cancel request [2026-09-16 14:40:40,057][ INFO][PID:124890] Checking for cancel request [2026-09-16 14:40:45,058][ INFO][PID:124890] Checking for cancel request [2026-09-16 14:40:50,059][ INFO][PID:124890] Checking for cancel request [2026-09-16 14:40:55,138][ INFO][PID:124890] Checking for cancel request [2026-09-16 14:41:00,139][ INFO][PID:124890] Checking for cancel request [2026-09-16 14:41:05,141][ INFO][PID:124890] Checking for cancel request [2026-09-16 14:41:10,147][ INFO][PID:124890] Checking for cancel request [2026-09-16 14:41:15,148][ INFO][PID:124890] Checking for cancel request [2026-09-16 14:41:20,149][ INFO][PID:124890] Checking for cancel request [2026-09-16 14:41:25,150][ INFO][PID:124890] Checking for cancel request [2026-09-16 14:41:30,151][ INFO][PID:124890] Checking for cancel request [2026-09-16 14:41:35,152][ INFO][PID:124890] Checking for cancel request [2026-09-16 14:41:40,153][ INFO][PID:124890] Checking for cancel request [2026-09-16 14:41:45,157][ INFO][PID:124890] Periodic builder liveness probe: alive [2026-09-16 14:41:45,157][ INFO][PID:124890] Checking for cancel request [2026-09-16 14:41:50,158][ INFO][PID:124890] Checking for cancel request [2026-09-16 14:41:55,159][ INFO][PID:124890] Checking for cancel request [2026-09-16 14:42:00,160][ INFO][PID:124890] Checking for cancel request [2026-09-16 14:42:05,161][ INFO][PID:124890] Checking for cancel request [2026-09-16 14:42:10,161][ INFO][PID:124890] Checking for cancel request [2026-09-16 14:42:13,067][ INFO][PID:124890] Downloading results from builder [2026-09-16 14:42:13,068][ INFO][PID:124890] rsyncing of mockbuilder@18.204.203.124:/var/lib/copr-rpmbuild/results/ to /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5735/srpm-builds/10992357 started [2026-09-16 14:42:13,068][ INFO][PID:124890] Popen command started: /usr/bin/rsync -rltDvH --chmod=D755,F644 -e 'ssh -F /home/copr/.ssh/config' mockbuilder@18.204.203.124:/var/lib/copr-rpmbuild/results/ /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5735/srpm-builds/10992357/ &> /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5735/srpm-builds/10992357/build-10992357.rsync.log [2026-09-16 14:42:15,142][ INFO][PID:124890] rsyncing finished. [2026-09-16 14:42:15,143][ INFO][PID:124890] VM Release request [2026-09-16 14:42:15,159][ INFO][PID:124890] Searching for 'success' file in resultdir [2026-09-16 14:42:15,160][ INFO][PID:124890] Getting build details [2026-09-16 14:42:15,160][ INFO][PID:124890] Retrieving SRPM info from /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5735/srpm-builds/10992357 [2026-09-16 14:42:15,161][ INFO][PID:124890] SRPM URL: https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5735/srpm-builds/10992357/Sunshine-0.0.5735-1.src.rpm [2026-09-16 14:42:15,161][ INFO][PID:124890] build details: {'srpm_url': 'https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5735/srpm-builds/10992357/Sunshine-0.0.5735-1.src.rpm', 'pkg_name': 'Sunshine', 'pkg_version': '0.0.5735-1'} [2026-09-16 14:42:15,161][ INFO][PID:124890] Finished build: id=10992357 failed=False timeout=108000 destdir=/var/lib/copr/public_html/results/lizardbyte/pulls:pr:5735 chroot=srpm-builds [2026-09-16 14:42:15,162][ INFO][PID:124890] Worker succeeded build, took 636.536180973053 [2026-09-16 14:42:15,162][ INFO][PID:124890] 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:5735", "submitter": null, "ended_on": 1789569735.1623573, "started_on": 1789569098.6261764, "submitted_on": null, "status": 1, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10992357", "build_id": 10992357, "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\": \"tmp4xcc4eju\", \"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:5735/srpm-builds/10992357/Sunshine-0.0.5735-1.src.rpm", "uses_devel_repo": null, "sandbox": "lizardbyte/pulls--e0d44986-da97-4782-b53f-d2ae08d6c98f", "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.5735", "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:5735", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5735", "result_dir": "10992357", "built_packages": "", "tags": [ "arch_x86_64" ], "rpmeta_prediction": null, "pkg_version": "0.0.5735-1", "id": 10992357, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2026-09-16 14:42:15,210][ INFO][PID:124890] Sending fedora-messaging bus message in build.end [2026-09-16 14:42:15,262][ INFO][PID:124890] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5735/srpm-builds/10992357/builder-live.log by gzip [2026-09-16 14:42:15,263][ INFO][PID:124890] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5735/srpm-builds/10992357/builder-live.log' as PID 351182 [2026-09-16 14:42:15,309][ INFO][PID:124890] Finished after 0 seconds with exit code 0 (gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5735/srpm-builds/10992357/builder-live.log) [2026-09-16 14:42:15,310][ INFO][PID:124890] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5735/srpm-builds/10992357/backend.log by gzip [2026-09-16 14:42:15,310][ INFO][PID:124890] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5735/srpm-builds/10992357/backend.log' as PID 351204