[2026-09-15 18:28:37,789][ INFO][PID:660736] Marking build as starting [2026-09-15 18:28:37,826][ INFO][PID:660736] Checking for cancel request [2026-09-15 18:28:37,827][ INFO][PID:660736] VM allocation process starts [2026-09-15 18:28:37,833][ INFO][PID:660736] Trying to allocate VM: ResallocHost, ticket_id=5044823, requested_tags=['arch_x86_64', 'copr_builder'] [2026-09-15 18:28:40,841][ INFO][PID:660736] Allocated host ResallocHost, ticket_id=5044823, hostname=2620:52:6:1161:dead:beef:cafe:c14b, name=vmhost_x86_03_prod_37988708_20260915_175913, requested_tags=['arch_x86_64', 'copr_builder'] [2026-09-15 18:28:40,841][ INFO][PID:660736] Allocating ssh connection to builder [2026-09-15 18:28:40,841][ INFO][PID:660736] Checking that builder machine is OK [2026-09-15 18:28:41,350][ INFO][PID:660736] Installed copr-rpmbuild version: 1.9 [2026-09-15 18:28:41,351][ INFO][PID:660736] Running remote command: copr-builder-ready srpm-builds [2026-09-15 18:28:41,644][ INFO][PID:660736] Red Hat subscription not needed for srpm-builds Builder is ready to be used [2026-09-15 18:28:41,644][ INFO][PID:660736] Filling build.info file with builder info [2026-09-15 18:28:41,645][ INFO][PID:660736] Checking for cancel request [2026-09-15 18:28:41,645][ INFO][PID:660736] 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:5730", "submitter": null, "ended_on": null, "started_on": 1789496921.6456904, "submitted_on": null, "status": 3, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10988972", "build_id": 10988972, "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\": \"tmpu2yhsure\", \"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--20ea2da0-7fd1-4f12-bc92-25626d0dbbaa", "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:5730", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5730", "result_dir": "10988972", "built_packages": "", "tags": [ "arch_x86_64" ], "rpmeta_prediction": null, "id": 10988972, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2026-09-15 18:28:41,672][ INFO][PID:660736] Sending fedora-messaging bus message in build.start [2026-09-15 18:28:42,011][ INFO][PID:660736] Sending fedora-messaging bus message in chroot.start [2026-09-15 18:28:42,029][ INFO][PID:660736] Starting remote build: copr-rpmbuild --verbose --drop-resultdir --srpm --task-url https://copr.fedorainfracloud.org/backend/get-srpm-build-task/10988972 --detached [2026-09-15 18:28:42,617][ INFO][PID:660736] The copr-rpmbuild seems started, per: stdout: stderr: Warning: Permanently added '2620:52:6:1161:dead:beef:cafe:c14b' (ED25519) to the list of known hosts. [2026-09-15 18:28:42,618][ INFO][PID:660736] Downloading the builder-live.log file, attempt 1 [2026-09-15 18:28:42,619][ INFO][PID:660736] Popen command started: ssh -F /home/copr/.ssh/config mockbuilder@2620:52:6:1161:dead:beef:cafe:c14b copr-rpmbuild-log [2026-09-15 18:28:47,623][ INFO][PID:660736] Periodic builder liveness probe: alive [2026-09-15 18:28:47,624][ INFO][PID:660736] Checking for cancel request [2026-09-15 18:28:52,624][ INFO][PID:660736] Checking for cancel request [2026-09-15 18:28:57,625][ INFO][PID:660736] Checking for cancel request [2026-09-15 18:29:02,626][ INFO][PID:660736] Checking for cancel request [2026-09-15 18:29:07,627][ INFO][PID:660736] Checking for cancel request [2026-09-15 18:29:12,628][ INFO][PID:660736] Checking for cancel request [2026-09-15 18:29:17,629][ INFO][PID:660736] Checking for cancel request [2026-09-15 18:29:22,630][ INFO][PID:660736] Checking for cancel request [2026-09-15 18:29:27,630][ INFO][PID:660736] Checking for cancel request [2026-09-15 18:29:32,631][ INFO][PID:660736] Checking for cancel request [2026-09-15 18:29:37,632][ INFO][PID:660736] Checking for cancel request [2026-09-15 18:29:42,633][ INFO][PID:660736] Checking for cancel request [2026-09-15 18:29:47,634][ INFO][PID:660736] Checking for cancel request [2026-09-15 18:29:52,634][ INFO][PID:660736] Checking for cancel request [2026-09-15 18:29:57,635][ INFO][PID:660736] Checking for cancel request [2026-09-15 18:30:02,636][ INFO][PID:660736] Checking for cancel request [2026-09-15 18:30:07,637][ INFO][PID:660736] Checking for cancel request [2026-09-15 18:30:12,638][ INFO][PID:660736] Checking for cancel request [2026-09-15 18:30:17,638][ INFO][PID:660736] Checking for cancel request [2026-09-15 18:30:22,639][ INFO][PID:660736] Checking for cancel request [2026-09-15 18:30:27,640][ INFO][PID:660736] Checking for cancel request [2026-09-15 18:30:32,641][ INFO][PID:660736] Checking for cancel request [2026-09-15 18:30:37,642][ INFO][PID:660736] Checking for cancel request [2026-09-15 18:30:42,642][ INFO][PID:660736] Checking for cancel request [2026-09-15 18:30:47,643][ INFO][PID:660736] Checking for cancel request [2026-09-15 18:30:52,644][ INFO][PID:660736] Checking for cancel request [2026-09-15 18:30:57,645][ INFO][PID:660736] Checking for cancel request [2026-09-15 18:31:02,645][ INFO][PID:660736] Checking for cancel request [2026-09-15 18:31:07,646][ INFO][PID:660736] Checking for cancel request [2026-09-15 18:31:12,647][ INFO][PID:660736] Checking for cancel request [2026-09-15 18:31:17,648][ INFO][PID:660736] Checking for cancel request [2026-09-15 18:31:22,649][ INFO][PID:660736] Checking for cancel request [2026-09-15 18:31:27,649][ INFO][PID:660736] Checking for cancel request [2026-09-15 18:31:32,650][ INFO][PID:660736] Checking for cancel request [2026-09-15 18:31:37,651][ INFO][PID:660736] Checking for cancel request [2026-09-15 18:31:42,652][ INFO][PID:660736] Checking for cancel request [2026-09-15 18:31:47,653][ INFO][PID:660736] Checking for cancel request [2026-09-15 18:31:52,653][ INFO][PID:660736] Checking for cancel request [2026-09-15 18:31:57,654][ INFO][PID:660736] Checking for cancel request [2026-09-15 18:32:02,655][ INFO][PID:660736] Checking for cancel request [2026-09-15 18:32:07,656][ INFO][PID:660736] Checking for cancel request [2026-09-15 18:32:12,657][ INFO][PID:660736] Checking for cancel request [2026-09-15 18:32:17,657][ INFO][PID:660736] Checking for cancel request [2026-09-15 18:32:22,658][ INFO][PID:660736] Checking for cancel request [2026-09-15 18:32:27,659][ INFO][PID:660736] Checking for cancel request [2026-09-15 18:32:32,660][ INFO][PID:660736] Checking for cancel request [2026-09-15 18:32:37,660][ INFO][PID:660736] Checking for cancel request [2026-09-15 18:32:42,661][ INFO][PID:660736] Checking for cancel request [2026-09-15 18:32:47,662][ INFO][PID:660736] Checking for cancel request [2026-09-15 18:32:52,663][ INFO][PID:660736] Checking for cancel request [2026-09-15 18:32:57,664][ INFO][PID:660736] Checking for cancel request [2026-09-15 18:33:02,664][ INFO][PID:660736] Checking for cancel request [2026-09-15 18:33:07,665][ INFO][PID:660736] Checking for cancel request [2026-09-15 18:33:12,666][ INFO][PID:660736] Checking for cancel request [2026-09-15 18:33:17,667][ INFO][PID:660736] Checking for cancel request [2026-09-15 18:33:22,668][ INFO][PID:660736] Checking for cancel request [2026-09-15 18:33:27,672][ INFO][PID:660736] Checking for cancel request [2026-09-15 18:33:32,673][ INFO][PID:660736] Checking for cancel request [2026-09-15 18:33:37,673][ INFO][PID:660736] Checking for cancel request [2026-09-15 18:33:42,674][ INFO][PID:660736] Checking for cancel request [2026-09-15 18:33:47,675][ INFO][PID:660736] Checking for cancel request [2026-09-15 18:33:52,676][ INFO][PID:660736] Checking for cancel request [2026-09-15 18:33:57,677][ INFO][PID:660736] Checking for cancel request [2026-09-15 18:34:02,678][ INFO][PID:660736] Checking for cancel request [2026-09-15 18:34:07,678][ INFO][PID:660736] Checking for cancel request [2026-09-15 18:34:12,679][ INFO][PID:660736] Checking for cancel request [2026-09-15 18:34:17,680][ INFO][PID:660736] Checking for cancel request [2026-09-15 18:34:22,681][ INFO][PID:660736] Checking for cancel request [2026-09-15 18:34:27,681][ INFO][PID:660736] Checking for cancel request [2026-09-15 18:34:32,682][ INFO][PID:660736] Checking for cancel request [2026-09-15 18:34:37,683][ INFO][PID:660736] Checking for cancel request [2026-09-15 18:34:42,684][ INFO][PID:660736] Checking for cancel request [2026-09-15 18:34:47,685][ INFO][PID:660736] Checking for cancel request [2026-09-15 18:34:52,686][ INFO][PID:660736] Checking for cancel request [2026-09-15 18:34:57,687][ INFO][PID:660736] Checking for cancel request [2026-09-15 18:35:02,687][ INFO][PID:660736] Checking for cancel request [2026-09-15 18:35:07,688][ INFO][PID:660736] Checking for cancel request [2026-09-15 18:35:12,689][ INFO][PID:660736] Checking for cancel request [2026-09-15 18:35:17,690][ INFO][PID:660736] Checking for cancel request [2026-09-15 18:35:22,690][ INFO][PID:660736] Checking for cancel request [2026-09-15 18:35:27,691][ INFO][PID:660736] Checking for cancel request [2026-09-15 18:35:32,692][ INFO][PID:660736] Checking for cancel request [2026-09-15 18:35:37,693][ INFO][PID:660736] Checking for cancel request [2026-09-15 18:35:42,693][ INFO][PID:660736] Checking for cancel request [2026-09-15 18:35:47,694][ INFO][PID:660736] Checking for cancel request [2026-09-15 18:35:52,695][ INFO][PID:660736] Checking for cancel request [2026-09-15 18:35:57,696][ INFO][PID:660736] Checking for cancel request [2026-09-15 18:36:02,696][ INFO][PID:660736] Checking for cancel request [2026-09-15 18:36:08,468][ INFO][PID:660736] Checking for cancel request [2026-09-15 18:36:13,469][ INFO][PID:660736] Checking for cancel request [2026-09-15 18:36:18,470][ INFO][PID:660736] Checking for cancel request [2026-09-15 18:36:23,470][ INFO][PID:660736] Checking for cancel request [2026-09-15 18:36:28,471][ INFO][PID:660736] Checking for cancel request [2026-09-15 18:36:33,472][ INFO][PID:660736] Checking for cancel request [2026-09-15 18:36:38,473][ INFO][PID:660736] Checking for cancel request [2026-09-15 18:36:43,474][ INFO][PID:660736] Checking for cancel request [2026-09-15 18:36:48,475][ INFO][PID:660736] Checking for cancel request [2026-09-15 18:36:53,475][ INFO][PID:660736] Checking for cancel request [2026-09-15 18:36:58,476][ INFO][PID:660736] Checking for cancel request [2026-09-15 18:37:03,477][ INFO][PID:660736] Checking for cancel request [2026-09-15 18:37:08,478][ INFO][PID:660736] Checking for cancel request [2026-09-15 18:37:13,479][ INFO][PID:660736] Checking for cancel request [2026-09-15 18:37:18,480][ INFO][PID:660736] Checking for cancel request [2026-09-15 18:37:23,481][ INFO][PID:660736] Checking for cancel request [2026-09-15 18:37:28,481][ INFO][PID:660736] Checking for cancel request [2026-09-15 18:37:33,482][ INFO][PID:660736] Checking for cancel request [2026-09-15 18:37:38,483][ INFO][PID:660736] Checking for cancel request [2026-09-15 18:37:43,484][ INFO][PID:660736] Checking for cancel request [2026-09-15 18:37:48,485][ INFO][PID:660736] Checking for cancel request [2026-09-15 18:37:53,486][ INFO][PID:660736] Checking for cancel request [2026-09-15 18:37:58,486][ INFO][PID:660736] Checking for cancel request [2026-09-15 18:38:03,487][ INFO][PID:660736] Checking for cancel request [2026-09-15 18:38:08,488][ INFO][PID:660736] Checking for cancel request [2026-09-15 18:38:13,489][ INFO][PID:660736] Checking for cancel request [2026-09-15 18:38:18,490][ INFO][PID:660736] Checking for cancel request [2026-09-15 18:38:23,490][ INFO][PID:660736] Checking for cancel request [2026-09-15 18:38:28,491][ INFO][PID:660736] Checking for cancel request [2026-09-15 18:38:33,492][ INFO][PID:660736] Checking for cancel request [2026-09-15 18:38:38,493][ INFO][PID:660736] Checking for cancel request [2026-09-15 18:38:43,494][ INFO][PID:660736] Checking for cancel request [2026-09-15 18:38:48,500][ INFO][PID:660736] Periodic builder liveness probe: alive [2026-09-15 18:38:48,501][ INFO][PID:660736] Checking for cancel request [2026-09-15 18:38:53,501][ INFO][PID:660736] Checking for cancel request [2026-09-15 18:38:56,702][ INFO][PID:660736] Downloading results from builder [2026-09-15 18:38:56,703][ INFO][PID:660736] rsyncing of mockbuilder@[2620:52:6:1161:dead:beef:cafe:c14b]:/var/lib/copr-rpmbuild/results/ to /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5730/srpm-builds/10988972 started [2026-09-15 18:38:56,703][ INFO][PID:660736] Popen command started: /usr/bin/rsync -rltDvH --chmod=D755,F644 -e 'ssh -F /home/copr/.ssh/config' mockbuilder@[2620:52:6:1161:dead:beef:cafe:c14b]:/var/lib/copr-rpmbuild/results/ /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5730/srpm-builds/10988972/ &> /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5730/srpm-builds/10988972/build-10988972.rsync.log [2026-09-15 18:39:04,035][ INFO][PID:660736] rsyncing finished. [2026-09-15 18:39:04,036][ INFO][PID:660736] VM Release request [2026-09-15 18:39:04,042][ INFO][PID:660736] Searching for 'success' file in resultdir [2026-09-15 18:39:04,043][ INFO][PID:660736] Getting build details [2026-09-15 18:39:04,043][ INFO][PID:660736] Retrieving SRPM info from /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5730/srpm-builds/10988972 [2026-09-15 18:39:04,043][ INFO][PID:660736] SRPM URL: https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5730/srpm-builds/10988972/Sunshine-0.0.5730-1.src.rpm [2026-09-15 18:39:04,043][ INFO][PID:660736] build details: {'srpm_url': 'https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5730/srpm-builds/10988972/Sunshine-0.0.5730-1.src.rpm', 'pkg_name': 'Sunshine', 'pkg_version': '0.0.5730-1'} [2026-09-15 18:39:04,044][ INFO][PID:660736] Finished build: id=10988972 failed=False timeout=108000 destdir=/var/lib/copr/public_html/results/lizardbyte/pulls:pr:5730 chroot=srpm-builds [2026-09-15 18:39:04,044][ INFO][PID:660736] Worker succeeded build, took 622.3987469673157 [2026-09-15 18:39:04,044][ INFO][PID:660736] 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:5730", "submitter": null, "ended_on": 1789497544.0444374, "started_on": 1789496921.6456904, "submitted_on": null, "status": 1, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10988972", "build_id": 10988972, "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\": \"tmpu2yhsure\", \"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:5730/srpm-builds/10988972/Sunshine-0.0.5730-1.src.rpm", "uses_devel_repo": null, "sandbox": "lizardbyte/pulls--20ea2da0-7fd1-4f12-bc92-25626d0dbbaa", "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.5730", "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:5730", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5730", "result_dir": "10988972", "built_packages": "", "tags": [ "arch_x86_64" ], "rpmeta_prediction": null, "pkg_version": "0.0.5730-1", "id": 10988972, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2026-09-15 18:39:04,095][ INFO][PID:660736] Sending fedora-messaging bus message in build.end [2026-09-15 18:39:04,116][ INFO][PID:660736] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5730/srpm-builds/10988972/builder-live.log by gzip [2026-09-15 18:39:04,117][ INFO][PID:660736] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5730/srpm-builds/10988972/builder-live.log' as PID 736101 [2026-09-15 18:39:04,137][ INFO][PID:660736] Finished after 0 seconds with exit code 0 (gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5730/srpm-builds/10988972/builder-live.log) [2026-09-15 18:39:04,137][ INFO][PID:660736] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5730/srpm-builds/10988972/backend.log by gzip [2026-09-15 18:39:04,138][ INFO][PID:660736] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5730/srpm-builds/10988972/backend.log' as PID 736108