[2026-08-21 15:34:26,043][ INFO][PID:3986372] Marking build as starting [2026-08-21 15:34:26,098][ INFO][PID:3986372] Checking for cancel request [2026-08-21 15:34:26,101][ INFO][PID:3986372] VM allocation process starts [2026-08-21 15:34:26,132][ INFO][PID:3986372] Trying to allocate VM: ResallocHost, ticket_id=4562796, requested_tags=['arch_x86_64', 'copr_builder'] [2026-08-21 15:34:29,159][ INFO][PID:3986372] Allocated host ResallocHost, ticket_id=4562796, hostname=3.227.251.72, name=aws_x86_64_reserved_prod_19681118_20260821_152826, requested_tags=['arch_x86_64', 'copr_builder'] [2026-08-21 15:34:29,160][ INFO][PID:3986372] Allocating ssh connection to builder [2026-08-21 15:34:29,160][ INFO][PID:3986372] Checking that builder machine is OK [2026-08-21 15:34:29,473][ INFO][PID:3986372] Installed copr-rpmbuild version: 1.9 [2026-08-21 15:34:29,474][ INFO][PID:3986372] Running remote command: copr-builder-ready srpm-builds [2026-08-21 15:34:29,657][ INFO][PID:3986372] Red Hat subscription not needed for srpm-builds Builder is ready to be used [2026-08-21 15:34:29,658][ INFO][PID:3986372] Filling build.info file with builder info [2026-08-21 15:34:29,659][ INFO][PID:3986372] Checking for cancel request [2026-08-21 15:34:29,660][ INFO][PID:3986372] 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:5537", "submitter": null, "ended_on": null, "started_on": 1787326469.660693, "submitted_on": null, "status": 3, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10888872", "build_id": 10888872, "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\": \"tmpn18bktfr\", \"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--198d3867-4dcb-4d89-87f4-51969f6e3528", "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" ], "distributions_in_project": [ "fedora-43", "fedora-44", "fedora-45", "fedora-rawhide" ], "destdir": "/var/lib/copr/public_html/results/lizardbyte/pulls:pr:5537", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5537", "result_dir": "10888872", "built_packages": "", "tags": [ "arch_x86_64" ], "rpmeta_prediction": null, "id": 10888872, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2026-08-21 15:34:29,703][ INFO][PID:3986372] Sending fedora-messaging bus message in build.start [2026-08-21 15:34:30,312][ INFO][PID:3986372] Sending fedora-messaging bus message in chroot.start [2026-08-21 15:34:30,340][ INFO][PID:3986372] Starting remote build: copr-rpmbuild --verbose --drop-resultdir --srpm --task-url https://copr.fedorainfracloud.org/backend/get-srpm-build-task/10888872 --detached [2026-08-21 15:34:30,820][ INFO][PID:3986372] The copr-rpmbuild seems started, per: stdout: stderr: Warning: Permanently added '3.227.251.72' (ED25519) to the list of known hosts. [2026-08-21 15:34:30,822][ INFO][PID:3986372] Downloading the builder-live.log file, attempt 1 [2026-08-21 15:34:30,824][ INFO][PID:3986372] Popen command started: ssh -F /home/copr/.ssh/config mockbuilder@3.227.251.72 copr-rpmbuild-log [2026-08-21 15:34:35,829][ INFO][PID:3986372] Periodic builder liveness probe: alive [2026-08-21 15:34:35,830][ INFO][PID:3986372] Checking for cancel request [2026-08-21 15:34:40,831][ INFO][PID:3986372] Checking for cancel request [2026-08-21 15:34:45,833][ INFO][PID:3986372] Checking for cancel request [2026-08-21 15:34:50,834][ INFO][PID:3986372] Checking for cancel request [2026-08-21 15:34:55,836][ INFO][PID:3986372] Checking for cancel request [2026-08-21 15:35:00,842][ INFO][PID:3986372] Checking for cancel request [2026-08-21 15:35:05,845][ INFO][PID:3986372] Checking for cancel request [2026-08-21 15:35:10,847][ INFO][PID:3986372] Checking for cancel request [2026-08-21 15:35:15,848][ INFO][PID:3986372] Checking for cancel request [2026-08-21 15:35:20,850][ INFO][PID:3986372] Checking for cancel request [2026-08-21 15:35:25,852][ INFO][PID:3986372] Checking for cancel request [2026-08-21 15:35:30,853][ INFO][PID:3986372] Checking for cancel request [2026-08-21 15:35:35,855][ INFO][PID:3986372] Checking for cancel request [2026-08-21 15:35:40,856][ INFO][PID:3986372] Checking for cancel request [2026-08-21 15:35:45,858][ INFO][PID:3986372] Checking for cancel request [2026-08-21 15:35:50,859][ INFO][PID:3986372] Checking for cancel request [2026-08-21 15:35:55,860][ INFO][PID:3986372] Checking for cancel request [2026-08-21 15:36:00,862][ INFO][PID:3986372] Checking for cancel request [2026-08-21 15:36:05,863][ INFO][PID:3986372] Checking for cancel request [2026-08-21 15:36:10,865][ INFO][PID:3986372] Checking for cancel request [2026-08-21 15:36:15,866][ INFO][PID:3986372] Checking for cancel request [2026-08-21 15:36:20,868][ INFO][PID:3986372] Checking for cancel request [2026-08-21 15:36:25,870][ INFO][PID:3986372] Checking for cancel request [2026-08-21 15:36:30,871][ INFO][PID:3986372] Checking for cancel request [2026-08-21 15:36:35,873][ INFO][PID:3986372] Checking for cancel request [2026-08-21 15:36:40,875][ INFO][PID:3986372] Checking for cancel request [2026-08-21 15:36:45,877][ INFO][PID:3986372] Checking for cancel request [2026-08-21 15:36:50,885][ INFO][PID:3986372] Checking for cancel request [2026-08-21 15:36:55,888][ INFO][PID:3986372] Checking for cancel request [2026-08-21 15:37:00,889][ INFO][PID:3986372] Checking for cancel request [2026-08-21 15:37:05,891][ INFO][PID:3986372] Checking for cancel request [2026-08-21 15:37:10,892][ INFO][PID:3986372] Checking for cancel request [2026-08-21 15:37:15,894][ INFO][PID:3986372] Checking for cancel request [2026-08-21 15:37:20,896][ INFO][PID:3986372] Checking for cancel request [2026-08-21 15:37:25,897][ INFO][PID:3986372] Checking for cancel request [2026-08-21 15:37:30,899][ INFO][PID:3986372] Checking for cancel request [2026-08-21 15:37:35,900][ INFO][PID:3986372] Checking for cancel request [2026-08-21 15:37:40,902][ INFO][PID:3986372] Checking for cancel request [2026-08-21 15:37:45,903][ INFO][PID:3986372] Checking for cancel request [2026-08-21 15:37:50,904][ INFO][PID:3986372] Checking for cancel request [2026-08-21 15:37:55,906][ INFO][PID:3986372] Checking for cancel request [2026-08-21 15:38:00,907][ INFO][PID:3986372] Checking for cancel request [2026-08-21 15:38:05,909][ INFO][PID:3986372] Checking for cancel request [2026-08-21 15:38:10,910][ INFO][PID:3986372] Checking for cancel request [2026-08-21 15:38:15,911][ INFO][PID:3986372] Checking for cancel request [2026-08-21 15:38:20,913][ INFO][PID:3986372] Checking for cancel request [2026-08-21 15:38:25,914][ INFO][PID:3986372] Checking for cancel request [2026-08-21 15:38:30,918][ INFO][PID:3986372] Checking for cancel request [2026-08-21 15:38:35,919][ INFO][PID:3986372] Checking for cancel request [2026-08-21 15:38:40,950][ INFO][PID:3986372] Checking for cancel request [2026-08-21 15:38:45,952][ INFO][PID:3986372] Checking for cancel request [2026-08-21 15:38:50,953][ INFO][PID:3986372] Checking for cancel request [2026-08-21 15:38:55,954][ INFO][PID:3986372] Checking for cancel request [2026-08-21 15:39:00,956][ INFO][PID:3986372] Checking for cancel request [2026-08-21 15:39:05,958][ INFO][PID:3986372] Checking for cancel request [2026-08-21 15:39:11,109][ INFO][PID:3986372] Checking for cancel request [2026-08-21 15:39:16,145][ INFO][PID:3986372] Checking for cancel request [2026-08-21 15:39:21,147][ INFO][PID:3986372] Checking for cancel request [2026-08-21 15:39:26,193][ INFO][PID:3986372] Checking for cancel request [2026-08-21 15:39:31,200][ INFO][PID:3986372] Checking for cancel request [2026-08-21 15:39:36,237][ INFO][PID:3986372] Checking for cancel request [2026-08-21 15:39:41,282][ INFO][PID:3986372] Checking for cancel request [2026-08-21 15:39:46,388][ INFO][PID:3986372] Checking for cancel request [2026-08-21 15:39:51,391][ INFO][PID:3986372] Checking for cancel request [2026-08-21 15:39:56,393][ INFO][PID:3986372] Checking for cancel request [2026-08-21 15:40:01,396][ INFO][PID:3986372] Checking for cancel request [2026-08-21 15:40:06,398][ INFO][PID:3986372] Checking for cancel request [2026-08-21 15:40:11,401][ INFO][PID:3986372] Checking for cancel request [2026-08-21 15:40:16,403][ INFO][PID:3986372] Checking for cancel request [2026-08-21 15:40:21,407][ INFO][PID:3986372] Checking for cancel request [2026-08-21 15:40:26,438][ INFO][PID:3986372] Checking for cancel request [2026-08-21 15:40:31,622][ INFO][PID:3986372] Checking for cancel request [2026-08-21 15:40:36,712][ INFO][PID:3986372] Checking for cancel request [2026-08-21 15:40:41,728][ INFO][PID:3986372] Checking for cancel request [2026-08-21 15:40:46,731][ INFO][PID:3986372] Checking for cancel request [2026-08-21 15:40:51,748][ INFO][PID:3986372] Checking for cancel request [2026-08-21 15:40:56,767][ INFO][PID:3986372] Checking for cancel request [2026-08-21 15:41:01,777][ INFO][PID:3986372] Checking for cancel request [2026-08-21 15:41:06,790][ INFO][PID:3986372] Checking for cancel request [2026-08-21 15:41:11,791][ INFO][PID:3986372] Checking for cancel request [2026-08-21 15:41:16,793][ INFO][PID:3986372] Checking for cancel request [2026-08-21 15:41:21,836][ INFO][PID:3986372] Checking for cancel request [2026-08-21 15:41:26,864][ INFO][PID:3986372] Checking for cancel request [2026-08-21 15:41:31,874][ INFO][PID:3986372] Checking for cancel request [2026-08-21 15:41:36,884][ INFO][PID:3986372] Checking for cancel request [2026-08-21 15:41:41,898][ INFO][PID:3986372] Checking for cancel request [2026-08-21 15:41:46,971][ INFO][PID:3986372] Checking for cancel request [2026-08-21 15:41:51,978][ INFO][PID:3986372] Checking for cancel request [2026-08-21 15:41:56,985][ INFO][PID:3986372] Checking for cancel request [2026-08-21 15:42:01,991][ INFO][PID:3986372] Checking for cancel request [2026-08-21 15:42:06,996][ INFO][PID:3986372] Checking for cancel request [2026-08-21 15:42:12,008][ INFO][PID:3986372] Checking for cancel request [2026-08-21 15:42:17,022][ INFO][PID:3986372] Checking for cancel request [2026-08-21 15:42:22,025][ INFO][PID:3986372] Checking for cancel request [2026-08-21 15:42:27,050][ INFO][PID:3986372] Checking for cancel request [2026-08-21 15:42:32,092][ INFO][PID:3986372] Checking for cancel request [2026-08-21 15:42:37,129][ INFO][PID:3986372] Checking for cancel request [2026-08-21 15:42:42,140][ INFO][PID:3986372] Checking for cancel request [2026-08-21 15:42:47,275][ INFO][PID:3986372] Checking for cancel request [2026-08-21 15:42:52,299][ INFO][PID:3986372] Checking for cancel request [2026-08-21 15:42:57,303][ INFO][PID:3986372] Checking for cancel request [2026-08-21 15:43:02,352][ INFO][PID:3986372] Checking for cancel request [2026-08-21 15:43:07,384][ INFO][PID:3986372] Checking for cancel request [2026-08-21 15:43:12,507][ INFO][PID:3986372] Checking for cancel request [2026-08-21 15:43:17,651][ INFO][PID:3986372] Checking for cancel request [2026-08-21 15:43:23,108][ INFO][PID:3986372] Checking for cancel request [2026-08-21 15:43:29,094][ INFO][PID:3986372] Checking for cancel request [2026-08-21 15:43:34,841][ INFO][PID:3986372] Checking for cancel request [2026-08-21 15:43:39,892][ INFO][PID:3986372] Checking for cancel request [2026-08-21 15:43:45,932][ INFO][PID:3986372] Checking for cancel request [2026-08-21 15:43:51,891][ INFO][PID:3986372] Checking for cancel request [2026-08-21 15:43:57,889][ INFO][PID:3986372] Checking for cancel request [2026-08-21 15:44:03,861][ INFO][PID:3986372] Checking for cancel request [2026-08-21 15:44:09,369][ INFO][PID:3986372] Checking for cancel request [2026-08-21 15:44:14,863][ INFO][PID:3986372] Checking for cancel request [2026-08-21 15:44:20,062][ INFO][PID:3986372] Checking for cancel request [2026-08-21 15:44:25,120][ INFO][PID:3986372] Checking for cancel request [2026-08-21 15:44:30,634][ INFO][PID:3986372] Checking for cancel request [2026-08-21 15:44:35,848][ INFO][PID:3986372] Periodic builder liveness probe: alive [2026-08-21 15:44:36,465][ INFO][PID:3986372] Checking for cancel request [2026-08-21 15:44:41,466][ INFO][PID:3986372] Checking for cancel request [2026-08-21 15:44:47,588][ INFO][PID:3986372] Checking for cancel request [2026-08-21 15:44:53,255][ INFO][PID:3986372] Checking for cancel request [2026-08-21 15:44:59,286][ INFO][PID:3986372] Checking for cancel request [2026-08-21 15:45:04,513][ INFO][PID:3986372] Checking for cancel request [2026-08-21 15:45:10,053][ INFO][PID:3986372] Checking for cancel request [2026-08-21 15:45:15,354][ INFO][PID:3986372] Checking for cancel request [2026-08-21 15:45:20,900][ INFO][PID:3986372] Checking for cancel request [2026-08-21 15:45:26,859][ INFO][PID:3986372] Checking for cancel request [2026-08-21 15:45:33,478][ INFO][PID:3986372] Checking for cancel request [2026-08-21 15:45:40,277][ INFO][PID:3986372] Checking for cancel request [2026-08-21 15:45:45,938][ INFO][PID:3986372] Checking for cancel request [2026-08-21 15:45:51,776][ INFO][PID:3986372] Checking for cancel request [2026-08-21 15:45:53,067][ INFO][PID:3986372] Downloading results from builder [2026-08-21 15:45:53,070][ INFO][PID:3986372] rsyncing of mockbuilder@3.227.251.72:/var/lib/copr-rpmbuild/results/ to /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5537/srpm-builds/10888872 started [2026-08-21 15:45:53,072][ INFO][PID:3986372] Popen command started: /usr/bin/rsync -rltDvH --chmod=D755,F644 -e 'ssh -F /home/copr/.ssh/config' mockbuilder@3.227.251.72:/var/lib/copr-rpmbuild/results/ /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5537/srpm-builds/10888872/ &> /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5537/srpm-builds/10888872/build-10888872.rsync.log [2026-08-21 15:45:59,780][ INFO][PID:3986372] rsyncing finished. [2026-08-21 15:45:59,782][ INFO][PID:3986372] VM Release request [2026-08-21 15:45:59,806][ INFO][PID:3986372] Searching for 'success' file in resultdir [2026-08-21 15:45:59,807][ INFO][PID:3986372] Getting build details [2026-08-21 15:45:59,808][ INFO][PID:3986372] Retrieving SRPM info from /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5537/srpm-builds/10888872 [2026-08-21 15:45:59,809][ INFO][PID:3986372] SRPM URL: https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5537/srpm-builds/10888872/Sunshine-0.0.5537-1.src.rpm [2026-08-21 15:45:59,810][ INFO][PID:3986372] build details: {'srpm_url': 'https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5537/srpm-builds/10888872/Sunshine-0.0.5537-1.src.rpm', 'pkg_name': 'Sunshine', 'pkg_version': '0.0.5537-1'} [2026-08-21 15:45:59,810][ INFO][PID:3986372] Finished build: id=10888872 failed=False timeout=108000 destdir=/var/lib/copr/public_html/results/lizardbyte/pulls:pr:5537 chroot=srpm-builds [2026-08-21 15:45:59,811][ INFO][PID:3986372] Worker succeeded build, took 690.1510119438171 [2026-08-21 15:45:59,812][ INFO][PID:3986372] 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:5537", "submitter": null, "ended_on": 1787327159.8117049, "started_on": 1787326469.660693, "submitted_on": null, "status": 1, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10888872", "build_id": 10888872, "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\": \"tmpn18bktfr\", \"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:5537/srpm-builds/10888872/Sunshine-0.0.5537-1.src.rpm", "uses_devel_repo": null, "sandbox": "lizardbyte/pulls--198d3867-4dcb-4d89-87f4-51969f6e3528", "results": { "architecture_specific_tags": { "fedora-43": {}, "fedora-44": {}, "fedora-45": {}, "fedora-rawhide": {} }, "name": "Sunshine", "epoch": null, "version": "0.0.5537", "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" ], "distributions_in_project": [ "fedora-43", "fedora-44", "fedora-45", "fedora-rawhide" ], "destdir": "/var/lib/copr/public_html/results/lizardbyte/pulls:pr:5537", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5537", "result_dir": "10888872", "built_packages": "", "tags": [ "arch_x86_64" ], "rpmeta_prediction": null, "pkg_version": "0.0.5537-1", "id": 10888872, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2026-08-21 15:45:59,869][ INFO][PID:3986372] Sending fedora-messaging bus message in build.end [2026-08-21 15:45:59,930][ INFO][PID:3986372] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5537/srpm-builds/10888872/builder-live.log by gzip [2026-08-21 15:45:59,932][ INFO][PID:3986372] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5537/srpm-builds/10888872/builder-live.log' as PID 4053046 [2026-08-21 15:45:59,947][ INFO][PID:3986372] Finished after 0 seconds with exit code 0 (gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5537/srpm-builds/10888872/builder-live.log) [2026-08-21 15:45:59,947][ INFO][PID:3986372] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5537/srpm-builds/10888872/backend.log by gzip [2026-08-21 15:45:59,949][ INFO][PID:3986372] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5537/srpm-builds/10888872/backend.log' as PID 4053048