[2026-07-15 21:31:22,516][ INFO][PID:1879692] Marking build as starting [2026-07-15 21:31:22,577][ INFO][PID:1879692] Checking for cancel request [2026-07-15 21:31:22,580][ INFO][PID:1879692] VM allocation process starts [2026-07-15 21:31:23,052][ INFO][PID:1879692] Trying to allocate VM: ResallocHost, ticket_id=3919740, requested_tags=['arch_x86_64', 'copr_builder'] [2026-07-15 21:31:28,057][ INFO][PID:1879692] Checking for cancel request [2026-07-15 21:31:29,093][ INFO][PID:1879692] Allocated host ResallocHost, ticket_id=3919740, hostname=2620:52:6:1161:dead:beef:cafe:c14c, name=vmhost_x86_01_prod_13105112_20260715_212948, requested_tags=['arch_x86_64', 'copr_builder'] [2026-07-15 21:31:29,095][ INFO][PID:1879692] Allocating ssh connection to builder [2026-07-15 21:31:29,096][ INFO][PID:1879692] Checking that builder machine is OK [2026-07-15 21:31:29,652][ INFO][PID:1879692] Installed copr-rpmbuild version: 1.8 [2026-07-15 21:31:29,654][ INFO][PID:1879692] Running remote command: copr-builder-ready srpm-builds [2026-07-15 21:31:30,009][ INFO][PID:1879692] Red Hat subscription not needed for srpm-builds Builder is ready to be used [2026-07-15 21:31:30,015][ INFO][PID:1879692] Filling build.info file with builder info [2026-07-15 21:31:30,016][ INFO][PID:1879692] Checking for cancel request [2026-07-15 21:31:30,022][ INFO][PID:1879692] 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:5368", "submitter": null, "ended_on": null, "started_on": 1784151090.0223827, "submitted_on": null, "status": 3, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10722835", "build_id": 10722835, "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\": \"tmp3jniostv\", \"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--a91b5a4a-b4f8-4154-8bbf-02472bfcace7", "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:5368", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5368", "result_dir": "10722835", "built_packages": "", "tags": [ "arch_x86_64" ], "rpmeta_prediction": null, "id": 10722835, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2026-07-15 21:31:30,125][ INFO][PID:1879692] Sending fedora-messaging bus message in build.start [2026-07-15 21:31:30,868][ INFO][PID:1879692] Sending fedora-messaging bus message in chroot.start [2026-07-15 21:31:30,896][ INFO][PID:1879692] Starting remote build: copr-rpmbuild --verbose --drop-resultdir --srpm --task-url https://copr.fedorainfracloud.org/backend/get-srpm-build-task/10722835 --detached [2026-07-15 21:31:31,487][ INFO][PID:1879692] The copr-rpmbuild seems started, per: stdout: stderr: Warning: Permanently added '2620:52:6:1161:dead:beef:cafe:c14c' (ED25519) to the list of known hosts. [2026-07-15 21:31:31,488][ INFO][PID:1879692] Downloading the builder-live.log file, attempt 1 [2026-07-15 21:31:31,511][ INFO][PID:1879692] Popen command started: ssh -F /home/copr/.ssh/config mockbuilder@2620:52:6:1161:dead:beef:cafe:c14c copr-rpmbuild-log [2026-07-15 21:31:36,546][ INFO][PID:1879692] Periodic builder liveness probe: alive [2026-07-15 21:31:36,548][ INFO][PID:1879692] Checking for cancel request [2026-07-15 21:31:41,559][ INFO][PID:1879692] Checking for cancel request [2026-07-15 21:31:46,585][ INFO][PID:1879692] Checking for cancel request [2026-07-15 21:31:51,586][ INFO][PID:1879692] Checking for cancel request [2026-07-15 21:31:56,588][ INFO][PID:1879692] Checking for cancel request [2026-07-15 21:32:01,590][ INFO][PID:1879692] Checking for cancel request [2026-07-15 21:32:06,602][ INFO][PID:1879692] Checking for cancel request [2026-07-15 21:32:11,610][ INFO][PID:1879692] Checking for cancel request [2026-07-15 21:32:16,629][ INFO][PID:1879692] Checking for cancel request [2026-07-15 21:32:21,642][ INFO][PID:1879692] Checking for cancel request [2026-07-15 21:32:26,650][ INFO][PID:1879692] Checking for cancel request [2026-07-15 21:32:31,651][ INFO][PID:1879692] Checking for cancel request [2026-07-15 21:32:36,653][ INFO][PID:1879692] Checking for cancel request [2026-07-15 21:32:41,654][ INFO][PID:1879692] Checking for cancel request [2026-07-15 21:32:46,657][ INFO][PID:1879692] Checking for cancel request [2026-07-15 21:32:51,659][ INFO][PID:1879692] Checking for cancel request [2026-07-15 21:32:56,665][ INFO][PID:1879692] Checking for cancel request [2026-07-15 21:33:01,670][ INFO][PID:1879692] Checking for cancel request [2026-07-15 21:33:06,673][ INFO][PID:1879692] Checking for cancel request [2026-07-15 21:33:11,675][ INFO][PID:1879692] Checking for cancel request [2026-07-15 21:33:16,677][ INFO][PID:1879692] Checking for cancel request [2026-07-15 21:33:21,680][ INFO][PID:1879692] Checking for cancel request [2026-07-15 21:33:26,682][ INFO][PID:1879692] Checking for cancel request [2026-07-15 21:33:31,685][ INFO][PID:1879692] Checking for cancel request [2026-07-15 21:33:36,687][ INFO][PID:1879692] Checking for cancel request [2026-07-15 21:33:41,688][ INFO][PID:1879692] Checking for cancel request [2026-07-15 21:33:46,703][ INFO][PID:1879692] Checking for cancel request [2026-07-15 21:33:51,705][ INFO][PID:1879692] Checking for cancel request [2026-07-15 21:33:56,706][ INFO][PID:1879692] Checking for cancel request [2026-07-15 21:34:01,708][ INFO][PID:1879692] Checking for cancel request [2026-07-15 21:34:06,709][ INFO][PID:1879692] Checking for cancel request [2026-07-15 21:34:11,714][ INFO][PID:1879692] Checking for cancel request [2026-07-15 21:34:16,722][ INFO][PID:1879692] Checking for cancel request [2026-07-15 21:34:21,724][ INFO][PID:1879692] Checking for cancel request [2026-07-15 21:34:26,726][ INFO][PID:1879692] Checking for cancel request [2026-07-15 21:34:31,727][ INFO][PID:1879692] Checking for cancel request [2026-07-15 21:34:36,729][ INFO][PID:1879692] Checking for cancel request [2026-07-15 21:34:41,736][ INFO][PID:1879692] Checking for cancel request [2026-07-15 21:34:46,738][ INFO][PID:1879692] Checking for cancel request [2026-07-15 21:34:51,740][ INFO][PID:1879692] Checking for cancel request [2026-07-15 21:34:56,741][ INFO][PID:1879692] Checking for cancel request [2026-07-15 21:35:01,743][ INFO][PID:1879692] Checking for cancel request [2026-07-15 21:35:06,749][ INFO][PID:1879692] Checking for cancel request [2026-07-15 21:35:11,751][ INFO][PID:1879692] Checking for cancel request [2026-07-15 21:35:16,758][ INFO][PID:1879692] Checking for cancel request [2026-07-15 21:35:21,787][ INFO][PID:1879692] Checking for cancel request [2026-07-15 21:35:26,791][ INFO][PID:1879692] Checking for cancel request [2026-07-15 21:35:31,799][ INFO][PID:1879692] Checking for cancel request [2026-07-15 21:35:36,820][ INFO][PID:1879692] Checking for cancel request [2026-07-15 21:35:41,833][ INFO][PID:1879692] Checking for cancel request [2026-07-15 21:35:46,899][ INFO][PID:1879692] Checking for cancel request [2026-07-15 21:35:51,901][ INFO][PID:1879692] Checking for cancel request [2026-07-15 21:35:56,908][ INFO][PID:1879692] Checking for cancel request [2026-07-15 21:36:01,910][ INFO][PID:1879692] Checking for cancel request [2026-07-15 21:36:06,913][ INFO][PID:1879692] Checking for cancel request [2026-07-15 21:36:11,916][ INFO][PID:1879692] Checking for cancel request [2026-07-15 21:36:16,918][ INFO][PID:1879692] Checking for cancel request [2026-07-15 21:36:21,920][ INFO][PID:1879692] Checking for cancel request [2026-07-15 21:36:26,921][ INFO][PID:1879692] Checking for cancel request [2026-07-15 21:36:31,922][ INFO][PID:1879692] Checking for cancel request [2026-07-15 21:36:36,953][ INFO][PID:1879692] Checking for cancel request [2026-07-15 21:36:41,955][ INFO][PID:1879692] Checking for cancel request [2026-07-15 21:36:46,957][ INFO][PID:1879692] Checking for cancel request [2026-07-15 21:36:51,959][ INFO][PID:1879692] Checking for cancel request [2026-07-15 21:36:56,968][ INFO][PID:1879692] Checking for cancel request [2026-07-15 21:37:01,969][ INFO][PID:1879692] Checking for cancel request [2026-07-15 21:37:06,971][ INFO][PID:1879692] Checking for cancel request [2026-07-15 21:37:11,972][ INFO][PID:1879692] Checking for cancel request [2026-07-15 21:37:16,974][ INFO][PID:1879692] Checking for cancel request [2026-07-15 21:37:21,975][ INFO][PID:1879692] Checking for cancel request [2026-07-15 21:37:27,165][ INFO][PID:1879692] Checking for cancel request [2026-07-15 21:37:32,167][ INFO][PID:1879692] Checking for cancel request [2026-07-15 21:37:37,172][ INFO][PID:1879692] Checking for cancel request [2026-07-15 21:37:42,173][ INFO][PID:1879692] Checking for cancel request [2026-07-15 21:37:47,175][ INFO][PID:1879692] Checking for cancel request [2026-07-15 21:37:52,176][ INFO][PID:1879692] Checking for cancel request [2026-07-15 21:37:57,178][ INFO][PID:1879692] Checking for cancel request [2026-07-15 21:38:02,179][ INFO][PID:1879692] Checking for cancel request [2026-07-15 21:38:07,195][ INFO][PID:1879692] Checking for cancel request [2026-07-15 21:38:12,197][ INFO][PID:1879692] Checking for cancel request [2026-07-15 21:38:17,217][ INFO][PID:1879692] Checking for cancel request [2026-07-15 21:38:22,258][ INFO][PID:1879692] Checking for cancel request [2026-07-15 21:38:27,297][ INFO][PID:1879692] Checking for cancel request [2026-07-15 21:38:32,299][ INFO][PID:1879692] Checking for cancel request [2026-07-15 21:38:37,301][ INFO][PID:1879692] Checking for cancel request [2026-07-15 21:38:42,309][ INFO][PID:1879692] Checking for cancel request [2026-07-15 21:38:47,310][ INFO][PID:1879692] Checking for cancel request [2026-07-15 21:38:52,312][ INFO][PID:1879692] Checking for cancel request [2026-07-15 21:38:57,334][ INFO][PID:1879692] Checking for cancel request [2026-07-15 21:39:02,343][ INFO][PID:1879692] Checking for cancel request [2026-07-15 21:39:07,345][ INFO][PID:1879692] Checking for cancel request [2026-07-15 21:39:12,347][ INFO][PID:1879692] Checking for cancel request [2026-07-15 21:39:17,349][ INFO][PID:1879692] Checking for cancel request [2026-07-15 21:39:22,352][ INFO][PID:1879692] Checking for cancel request [2026-07-15 21:39:27,357][ INFO][PID:1879692] Checking for cancel request [2026-07-15 21:39:32,358][ INFO][PID:1879692] Checking for cancel request [2026-07-15 21:39:37,367][ INFO][PID:1879692] Checking for cancel request [2026-07-15 21:39:42,372][ INFO][PID:1879692] Checking for cancel request [2026-07-15 21:39:47,375][ INFO][PID:1879692] Checking for cancel request [2026-07-15 21:39:52,382][ INFO][PID:1879692] Checking for cancel request [2026-07-15 21:39:57,399][ INFO][PID:1879692] Checking for cancel request [2026-07-15 21:40:02,409][ INFO][PID:1879692] Checking for cancel request [2026-07-15 21:40:07,415][ INFO][PID:1879692] Checking for cancel request [2026-07-15 21:40:12,416][ INFO][PID:1879692] Checking for cancel request [2026-07-15 21:40:17,419][ INFO][PID:1879692] Checking for cancel request [2026-07-15 21:40:22,447][ INFO][PID:1879692] Checking for cancel request [2026-07-15 21:40:27,450][ INFO][PID:1879692] Checking for cancel request [2026-07-15 21:40:32,452][ INFO][PID:1879692] Checking for cancel request [2026-07-15 21:40:37,455][ INFO][PID:1879692] Checking for cancel request [2026-07-15 21:40:42,458][ INFO][PID:1879692] Checking for cancel request [2026-07-15 21:40:47,460][ INFO][PID:1879692] Checking for cancel request [2026-07-15 21:40:52,472][ INFO][PID:1879692] Checking for cancel request [2026-07-15 21:40:57,474][ INFO][PID:1879692] Checking for cancel request [2026-07-15 21:41:02,489][ INFO][PID:1879692] Checking for cancel request [2026-07-15 21:41:07,491][ INFO][PID:1879692] Checking for cancel request [2026-07-15 21:41:12,493][ INFO][PID:1879692] Checking for cancel request [2026-07-15 21:41:17,500][ INFO][PID:1879692] Checking for cancel request [2026-07-15 21:41:22,510][ INFO][PID:1879692] Checking for cancel request [2026-07-15 21:41:27,514][ INFO][PID:1879692] Checking for cancel request [2026-07-15 21:41:32,516][ INFO][PID:1879692] Checking for cancel request [2026-07-15 21:41:37,834][ INFO][PID:1879692] Periodic builder liveness probe: alive [2026-07-15 21:41:37,880][ INFO][PID:1879692] Checking for cancel request [2026-07-15 21:41:42,884][ INFO][PID:1879692] Checking for cancel request [2026-07-15 21:41:46,885][ INFO][PID:1879692] Downloading results from builder [2026-07-15 21:41:46,928][ INFO][PID:1879692] rsyncing of mockbuilder@[2620:52:6:1161:dead:beef:cafe:c14c]:/var/lib/copr-rpmbuild/results/ to /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5368/srpm-builds/10722835 started [2026-07-15 21:41:47,011][ INFO][PID:1879692] 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:c14c]:/var/lib/copr-rpmbuild/results/ /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5368/srpm-builds/10722835/ &> /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5368/srpm-builds/10722835/build-10722835.rsync.log [2026-07-15 21:41:57,429][ INFO][PID:1879692] rsyncing finished. [2026-07-15 21:41:57,465][ INFO][PID:1879692] VM Release request [2026-07-15 21:41:57,570][ INFO][PID:1879692] Searching for 'success' file in resultdir [2026-07-15 21:41:57,744][ INFO][PID:1879692] Getting build details [2026-07-15 21:41:57,749][ INFO][PID:1879692] Retrieving SRPM info from /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5368/srpm-builds/10722835 [2026-07-15 21:41:58,000][ INFO][PID:1879692] SRPM URL: https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5368/srpm-builds/10722835/Sunshine-0.0.5368-1.src.rpm [2026-07-15 21:41:58,014][ INFO][PID:1879692] build details: {'srpm_url': 'https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5368/srpm-builds/10722835/Sunshine-0.0.5368-1.src.rpm', 'pkg_name': 'Sunshine', 'pkg_version': '0.0.5368-1'} [2026-07-15 21:41:58,096][ INFO][PID:1879692] Finished build: id=10722835 failed=False timeout=108000 destdir=/var/lib/copr/public_html/results/lizardbyte/pulls:pr:5368 chroot=srpm-builds [2026-07-15 21:41:58,512][ INFO][PID:1879692] Worker succeeded build, took 628.4870958328247 [2026-07-15 21:41:58,559][ INFO][PID:1879692] 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:5368", "submitter": null, "ended_on": 1784151718.5094786, "started_on": 1784151090.0223827, "submitted_on": null, "status": 1, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10722835", "build_id": 10722835, "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\": \"tmp3jniostv\", \"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:5368/srpm-builds/10722835/Sunshine-0.0.5368-1.src.rpm", "uses_devel_repo": null, "sandbox": "lizardbyte/pulls--a91b5a4a-b4f8-4154-8bbf-02472bfcace7", "results": { "architecture_specific_tags": { "fedora-43": {}, "fedora-44": {}, "fedora-rawhide": {}, "opensuse-leap-15.6": {} }, "name": "Sunshine", "epoch": null, "version": "0.0.5368", "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:5368", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5368", "result_dir": "10722835", "built_packages": "", "tags": [ "arch_x86_64" ], "rpmeta_prediction": null, "pkg_version": "0.0.5368-1", "id": 10722835, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2026-07-15 21:42:01,524][ INFO][PID:1879692] Sending fedora-messaging bus message in build.end [2026-07-15 21:42:02,871][ INFO][PID:1879692] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5368/srpm-builds/10722835/builder-live.log by gzip [2026-07-15 21:42:02,962][ INFO][PID:1879692] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5368/srpm-builds/10722835/builder-live.log' as PID 1964601 [2026-07-15 21:42:03,074][ INFO][PID:1879692] Finished after 0 seconds with exit code 0 (gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5368/srpm-builds/10722835/builder-live.log) [2026-07-15 21:42:03,098][ INFO][PID:1879692] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5368/srpm-builds/10722835/backend.log by gzip [2026-07-15 21:42:03,112][ INFO][PID:1879692] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5368/srpm-builds/10722835/backend.log' as PID 1964618