[2026-09-14 18:42:31,767][ INFO][PID:1112116] Marking build as starting [2026-09-14 18:42:31,793][ INFO][PID:1112116] Checking for cancel request [2026-09-14 18:42:31,794][ INFO][PID:1112116] VM allocation process starts [2026-09-14 18:42:31,799][ INFO][PID:1112116] Trying to allocate VM: ResallocHost, ticket_id=5021009, requested_tags=['arch_x86_64', 'copr_builder'] [2026-09-14 18:42:36,800][ INFO][PID:1112116] Checking for cancel request [2026-09-14 18:42:41,800][ INFO][PID:1112116] Checking for cancel request [2026-09-14 18:42:43,814][ INFO][PID:1112116] Allocated host ResallocHost, ticket_id=5021009, hostname=35.173.245.93, name=aws_x86_64_reserved_prod_37373614_20260914_183311, requested_tags=['arch_x86_64', 'copr_builder'] [2026-09-14 18:42:43,815][ INFO][PID:1112116] Allocating ssh connection to builder [2026-09-14 18:42:43,815][ INFO][PID:1112116] Checking that builder machine is OK [2026-09-14 18:42:44,114][ INFO][PID:1112116] Installed copr-rpmbuild version: 1.9 [2026-09-14 18:42:44,115][ INFO][PID:1112116] Running remote command: copr-builder-ready srpm-builds [2026-09-14 18:42:44,299][ INFO][PID:1112116] Red Hat subscription not needed for srpm-builds Builder is ready to be used [2026-09-14 18:42:44,300][ INFO][PID:1112116] Filling build.info file with builder info [2026-09-14 18:42:44,300][ INFO][PID:1112116] Checking for cancel request [2026-09-14 18:42:44,300][ INFO][PID:1112116] 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:5720", "submitter": null, "ended_on": null, "started_on": 1789411364.3008962, "submitted_on": null, "status": 3, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10985449", "build_id": 10985449, "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\": \"tmp2hbj4baz\", \"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--e234f7d8-2a72-47b6-b348-409e10bb2895", "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:5720", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5720", "result_dir": "10985449", "built_packages": "", "tags": [ "arch_x86_64" ], "rpmeta_prediction": null, "id": 10985449, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2026-09-14 18:42:44,325][ INFO][PID:1112116] Sending fedora-messaging bus message in build.start [2026-09-14 18:42:44,963][ INFO][PID:1112116] Sending fedora-messaging bus message in chroot.start [2026-09-14 18:42:44,986][ INFO][PID:1112116] Starting remote build: copr-rpmbuild --verbose --drop-resultdir --srpm --task-url https://copr.fedorainfracloud.org/backend/get-srpm-build-task/10985449 --detached [2026-09-14 18:42:45,568][ INFO][PID:1112116] The copr-rpmbuild seems started, per: stdout: stderr: Warning: Permanently added '35.173.245.93' (ED25519) to the list of known hosts. [2026-09-14 18:42:45,568][ INFO][PID:1112116] Downloading the builder-live.log file, attempt 1 [2026-09-14 18:42:45,570][ INFO][PID:1112116] Popen command started: ssh -F /home/copr/.ssh/config mockbuilder@35.173.245.93 copr-rpmbuild-log [2026-09-14 18:42:50,574][ INFO][PID:1112116] Periodic builder liveness probe: alive [2026-09-14 18:42:50,574][ INFO][PID:1112116] Checking for cancel request [2026-09-14 18:42:55,575][ INFO][PID:1112116] Checking for cancel request [2026-09-14 18:43:00,576][ INFO][PID:1112116] Checking for cancel request [2026-09-14 18:43:05,576][ INFO][PID:1112116] Checking for cancel request [2026-09-14 18:43:10,577][ INFO][PID:1112116] Checking for cancel request [2026-09-14 18:43:15,578][ INFO][PID:1112116] Checking for cancel request [2026-09-14 18:43:20,579][ INFO][PID:1112116] Checking for cancel request [2026-09-14 18:43:25,580][ INFO][PID:1112116] Checking for cancel request [2026-09-14 18:43:30,581][ INFO][PID:1112116] Checking for cancel request [2026-09-14 18:43:35,582][ INFO][PID:1112116] Checking for cancel request [2026-09-14 18:43:40,583][ INFO][PID:1112116] Checking for cancel request [2026-09-14 18:43:45,583][ INFO][PID:1112116] Checking for cancel request [2026-09-14 18:43:50,584][ INFO][PID:1112116] Checking for cancel request [2026-09-14 18:43:55,585][ INFO][PID:1112116] Checking for cancel request [2026-09-14 18:44:00,586][ INFO][PID:1112116] Checking for cancel request [2026-09-14 18:44:05,588][ INFO][PID:1112116] Checking for cancel request [2026-09-14 18:44:10,589][ INFO][PID:1112116] Checking for cancel request [2026-09-14 18:44:15,589][ INFO][PID:1112116] Checking for cancel request [2026-09-14 18:44:20,590][ INFO][PID:1112116] Checking for cancel request [2026-09-14 18:44:25,591][ INFO][PID:1112116] Checking for cancel request [2026-09-14 18:44:30,592][ INFO][PID:1112116] Checking for cancel request [2026-09-14 18:44:35,593][ INFO][PID:1112116] Checking for cancel request [2026-09-14 18:44:40,594][ INFO][PID:1112116] Checking for cancel request [2026-09-14 18:44:45,595][ INFO][PID:1112116] Checking for cancel request [2026-09-14 18:44:50,595][ INFO][PID:1112116] Checking for cancel request [2026-09-14 18:44:55,633][ INFO][PID:1112116] Checking for cancel request [2026-09-14 18:45:00,854][ INFO][PID:1112116] Checking for cancel request [2026-09-14 18:45:05,855][ INFO][PID:1112116] Checking for cancel request [2026-09-14 18:45:10,856][ INFO][PID:1112116] Checking for cancel request [2026-09-14 18:45:15,857][ INFO][PID:1112116] Checking for cancel request [2026-09-14 18:45:20,858][ INFO][PID:1112116] Checking for cancel request [2026-09-14 18:45:25,949][ INFO][PID:1112116] Checking for cancel request [2026-09-14 18:45:30,950][ INFO][PID:1112116] Checking for cancel request [2026-09-14 18:45:35,950][ INFO][PID:1112116] Checking for cancel request [2026-09-14 18:45:41,014][ INFO][PID:1112116] Checking for cancel request [2026-09-14 18:45:46,190][ INFO][PID:1112116] Checking for cancel request [2026-09-14 18:45:51,471][ INFO][PID:1112116] Checking for cancel request [2026-09-14 18:45:56,472][ INFO][PID:1112116] Checking for cancel request [2026-09-14 18:46:01,473][ INFO][PID:1112116] Checking for cancel request [2026-09-14 18:46:06,474][ INFO][PID:1112116] Checking for cancel request [2026-09-14 18:46:11,474][ INFO][PID:1112116] Checking for cancel request [2026-09-14 18:46:16,475][ INFO][PID:1112116] Checking for cancel request [2026-09-14 18:46:21,476][ INFO][PID:1112116] Checking for cancel request [2026-09-14 18:46:26,478][ INFO][PID:1112116] Checking for cancel request [2026-09-14 18:46:31,718][ INFO][PID:1112116] Checking for cancel request [2026-09-14 18:46:36,719][ INFO][PID:1112116] Checking for cancel request [2026-09-14 18:46:41,720][ INFO][PID:1112116] Checking for cancel request [2026-09-14 18:46:46,721][ INFO][PID:1112116] Checking for cancel request [2026-09-14 18:46:51,722][ INFO][PID:1112116] Checking for cancel request [2026-09-14 18:46:56,723][ INFO][PID:1112116] Checking for cancel request [2026-09-14 18:47:01,724][ INFO][PID:1112116] Checking for cancel request [2026-09-14 18:47:06,900][ INFO][PID:1112116] Checking for cancel request [2026-09-14 18:47:11,901][ INFO][PID:1112116] Checking for cancel request [2026-09-14 18:47:16,901][ INFO][PID:1112116] Checking for cancel request [2026-09-14 18:47:21,902][ INFO][PID:1112116] Checking for cancel request [2026-09-14 18:47:26,903][ INFO][PID:1112116] Checking for cancel request [2026-09-14 18:47:31,904][ INFO][PID:1112116] Checking for cancel request [2026-09-14 18:47:36,905][ INFO][PID:1112116] Checking for cancel request [2026-09-14 18:47:41,906][ INFO][PID:1112116] Checking for cancel request [2026-09-14 18:47:46,907][ INFO][PID:1112116] Checking for cancel request [2026-09-14 18:47:52,790][ INFO][PID:1112116] Checking for cancel request [2026-09-14 18:47:57,791][ INFO][PID:1112116] Checking for cancel request [2026-09-14 18:48:02,792][ INFO][PID:1112116] Checking for cancel request [2026-09-14 18:48:07,793][ INFO][PID:1112116] Checking for cancel request [2026-09-14 18:48:12,794][ INFO][PID:1112116] Checking for cancel request [2026-09-14 18:48:17,795][ INFO][PID:1112116] Checking for cancel request [2026-09-14 18:48:22,924][ INFO][PID:1112116] Checking for cancel request [2026-09-14 18:48:27,926][ INFO][PID:1112116] Checking for cancel request [2026-09-14 18:48:32,927][ INFO][PID:1112116] Checking for cancel request [2026-09-14 18:48:37,928][ INFO][PID:1112116] Checking for cancel request [2026-09-14 18:48:42,929][ INFO][PID:1112116] Checking for cancel request [2026-09-14 18:48:47,930][ INFO][PID:1112116] Checking for cancel request [2026-09-14 18:48:52,931][ INFO][PID:1112116] Checking for cancel request [2026-09-14 18:48:57,932][ INFO][PID:1112116] Checking for cancel request [2026-09-14 18:49:02,933][ INFO][PID:1112116] Checking for cancel request [2026-09-14 18:49:07,934][ INFO][PID:1112116] Checking for cancel request [2026-09-14 18:49:12,935][ INFO][PID:1112116] Checking for cancel request [2026-09-14 18:49:17,936][ INFO][PID:1112116] Checking for cancel request [2026-09-14 18:49:22,944][ INFO][PID:1112116] Checking for cancel request [2026-09-14 18:49:27,945][ INFO][PID:1112116] Checking for cancel request [2026-09-14 18:49:32,946][ INFO][PID:1112116] Checking for cancel request [2026-09-14 18:49:37,947][ INFO][PID:1112116] Checking for cancel request [2026-09-14 18:49:42,948][ INFO][PID:1112116] Checking for cancel request [2026-09-14 18:49:47,950][ INFO][PID:1112116] Checking for cancel request [2026-09-14 18:49:52,951][ INFO][PID:1112116] Checking for cancel request [2026-09-14 18:49:57,953][ INFO][PID:1112116] Checking for cancel request [2026-09-14 18:50:02,954][ INFO][PID:1112116] Checking for cancel request [2026-09-14 18:50:07,955][ INFO][PID:1112116] Checking for cancel request [2026-09-14 18:50:12,956][ INFO][PID:1112116] Checking for cancel request [2026-09-14 18:50:17,957][ INFO][PID:1112116] Checking for cancel request [2026-09-14 18:50:22,958][ INFO][PID:1112116] Checking for cancel request [2026-09-14 18:50:27,959][ INFO][PID:1112116] Checking for cancel request [2026-09-14 18:50:32,960][ INFO][PID:1112116] Checking for cancel request [2026-09-14 18:50:38,357][ INFO][PID:1112116] Checking for cancel request [2026-09-14 18:50:43,359][ INFO][PID:1112116] Checking for cancel request [2026-09-14 18:50:48,360][ INFO][PID:1112116] Checking for cancel request [2026-09-14 18:50:53,361][ INFO][PID:1112116] Checking for cancel request [2026-09-14 18:50:58,362][ INFO][PID:1112116] Checking for cancel request [2026-09-14 18:51:03,363][ INFO][PID:1112116] Checking for cancel request [2026-09-14 18:51:08,364][ INFO][PID:1112116] Checking for cancel request [2026-09-14 18:51:13,365][ INFO][PID:1112116] Checking for cancel request [2026-09-14 18:51:18,366][ INFO][PID:1112116] Checking for cancel request [2026-09-14 18:51:23,367][ INFO][PID:1112116] Checking for cancel request [2026-09-14 18:51:28,368][ INFO][PID:1112116] Checking for cancel request [2026-09-14 18:51:33,369][ INFO][PID:1112116] Checking for cancel request [2026-09-14 18:51:38,370][ INFO][PID:1112116] Checking for cancel request [2026-09-14 18:51:43,371][ INFO][PID:1112116] Checking for cancel request [2026-09-14 18:51:48,372][ INFO][PID:1112116] Checking for cancel request [2026-09-14 18:51:53,373][ INFO][PID:1112116] Checking for cancel request [2026-09-14 18:51:58,374][ INFO][PID:1112116] Checking for cancel request [2026-09-14 18:52:03,376][ INFO][PID:1112116] Checking for cancel request [2026-09-14 18:52:08,377][ INFO][PID:1112116] Checking for cancel request [2026-09-14 18:52:13,380][ INFO][PID:1112116] Checking for cancel request [2026-09-14 18:52:18,380][ INFO][PID:1112116] Checking for cancel request [2026-09-14 18:52:23,381][ INFO][PID:1112116] Checking for cancel request [2026-09-14 18:52:28,383][ INFO][PID:1112116] Checking for cancel request [2026-09-14 18:52:33,384][ INFO][PID:1112116] Checking for cancel request [2026-09-14 18:52:38,387][ INFO][PID:1112116] Checking for cancel request [2026-09-14 18:52:43,388][ INFO][PID:1112116] Checking for cancel request [2026-09-14 18:52:48,388][ INFO][PID:1112116] Checking for cancel request [2026-09-14 18:52:53,394][ INFO][PID:1112116] Periodic builder liveness probe: alive [2026-09-14 18:52:53,395][ INFO][PID:1112116] Checking for cancel request [2026-09-14 18:52:58,395][ INFO][PID:1112116] Checking for cancel request [2026-09-14 18:53:03,396][ INFO][PID:1112116] Checking for cancel request [2026-09-14 18:53:03,421][ INFO][PID:1112116] Downloading results from builder [2026-09-14 18:53:03,421][ INFO][PID:1112116] rsyncing of mockbuilder@35.173.245.93:/var/lib/copr-rpmbuild/results/ to /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5720/srpm-builds/10985449 started [2026-09-14 18:53:03,422][ INFO][PID:1112116] Popen command started: /usr/bin/rsync -rltDvH --chmod=D755,F644 -e 'ssh -F /home/copr/.ssh/config' mockbuilder@35.173.245.93:/var/lib/copr-rpmbuild/results/ /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5720/srpm-builds/10985449/ &> /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5720/srpm-builds/10985449/build-10985449.rsync.log [2026-09-14 18:53:05,556][ INFO][PID:1112116] rsyncing finished. [2026-09-14 18:53:05,557][ INFO][PID:1112116] VM Release request [2026-09-14 18:53:05,561][ INFO][PID:1112116] Searching for 'success' file in resultdir [2026-09-14 18:53:05,562][ INFO][PID:1112116] Getting build details [2026-09-14 18:53:05,562][ INFO][PID:1112116] Retrieving SRPM info from /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5720/srpm-builds/10985449 [2026-09-14 18:53:05,562][ INFO][PID:1112116] SRPM URL: https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5720/srpm-builds/10985449/Sunshine-0.0.5720-1.src.rpm [2026-09-14 18:53:05,563][ INFO][PID:1112116] build details: {'srpm_url': 'https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5720/srpm-builds/10985449/Sunshine-0.0.5720-1.src.rpm', 'pkg_name': 'Sunshine', 'pkg_version': '0.0.5720-1'} [2026-09-14 18:53:05,563][ INFO][PID:1112116] Finished build: id=10985449 failed=False timeout=108000 destdir=/var/lib/copr/public_html/results/lizardbyte/pulls:pr:5720 chroot=srpm-builds [2026-09-14 18:53:05,564][ INFO][PID:1112116] Worker succeeded build, took 621.2632467746735 [2026-09-14 18:53:05,564][ INFO][PID:1112116] 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:5720", "submitter": null, "ended_on": 1789411985.564143, "started_on": 1789411364.3008962, "submitted_on": null, "status": 1, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10985449", "build_id": 10985449, "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\": \"tmp2hbj4baz\", \"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:5720/srpm-builds/10985449/Sunshine-0.0.5720-1.src.rpm", "uses_devel_repo": null, "sandbox": "lizardbyte/pulls--e234f7d8-2a72-47b6-b348-409e10bb2895", "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.5720", "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:5720", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5720", "result_dir": "10985449", "built_packages": "", "tags": [ "arch_x86_64" ], "rpmeta_prediction": null, "pkg_version": "0.0.5720-1", "id": 10985449, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2026-09-14 18:53:05,611][ INFO][PID:1112116] Sending fedora-messaging bus message in build.end [2026-09-14 18:53:05,630][ INFO][PID:1112116] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5720/srpm-builds/10985449/builder-live.log by gzip [2026-09-14 18:53:05,631][ INFO][PID:1112116] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5720/srpm-builds/10985449/builder-live.log' as PID 1192759 [2026-09-14 18:53:05,636][ INFO][PID:1112116] Finished after 0 seconds with exit code 0 (gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5720/srpm-builds/10985449/builder-live.log) [2026-09-14 18:53:05,636][ INFO][PID:1112116] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5720/srpm-builds/10985449/backend.log by gzip [2026-09-14 18:53:05,637][ INFO][PID:1112116] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5720/srpm-builds/10985449/backend.log' as PID 1192760