[2026-08-21 16:07:29,536][ INFO][PID:26174] Marking build as starting [2026-08-21 16:07:29,589][ INFO][PID:26174] Checking for cancel request [2026-08-21 16:07:29,592][ INFO][PID:26174] VM allocation process starts [2026-08-21 16:07:29,607][ INFO][PID:26174] Trying to allocate VM: ResallocHost, ticket_id=4563247, requested_tags=['arch_x86_64', 'copr_builder'] [2026-08-21 16:07:34,610][ INFO][PID:26174] Checking for cancel request [2026-08-21 16:07:39,613][ INFO][PID:26174] Checking for cancel request [2026-08-21 16:07:41,668][ INFO][PID:26174] Allocated host ResallocHost, ticket_id=4563247, hostname=2620:52:6:1161:dead:beef:cafe:c107, name=vmhost_x86_02_prod_19685889_20260821_155636, requested_tags=['arch_x86_64', 'copr_builder'] [2026-08-21 16:07:41,670][ INFO][PID:26174] Allocating ssh connection to builder [2026-08-21 16:07:41,671][ INFO][PID:26174] Checking that builder machine is OK [2026-08-21 16:07:42,258][ INFO][PID:26174] Installed copr-rpmbuild version: 1.9 [2026-08-21 16:07:42,260][ INFO][PID:26174] Running remote command: copr-builder-ready srpm-builds [2026-08-21 16:07:42,590][ INFO][PID:26174] Red Hat subscription not needed for srpm-builds Builder is ready to be used [2026-08-21 16:07:42,592][ INFO][PID:26174] Filling build.info file with builder info [2026-08-21 16:07:42,593][ INFO][PID:26174] Checking for cancel request [2026-08-21 16:07:42,595][ INFO][PID:26174] 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:5539", "submitter": null, "ended_on": null, "started_on": 1787328462.595236, "submitted_on": null, "status": 3, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10888959", "build_id": 10888959, "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\": \"tmpgp8ax3fz\", \"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--b39bff1d-09bb-411f-8aed-ade685620229", "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:5539", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5539", "result_dir": "10888959", "built_packages": "", "tags": [ "arch_x86_64" ], "rpmeta_prediction": null, "id": 10888959, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2026-08-21 16:07:42,647][ INFO][PID:26174] Sending fedora-messaging bus message in build.start [2026-08-21 16:07:43,423][ INFO][PID:26174] Sending fedora-messaging bus message in chroot.start [2026-08-21 16:07:43,459][ INFO][PID:26174] Starting remote build: copr-rpmbuild --verbose --drop-resultdir --srpm --task-url https://copr.fedorainfracloud.org/backend/get-srpm-build-task/10888959 --detached [2026-08-21 16:07:44,147][ INFO][PID:26174] The copr-rpmbuild seems started, per: stdout: stderr: Warning: Permanently added '2620:52:6:1161:dead:beef:cafe:c107' (ED25519) to the list of known hosts. [2026-08-21 16:07:44,149][ INFO][PID:26174] Downloading the builder-live.log file, attempt 1 [2026-08-21 16:07:44,152][ INFO][PID:26174] Popen command started: ssh -F /home/copr/.ssh/config mockbuilder@2620:52:6:1161:dead:beef:cafe:c107 copr-rpmbuild-log [2026-08-21 16:07:49,197][ INFO][PID:26174] Periodic builder liveness probe: alive [2026-08-21 16:07:49,198][ INFO][PID:26174] Checking for cancel request [2026-08-21 16:07:54,200][ INFO][PID:26174] Checking for cancel request [2026-08-21 16:07:59,202][ INFO][PID:26174] Checking for cancel request [2026-08-21 16:08:04,207][ INFO][PID:26174] Checking for cancel request [2026-08-21 16:08:09,211][ INFO][PID:26174] Checking for cancel request [2026-08-21 16:08:14,212][ INFO][PID:26174] Checking for cancel request [2026-08-21 16:08:19,215][ INFO][PID:26174] Checking for cancel request [2026-08-21 16:08:24,218][ INFO][PID:26174] Checking for cancel request [2026-08-21 16:08:29,221][ INFO][PID:26174] Checking for cancel request [2026-08-21 16:08:34,224][ INFO][PID:26174] Checking for cancel request [2026-08-21 16:08:39,234][ INFO][PID:26174] Checking for cancel request [2026-08-21 16:08:44,239][ INFO][PID:26174] Checking for cancel request [2026-08-21 16:08:49,242][ INFO][PID:26174] Checking for cancel request [2026-08-21 16:08:54,244][ INFO][PID:26174] Checking for cancel request [2026-08-21 16:08:59,246][ INFO][PID:26174] Checking for cancel request [2026-08-21 16:09:04,249][ INFO][PID:26174] Checking for cancel request [2026-08-21 16:09:09,254][ INFO][PID:26174] Checking for cancel request [2026-08-21 16:09:14,263][ INFO][PID:26174] Checking for cancel request [2026-08-21 16:09:19,264][ INFO][PID:26174] Checking for cancel request [2026-08-21 16:09:24,267][ INFO][PID:26174] Checking for cancel request [2026-08-21 16:09:29,269][ INFO][PID:26174] Checking for cancel request [2026-08-21 16:09:34,272][ INFO][PID:26174] Checking for cancel request [2026-08-21 16:09:39,274][ INFO][PID:26174] Checking for cancel request [2026-08-21 16:09:44,276][ INFO][PID:26174] Checking for cancel request [2026-08-21 16:09:49,277][ INFO][PID:26174] Checking for cancel request [2026-08-21 16:09:54,279][ INFO][PID:26174] Checking for cancel request [2026-08-21 16:09:59,281][ INFO][PID:26174] Checking for cancel request [2026-08-21 16:10:04,283][ INFO][PID:26174] Checking for cancel request [2026-08-21 16:10:09,284][ INFO][PID:26174] Checking for cancel request [2026-08-21 16:10:14,287][ INFO][PID:26174] Checking for cancel request [2026-08-21 16:10:19,295][ INFO][PID:26174] Checking for cancel request [2026-08-21 16:10:24,299][ INFO][PID:26174] Checking for cancel request [2026-08-21 16:10:29,301][ INFO][PID:26174] Checking for cancel request [2026-08-21 16:10:34,303][ INFO][PID:26174] Checking for cancel request [2026-08-21 16:10:39,306][ INFO][PID:26174] Checking for cancel request [2026-08-21 16:10:44,309][ INFO][PID:26174] Checking for cancel request [2026-08-21 16:10:49,311][ INFO][PID:26174] Checking for cancel request [2026-08-21 16:10:54,313][ INFO][PID:26174] Checking for cancel request [2026-08-21 16:10:59,315][ INFO][PID:26174] Checking for cancel request [2026-08-21 16:11:04,318][ INFO][PID:26174] Checking for cancel request [2026-08-21 16:11:09,321][ INFO][PID:26174] Checking for cancel request [2026-08-21 16:11:14,324][ INFO][PID:26174] Checking for cancel request [2026-08-21 16:11:19,325][ INFO][PID:26174] Checking for cancel request [2026-08-21 16:11:24,330][ INFO][PID:26174] Checking for cancel request [2026-08-21 16:11:29,333][ INFO][PID:26174] Checking for cancel request [2026-08-21 16:11:34,336][ INFO][PID:26174] Checking for cancel request [2026-08-21 16:11:39,341][ INFO][PID:26174] Checking for cancel request [2026-08-21 16:11:44,345][ INFO][PID:26174] Checking for cancel request [2026-08-21 16:11:49,349][ INFO][PID:26174] Checking for cancel request [2026-08-21 16:11:54,350][ INFO][PID:26174] Checking for cancel request [2026-08-21 16:11:59,356][ INFO][PID:26174] Checking for cancel request [2026-08-21 16:12:04,358][ INFO][PID:26174] Checking for cancel request [2026-08-21 16:12:09,363][ INFO][PID:26174] Checking for cancel request [2026-08-21 16:12:14,369][ INFO][PID:26174] Checking for cancel request [2026-08-21 16:12:19,371][ INFO][PID:26174] Checking for cancel request [2026-08-21 16:12:24,373][ INFO][PID:26174] Checking for cancel request [2026-08-21 16:12:29,376][ INFO][PID:26174] Checking for cancel request [2026-08-21 16:12:34,379][ INFO][PID:26174] Checking for cancel request [2026-08-21 16:12:39,382][ INFO][PID:26174] Checking for cancel request [2026-08-21 16:12:44,384][ INFO][PID:26174] Checking for cancel request [2026-08-21 16:12:49,386][ INFO][PID:26174] Checking for cancel request [2026-08-21 16:12:54,389][ INFO][PID:26174] Checking for cancel request [2026-08-21 16:12:59,390][ INFO][PID:26174] Checking for cancel request [2026-08-21 16:13:04,393][ INFO][PID:26174] Checking for cancel request [2026-08-21 16:13:09,396][ INFO][PID:26174] Checking for cancel request [2026-08-21 16:13:14,398][ INFO][PID:26174] Checking for cancel request [2026-08-21 16:13:19,400][ INFO][PID:26174] Checking for cancel request [2026-08-21 16:13:24,402][ INFO][PID:26174] Checking for cancel request [2026-08-21 16:13:29,404][ INFO][PID:26174] Checking for cancel request [2026-08-21 16:13:34,406][ INFO][PID:26174] Checking for cancel request [2026-08-21 16:13:39,410][ INFO][PID:26174] Checking for cancel request [2026-08-21 16:13:44,414][ INFO][PID:26174] Checking for cancel request [2026-08-21 16:13:49,417][ INFO][PID:26174] Checking for cancel request [2026-08-21 16:13:54,419][ INFO][PID:26174] Checking for cancel request [2026-08-21 16:13:59,422][ INFO][PID:26174] Checking for cancel request [2026-08-21 16:14:04,424][ INFO][PID:26174] Checking for cancel request [2026-08-21 16:14:09,425][ INFO][PID:26174] Checking for cancel request [2026-08-21 16:14:14,428][ INFO][PID:26174] Checking for cancel request [2026-08-21 16:14:19,430][ INFO][PID:26174] Checking for cancel request [2026-08-21 16:14:24,431][ INFO][PID:26174] Checking for cancel request [2026-08-21 16:14:29,433][ INFO][PID:26174] Checking for cancel request [2026-08-21 16:14:34,436][ INFO][PID:26174] Checking for cancel request [2026-08-21 16:14:39,438][ INFO][PID:26174] Checking for cancel request [2026-08-21 16:14:44,440][ INFO][PID:26174] Checking for cancel request [2026-08-21 16:14:49,444][ INFO][PID:26174] Checking for cancel request [2026-08-21 16:14:54,446][ INFO][PID:26174] Checking for cancel request [2026-08-21 16:14:59,448][ INFO][PID:26174] Checking for cancel request [2026-08-21 16:15:04,449][ INFO][PID:26174] Checking for cancel request [2026-08-21 16:15:09,451][ INFO][PID:26174] Checking for cancel request [2026-08-21 16:15:14,453][ INFO][PID:26174] Checking for cancel request [2026-08-21 16:15:19,455][ INFO][PID:26174] Checking for cancel request [2026-08-21 16:15:24,457][ INFO][PID:26174] Checking for cancel request [2026-08-21 16:15:29,462][ INFO][PID:26174] Checking for cancel request [2026-08-21 16:15:34,463][ INFO][PID:26174] Checking for cancel request [2026-08-21 16:15:39,465][ INFO][PID:26174] Checking for cancel request [2026-08-21 16:15:44,467][ INFO][PID:26174] Checking for cancel request [2026-08-21 16:15:49,470][ INFO][PID:26174] Checking for cancel request [2026-08-21 16:15:54,472][ INFO][PID:26174] Checking for cancel request [2026-08-21 16:15:59,474][ INFO][PID:26174] Checking for cancel request [2026-08-21 16:16:04,476][ INFO][PID:26174] Checking for cancel request [2026-08-21 16:16:09,477][ INFO][PID:26174] Checking for cancel request [2026-08-21 16:16:14,479][ INFO][PID:26174] Checking for cancel request [2026-08-21 16:16:19,481][ INFO][PID:26174] Checking for cancel request [2026-08-21 16:16:24,485][ INFO][PID:26174] Checking for cancel request [2026-08-21 16:16:29,488][ INFO][PID:26174] Checking for cancel request [2026-08-21 16:16:34,490][ INFO][PID:26174] Checking for cancel request [2026-08-21 16:16:39,494][ INFO][PID:26174] Checking for cancel request [2026-08-21 16:16:44,495][ INFO][PID:26174] Checking for cancel request [2026-08-21 16:16:49,497][ INFO][PID:26174] Checking for cancel request [2026-08-21 16:16:54,499][ INFO][PID:26174] Checking for cancel request [2026-08-21 16:16:59,501][ INFO][PID:26174] Checking for cancel request [2026-08-21 16:17:04,509][ INFO][PID:26174] Checking for cancel request [2026-08-21 16:17:09,510][ INFO][PID:26174] Checking for cancel request [2026-08-21 16:17:14,513][ INFO][PID:26174] Checking for cancel request [2026-08-21 16:17:19,515][ INFO][PID:26174] Checking for cancel request [2026-08-21 16:17:24,518][ INFO][PID:26174] Checking for cancel request [2026-08-21 16:17:29,521][ INFO][PID:26174] Checking for cancel request [2026-08-21 16:17:34,523][ INFO][PID:26174] Checking for cancel request [2026-08-21 16:17:39,527][ INFO][PID:26174] Checking for cancel request [2026-08-21 16:17:44,528][ INFO][PID:26174] Checking for cancel request [2026-08-21 16:17:49,550][ INFO][PID:26174] Periodic builder liveness probe: alive [2026-08-21 16:17:49,551][ INFO][PID:26174] Checking for cancel request [2026-08-21 16:17:54,555][ INFO][PID:26174] Checking for cancel request [2026-08-21 16:17:59,558][ INFO][PID:26174] Checking for cancel request [2026-08-21 16:18:04,559][ INFO][PID:26174] Checking for cancel request [2026-08-21 16:18:09,560][ INFO][PID:26174] Checking for cancel request [2026-08-21 16:18:14,562][ INFO][PID:26174] Checking for cancel request [2026-08-21 16:18:19,563][ INFO][PID:26174] Checking for cancel request [2026-08-21 16:18:24,566][ INFO][PID:26174] Checking for cancel request [2026-08-21 16:18:29,567][ INFO][PID:26174] Checking for cancel request [2026-08-21 16:18:34,569][ INFO][PID:26174] Checking for cancel request [2026-08-21 16:18:39,570][ INFO][PID:26174] Checking for cancel request [2026-08-21 16:18:44,572][ INFO][PID:26174] Checking for cancel request [2026-08-21 16:18:49,573][ INFO][PID:26174] Checking for cancel request [2026-08-21 16:18:54,575][ INFO][PID:26174] Checking for cancel request [2026-08-21 16:18:59,589][ INFO][PID:26174] Checking for cancel request [2026-08-21 16:19:04,591][ INFO][PID:26174] Checking for cancel request [2026-08-21 16:19:09,592][ INFO][PID:26174] Checking for cancel request [2026-08-21 16:19:10,957][ INFO][PID:26174] Downloading results from builder [2026-08-21 16:19:10,959][ INFO][PID:26174] rsyncing of mockbuilder@[2620:52:6:1161:dead:beef:cafe:c107]:/var/lib/copr-rpmbuild/results/ to /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5539/srpm-builds/10888959 started [2026-08-21 16:19:10,962][ INFO][PID:26174] 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:c107]:/var/lib/copr-rpmbuild/results/ /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5539/srpm-builds/10888959/ &> /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5539/srpm-builds/10888959/build-10888959.rsync.log [2026-08-21 16:20:09,042][ INFO][PID:26174] rsyncing finished. [2026-08-21 16:20:09,043][ INFO][PID:26174] VM Release request [2026-08-21 16:20:09,071][ INFO][PID:26174] Searching for 'success' file in resultdir [2026-08-21 16:20:09,073][ INFO][PID:26174] Getting build details [2026-08-21 16:20:09,074][ INFO][PID:26174] Retrieving SRPM info from /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5539/srpm-builds/10888959 [2026-08-21 16:20:09,077][ INFO][PID:26174] SRPM URL: https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5539/srpm-builds/10888959/Sunshine-0.0.5539-1.src.rpm [2026-08-21 16:20:09,079][ INFO][PID:26174] build details: {'srpm_url': 'https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5539/srpm-builds/10888959/Sunshine-0.0.5539-1.src.rpm', 'pkg_name': 'Sunshine', 'pkg_version': '0.0.5539-1'} [2026-08-21 16:20:09,081][ INFO][PID:26174] Finished build: id=10888959 failed=False timeout=108000 destdir=/var/lib/copr/public_html/results/lizardbyte/pulls:pr:5539 chroot=srpm-builds [2026-08-21 16:20:09,082][ INFO][PID:26174] Worker succeeded build, took 746.4872851371765 [2026-08-21 16:20:09,083][ INFO][PID:26174] 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:5539", "submitter": null, "ended_on": 1787329209.0825212, "started_on": 1787328462.595236, "submitted_on": null, "status": 1, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10888959", "build_id": 10888959, "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\": \"tmpgp8ax3fz\", \"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:5539/srpm-builds/10888959/Sunshine-0.0.5539-1.src.rpm", "uses_devel_repo": null, "sandbox": "lizardbyte/pulls--b39bff1d-09bb-411f-8aed-ade685620229", "results": { "architecture_specific_tags": { "fedora-43": {}, "fedora-44": {}, "fedora-45": {}, "fedora-rawhide": {} }, "name": "Sunshine", "epoch": null, "version": "0.0.5539", "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:5539", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5539", "result_dir": "10888959", "built_packages": "", "tags": [ "arch_x86_64" ], "rpmeta_prediction": null, "pkg_version": "0.0.5539-1", "id": 10888959, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2026-08-21 16:20:09,138][ INFO][PID:26174] Sending fedora-messaging bus message in build.end [2026-08-21 16:20:09,197][ INFO][PID:26174] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5539/srpm-builds/10888959/builder-live.log by gzip [2026-08-21 16:20:09,201][ INFO][PID:26174] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5539/srpm-builds/10888959/builder-live.log' as PID 168594 [2026-08-21 16:20:09,245][ INFO][PID:26174] Finished after 0 seconds with exit code 0 (gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5539/srpm-builds/10888959/builder-live.log) [2026-08-21 16:20:09,246][ INFO][PID:26174] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5539/srpm-builds/10888959/backend.log by gzip [2026-08-21 16:20:09,248][ INFO][PID:26174] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5539/srpm-builds/10888959/backend.log' as PID 168603