[2026-09-14 02:09:38,292][ INFO][PID:1284520] Marking build as starting [2026-09-14 02:10:08,348][ INFO][PID:1284520] Checking for cancel request [2026-09-14 02:10:08,348][ INFO][PID:1284520] VM allocation process starts [2026-09-14 02:10:08,353][ INFO][PID:1284520] Trying to allocate VM: ResallocHost, ticket_id=5005133, requested_tags=['arch_x86_64', 'copr_builder'] [2026-09-14 02:10:11,361][ INFO][PID:1284520] Allocated host ResallocHost, ticket_id=5005133, hostname=98.92.245.41, name=aws_x86_64_reserved_prod_36857849_20260914_015306, requested_tags=['arch_x86_64', 'copr_builder'] [2026-09-14 02:10:11,362][ INFO][PID:1284520] Allocating ssh connection to builder [2026-09-14 02:10:11,362][ INFO][PID:1284520] Checking that builder machine is OK [2026-09-14 02:10:11,666][ INFO][PID:1284520] Installed copr-rpmbuild version: 1.9 [2026-09-14 02:10:11,667][ INFO][PID:1284520] Running remote command: copr-builder-ready srpm-builds [2026-09-14 02:10:11,834][ INFO][PID:1284520] Red Hat subscription not needed for srpm-builds Builder is ready to be used [2026-09-14 02:10:11,834][ INFO][PID:1284520] Filling build.info file with builder info [2026-09-14 02:10:11,835][ INFO][PID:1284520] Checking for cancel request [2026-09-14 02:10:11,835][ INFO][PID:1284520] 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:5708", "submitter": null, "ended_on": null, "started_on": 1789351811.8353395, "submitted_on": null, "status": 3, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10982782", "build_id": 10982782, "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\": \"tmpcak3h499\", \"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--8bd4aa49-8b22-46f8-81b9-0bac6c6b52d1", "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:5708", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5708", "result_dir": "10982782", "built_packages": "", "tags": [ "arch_x86_64" ], "rpmeta_prediction": null, "id": 10982782, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2026-09-14 02:10:41,890][ INFO][PID:1284520] Sending fedora-messaging bus message in build.start [2026-09-14 02:10:42,273][ INFO][PID:1284520] Sending fedora-messaging bus message in chroot.start [2026-09-14 02:10:42,297][ INFO][PID:1284520] Starting remote build: copr-rpmbuild --verbose --drop-resultdir --srpm --task-url https://copr.fedorainfracloud.org/backend/get-srpm-build-task/10982782 --detached [2026-09-14 02:10:42,879][ INFO][PID:1284520] The copr-rpmbuild seems started, per: stdout: stderr: Warning: Permanently added '98.92.245.41' (ED25519) to the list of known hosts. [2026-09-14 02:10:42,880][ INFO][PID:1284520] Downloading the builder-live.log file, attempt 1 [2026-09-14 02:10:42,881][ INFO][PID:1284520] Popen command started: ssh -F /home/copr/.ssh/config mockbuilder@98.92.245.41 copr-rpmbuild-log [2026-09-14 02:10:47,884][ INFO][PID:1284520] Periodic builder liveness probe: alive [2026-09-14 02:10:47,885][ INFO][PID:1284520] Checking for cancel request [2026-09-14 02:10:52,885][ INFO][PID:1284520] Checking for cancel request [2026-09-14 02:10:57,886][ INFO][PID:1284520] Checking for cancel request [2026-09-14 02:11:02,887][ INFO][PID:1284520] Checking for cancel request [2026-09-14 02:11:07,888][ INFO][PID:1284520] Checking for cancel request [2026-09-14 02:11:12,889][ INFO][PID:1284520] Checking for cancel request [2026-09-14 02:11:17,890][ INFO][PID:1284520] Checking for cancel request [2026-09-14 02:11:22,891][ INFO][PID:1284520] Checking for cancel request [2026-09-14 02:11:27,891][ INFO][PID:1284520] Checking for cancel request [2026-09-14 02:11:32,892][ INFO][PID:1284520] Checking for cancel request [2026-09-14 02:11:37,893][ INFO][PID:1284520] Checking for cancel request [2026-09-14 02:11:42,894][ INFO][PID:1284520] Checking for cancel request [2026-09-14 02:11:47,895][ INFO][PID:1284520] Checking for cancel request [2026-09-14 02:11:52,896][ INFO][PID:1284520] Checking for cancel request [2026-09-14 02:11:57,897][ INFO][PID:1284520] Checking for cancel request [2026-09-14 02:12:02,898][ INFO][PID:1284520] Checking for cancel request [2026-09-14 02:12:07,898][ INFO][PID:1284520] Checking for cancel request [2026-09-14 02:12:12,899][ INFO][PID:1284520] Checking for cancel request [2026-09-14 02:12:17,901][ INFO][PID:1284520] Checking for cancel request [2026-09-14 02:12:22,903][ INFO][PID:1284520] Checking for cancel request [2026-09-14 02:12:27,904][ INFO][PID:1284520] Checking for cancel request [2026-09-14 02:12:32,904][ INFO][PID:1284520] Checking for cancel request [2026-09-14 02:12:37,905][ INFO][PID:1284520] Checking for cancel request [2026-09-14 02:12:42,906][ INFO][PID:1284520] Checking for cancel request [2026-09-14 02:12:47,907][ INFO][PID:1284520] Checking for cancel request [2026-09-14 02:12:52,908][ INFO][PID:1284520] Checking for cancel request [2026-09-14 02:12:57,909][ INFO][PID:1284520] Checking for cancel request [2026-09-14 02:13:02,910][ INFO][PID:1284520] Checking for cancel request [2026-09-14 02:13:07,910][ INFO][PID:1284520] Checking for cancel request [2026-09-14 02:13:12,911][ INFO][PID:1284520] Checking for cancel request [2026-09-14 02:13:17,912][ INFO][PID:1284520] Checking for cancel request [2026-09-14 02:13:22,913][ INFO][PID:1284520] Checking for cancel request [2026-09-14 02:13:27,914][ INFO][PID:1284520] Checking for cancel request [2026-09-14 02:13:32,914][ INFO][PID:1284520] Checking for cancel request [2026-09-14 02:13:37,915][ INFO][PID:1284520] Checking for cancel request [2026-09-14 02:13:42,916][ INFO][PID:1284520] Checking for cancel request [2026-09-14 02:13:47,917][ INFO][PID:1284520] Checking for cancel request [2026-09-14 02:13:52,918][ INFO][PID:1284520] Checking for cancel request [2026-09-14 02:13:57,919][ INFO][PID:1284520] Checking for cancel request [2026-09-14 02:14:02,920][ INFO][PID:1284520] Checking for cancel request [2026-09-14 02:14:07,921][ INFO][PID:1284520] Checking for cancel request [2026-09-14 02:14:12,921][ INFO][PID:1284520] Checking for cancel request [2026-09-14 02:14:17,922][ INFO][PID:1284520] Checking for cancel request [2026-09-14 02:14:22,923][ INFO][PID:1284520] Checking for cancel request [2026-09-14 02:14:27,924][ INFO][PID:1284520] Checking for cancel request [2026-09-14 02:14:32,925][ INFO][PID:1284520] Checking for cancel request [2026-09-14 02:14:37,926][ INFO][PID:1284520] Checking for cancel request [2026-09-14 02:14:42,926][ INFO][PID:1284520] Checking for cancel request [2026-09-14 02:14:47,927][ INFO][PID:1284520] Checking for cancel request [2026-09-14 02:14:52,928][ INFO][PID:1284520] Checking for cancel request [2026-09-14 02:14:57,929][ INFO][PID:1284520] Checking for cancel request [2026-09-14 02:15:02,930][ INFO][PID:1284520] Checking for cancel request [2026-09-14 02:15:07,931][ INFO][PID:1284520] Checking for cancel request [2026-09-14 02:15:12,931][ INFO][PID:1284520] Checking for cancel request [2026-09-14 02:15:17,932][ INFO][PID:1284520] Checking for cancel request [2026-09-14 02:15:22,933][ INFO][PID:1284520] Checking for cancel request [2026-09-14 02:15:27,934][ INFO][PID:1284520] Checking for cancel request [2026-09-14 02:15:32,935][ INFO][PID:1284520] Checking for cancel request [2026-09-14 02:15:37,936][ INFO][PID:1284520] Checking for cancel request [2026-09-14 02:15:42,937][ INFO][PID:1284520] Checking for cancel request [2026-09-14 02:15:47,937][ INFO][PID:1284520] Checking for cancel request [2026-09-14 02:15:52,938][ INFO][PID:1284520] Checking for cancel request [2026-09-14 02:15:57,939][ INFO][PID:1284520] Checking for cancel request [2026-09-14 02:16:02,940][ INFO][PID:1284520] Checking for cancel request [2026-09-14 02:16:07,941][ INFO][PID:1284520] Checking for cancel request [2026-09-14 02:16:12,942][ INFO][PID:1284520] Checking for cancel request [2026-09-14 02:16:17,943][ INFO][PID:1284520] Checking for cancel request [2026-09-14 02:16:22,967][ INFO][PID:1284520] Checking for cancel request [2026-09-14 02:16:28,101][ INFO][PID:1284520] Checking for cancel request [2026-09-14 02:16:33,102][ INFO][PID:1284520] Checking for cancel request [2026-09-14 02:16:38,103][ INFO][PID:1284520] Checking for cancel request [2026-09-14 02:16:43,104][ INFO][PID:1284520] Checking for cancel request [2026-09-14 02:16:48,105][ INFO][PID:1284520] Checking for cancel request [2026-09-14 02:16:53,106][ INFO][PID:1284520] Checking for cancel request [2026-09-14 02:16:58,107][ INFO][PID:1284520] Checking for cancel request [2026-09-14 02:17:03,108][ INFO][PID:1284520] Checking for cancel request [2026-09-14 02:17:08,109][ INFO][PID:1284520] Checking for cancel request [2026-09-14 02:17:13,110][ INFO][PID:1284520] Checking for cancel request [2026-09-14 02:17:18,129][ INFO][PID:1284520] Checking for cancel request [2026-09-14 02:17:23,130][ INFO][PID:1284520] Checking for cancel request [2026-09-14 02:17:28,130][ INFO][PID:1284520] Checking for cancel request [2026-09-14 02:17:33,131][ INFO][PID:1284520] Checking for cancel request [2026-09-14 02:17:38,180][ INFO][PID:1284520] Checking for cancel request [2026-09-14 02:17:43,458][ INFO][PID:1284520] Checking for cancel request [2026-09-14 02:17:48,459][ INFO][PID:1284520] Checking for cancel request [2026-09-14 02:17:53,497][ INFO][PID:1284520] Checking for cancel request [2026-09-14 02:17:58,716][ INFO][PID:1284520] Checking for cancel request [2026-09-14 02:18:03,983][ INFO][PID:1284520] Checking for cancel request [2026-09-14 02:18:08,985][ INFO][PID:1284520] Checking for cancel request [2026-09-14 02:18:13,986][ INFO][PID:1284520] Checking for cancel request [2026-09-14 02:18:18,987][ INFO][PID:1284520] Checking for cancel request [2026-09-14 02:18:23,988][ INFO][PID:1284520] Checking for cancel request [2026-09-14 02:18:28,989][ INFO][PID:1284520] Checking for cancel request [2026-09-14 02:18:33,990][ INFO][PID:1284520] Checking for cancel request [2026-09-14 02:18:38,990][ INFO][PID:1284520] Checking for cancel request [2026-09-14 02:18:43,997][ INFO][PID:1284520] Checking for cancel request [2026-09-14 02:18:48,998][ INFO][PID:1284520] Checking for cancel request [2026-09-14 02:18:54,020][ INFO][PID:1284520] Checking for cancel request [2026-09-14 02:18:59,021][ INFO][PID:1284520] Checking for cancel request [2026-09-14 02:19:04,022][ INFO][PID:1284520] Checking for cancel request [2026-09-14 02:19:09,022][ INFO][PID:1284520] Checking for cancel request [2026-09-14 02:19:14,068][ INFO][PID:1284520] Checking for cancel request [2026-09-14 02:19:19,068][ INFO][PID:1284520] Checking for cancel request [2026-09-14 02:19:24,069][ INFO][PID:1284520] Checking for cancel request [2026-09-14 02:19:29,070][ INFO][PID:1284520] Checking for cancel request [2026-09-14 02:19:34,071][ INFO][PID:1284520] Checking for cancel request [2026-09-14 02:19:39,072][ INFO][PID:1284520] Checking for cancel request [2026-09-14 02:19:44,072][ INFO][PID:1284520] Checking for cancel request [2026-09-14 02:19:49,073][ INFO][PID:1284520] Checking for cancel request [2026-09-14 02:19:54,074][ INFO][PID:1284520] Checking for cancel request [2026-09-14 02:19:59,075][ INFO][PID:1284520] Checking for cancel request [2026-09-14 02:20:04,076][ INFO][PID:1284520] Checking for cancel request [2026-09-14 02:20:09,077][ INFO][PID:1284520] Checking for cancel request [2026-09-14 02:20:14,078][ INFO][PID:1284520] Checking for cancel request [2026-09-14 02:20:19,078][ INFO][PID:1284520] Checking for cancel request [2026-09-14 02:20:24,079][ INFO][PID:1284520] Checking for cancel request [2026-09-14 02:20:29,080][ INFO][PID:1284520] Checking for cancel request [2026-09-14 02:20:34,081][ INFO][PID:1284520] Checking for cancel request [2026-09-14 02:20:39,082][ INFO][PID:1284520] Checking for cancel request [2026-09-14 02:20:44,084][ INFO][PID:1284520] Checking for cancel request [2026-09-14 02:20:49,093][ INFO][PID:1284520] Periodic builder liveness probe: alive [2026-09-14 02:20:49,094][ INFO][PID:1284520] Checking for cancel request [2026-09-14 02:20:54,094][ INFO][PID:1284520] Checking for cancel request [2026-09-14 02:20:59,095][ INFO][PID:1284520] Checking for cancel request [2026-09-14 02:21:04,096][ INFO][PID:1284520] Checking for cancel request [2026-09-14 02:21:09,097][ INFO][PID:1284520] Checking for cancel request [2026-09-14 02:21:14,098][ INFO][PID:1284520] Checking for cancel request [2026-09-14 02:21:19,098][ INFO][PID:1284520] Checking for cancel request [2026-09-14 02:21:24,213][ INFO][PID:1284520] Checking for cancel request [2026-09-14 02:21:29,214][ INFO][PID:1284520] Checking for cancel request [2026-09-14 02:21:29,429][ INFO][PID:1284520] Downloading results from builder [2026-09-14 02:21:29,429][ INFO][PID:1284520] rsyncing of mockbuilder@98.92.245.41:/var/lib/copr-rpmbuild/results/ to /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5708/srpm-builds/10982782 started [2026-09-14 02:21:29,429][ INFO][PID:1284520] Popen command started: /usr/bin/rsync -rltDvH --chmod=D755,F644 -e 'ssh -F /home/copr/.ssh/config' mockbuilder@98.92.245.41:/var/lib/copr-rpmbuild/results/ /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5708/srpm-builds/10982782/ &> /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5708/srpm-builds/10982782/build-10982782.rsync.log [2026-09-14 02:21:31,484][ INFO][PID:1284520] rsyncing finished. [2026-09-14 02:21:31,485][ INFO][PID:1284520] VM Release request [2026-09-14 02:21:31,490][ INFO][PID:1284520] Searching for 'success' file in resultdir [2026-09-14 02:21:31,491][ INFO][PID:1284520] Getting build details [2026-09-14 02:21:31,491][ INFO][PID:1284520] Retrieving SRPM info from /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5708/srpm-builds/10982782 [2026-09-14 02:21:31,492][ INFO][PID:1284520] SRPM URL: https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5708/srpm-builds/10982782/Sunshine-0.0.5708-1.src.rpm [2026-09-14 02:21:31,492][ INFO][PID:1284520] build details: {'srpm_url': 'https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5708/srpm-builds/10982782/Sunshine-0.0.5708-1.src.rpm', 'pkg_name': 'Sunshine', 'pkg_version': '0.0.5708-1'} [2026-09-14 02:21:31,492][ INFO][PID:1284520] Finished build: id=10982782 failed=False timeout=108000 destdir=/var/lib/copr/public_html/results/lizardbyte/pulls:pr:5708 chroot=srpm-builds [2026-09-14 02:21:31,492][ INFO][PID:1284520] Worker succeeded build, took 679.6575291156769 [2026-09-14 02:21:31,493][ INFO][PID:1284520] 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:5708", "submitter": null, "ended_on": 1789352491.4928687, "started_on": 1789351811.8353395, "submitted_on": null, "status": 1, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10982782", "build_id": 10982782, "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\": \"tmpcak3h499\", \"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:5708/srpm-builds/10982782/Sunshine-0.0.5708-1.src.rpm", "uses_devel_repo": null, "sandbox": "lizardbyte/pulls--8bd4aa49-8b22-46f8-81b9-0bac6c6b52d1", "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.5708", "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:5708", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5708", "result_dir": "10982782", "built_packages": "", "tags": [ "arch_x86_64" ], "rpmeta_prediction": null, "pkg_version": "0.0.5708-1", "id": 10982782, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2026-09-14 02:22:01,555][ INFO][PID:1284520] Sending fedora-messaging bus message in build.end [2026-09-14 02:22:01,575][ INFO][PID:1284520] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5708/srpm-builds/10982782/builder-live.log by gzip [2026-09-14 02:22:01,576][ INFO][PID:1284520] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5708/srpm-builds/10982782/builder-live.log' as PID 1430668 [2026-09-14 02:22:01,597][ INFO][PID:1284520] Finished after 0 seconds with exit code 0 (gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5708/srpm-builds/10982782/builder-live.log) [2026-09-14 02:22:01,598][ INFO][PID:1284520] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5708/srpm-builds/10982782/backend.log by gzip [2026-09-14 02:22:01,598][ INFO][PID:1284520] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5708/srpm-builds/10982782/backend.log' as PID 1430669