[2026-08-10 18:39:51,717][ INFO][PID:2263361] Marking build as starting [2026-08-10 18:39:51,767][ INFO][PID:2263361] Checking for cancel request [2026-08-10 18:39:51,770][ INFO][PID:2263361] VM allocation process starts [2026-08-10 18:39:51,781][ INFO][PID:2263361] Trying to allocate VM: ResallocHost, ticket_id=4381650, requested_tags=['arch_x86_64', 'copr_builder'] [2026-08-10 18:39:54,799][ INFO][PID:2263361] Allocated host ResallocHost, ticket_id=4381650, hostname=35.153.106.240, name=aws_x86_64_reserved_prod_17684677_20260810_182146, requested_tags=['arch_x86_64', 'copr_builder'] [2026-08-10 18:39:54,801][ INFO][PID:2263361] Allocating ssh connection to builder [2026-08-10 18:39:54,803][ INFO][PID:2263361] Checking that builder machine is OK [2026-08-10 18:39:55,153][ INFO][PID:2263361] Installed copr-rpmbuild version: 1.8 [2026-08-10 18:39:55,154][ INFO][PID:2263361] Running remote command: copr-builder-ready srpm-builds [2026-08-10 18:39:55,347][ INFO][PID:2263361] Red Hat subscription not needed for srpm-builds Builder is ready to be used [2026-08-10 18:39:55,349][ INFO][PID:2263361] Filling build.info file with builder info [2026-08-10 18:39:55,350][ INFO][PID:2263361] Checking for cancel request [2026-08-10 18:39:55,352][ INFO][PID:2263361] 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": 1786387195.352356, "submitted_on": null, "status": 3, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10843638", "build_id": 10843638, "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\": \"tmpq_dyzy5e\", \"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--0ee61771-decf-4aa9-bd8b-c0b05731413d", "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" ], "distributions_in_project": [ "fedora-43", "fedora-44", "fedora-rawhide" ], "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": "10843638", "built_packages": "", "tags": [ "arch_x86_64" ], "rpmeta_prediction": null, "id": 10843638, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2026-08-10 18:39:55,399][ INFO][PID:2263361] Sending fedora-messaging bus message in build.start [2026-08-10 18:39:55,973][ INFO][PID:2263361] Sending fedora-messaging bus message in chroot.start [2026-08-10 18:39:56,009][ INFO][PID:2263361] Starting remote build: copr-rpmbuild --verbose --drop-resultdir --srpm --task-url https://copr.fedorainfracloud.org/backend/get-srpm-build-task/10843638 --detached [2026-08-10 18:39:56,506][ INFO][PID:2263361] The copr-rpmbuild seems started, per: stdout: stderr: Warning: Permanently added '35.153.106.240' (ED25519) to the list of known hosts. [2026-08-10 18:39:56,508][ INFO][PID:2263361] Downloading the builder-live.log file, attempt 1 [2026-08-10 18:39:56,511][ INFO][PID:2263361] Popen command started: ssh -F /home/copr/.ssh/config mockbuilder@35.153.106.240 copr-rpmbuild-log [2026-08-10 18:40:01,518][ INFO][PID:2263361] Periodic builder liveness probe: alive [2026-08-10 18:40:01,519][ INFO][PID:2263361] Checking for cancel request [2026-08-10 18:40:06,521][ INFO][PID:2263361] Checking for cancel request [2026-08-10 18:40:11,527][ INFO][PID:2263361] Checking for cancel request [2026-08-10 18:40:16,528][ INFO][PID:2263361] Checking for cancel request [2026-08-10 18:40:21,532][ INFO][PID:2263361] Checking for cancel request [2026-08-10 18:40:26,534][ INFO][PID:2263361] Checking for cancel request [2026-08-10 18:40:31,536][ INFO][PID:2263361] Checking for cancel request [2026-08-10 18:40:36,537][ INFO][PID:2263361] Checking for cancel request [2026-08-10 18:40:41,540][ INFO][PID:2263361] Checking for cancel request [2026-08-10 18:40:46,542][ INFO][PID:2263361] Checking for cancel request [2026-08-10 18:40:51,544][ INFO][PID:2263361] Checking for cancel request [2026-08-10 18:40:56,549][ INFO][PID:2263361] Checking for cancel request [2026-08-10 18:41:01,551][ INFO][PID:2263361] Checking for cancel request [2026-08-10 18:41:06,555][ INFO][PID:2263361] Checking for cancel request [2026-08-10 18:41:11,557][ INFO][PID:2263361] Checking for cancel request [2026-08-10 18:41:16,559][ INFO][PID:2263361] Checking for cancel request [2026-08-10 18:41:21,561][ INFO][PID:2263361] Checking for cancel request [2026-08-10 18:41:26,563][ INFO][PID:2263361] Checking for cancel request [2026-08-10 18:41:31,564][ INFO][PID:2263361] Checking for cancel request [2026-08-10 18:41:36,566][ INFO][PID:2263361] Checking for cancel request [2026-08-10 18:41:41,569][ INFO][PID:2263361] Checking for cancel request [2026-08-10 18:41:46,573][ INFO][PID:2263361] Checking for cancel request [2026-08-10 18:41:51,575][ INFO][PID:2263361] Checking for cancel request [2026-08-10 18:41:56,576][ INFO][PID:2263361] Checking for cancel request [2026-08-10 18:42:01,578][ INFO][PID:2263361] Checking for cancel request [2026-08-10 18:42:06,580][ INFO][PID:2263361] Checking for cancel request [2026-08-10 18:42:11,581][ INFO][PID:2263361] Checking for cancel request [2026-08-10 18:42:16,583][ INFO][PID:2263361] Checking for cancel request [2026-08-10 18:42:21,589][ INFO][PID:2263361] Checking for cancel request [2026-08-10 18:42:26,591][ INFO][PID:2263361] Checking for cancel request [2026-08-10 18:42:31,595][ INFO][PID:2263361] Checking for cancel request [2026-08-10 18:42:36,597][ INFO][PID:2263361] Checking for cancel request [2026-08-10 18:42:41,598][ INFO][PID:2263361] Checking for cancel request [2026-08-10 18:42:46,600][ INFO][PID:2263361] Checking for cancel request [2026-08-10 18:42:51,603][ INFO][PID:2263361] Checking for cancel request [2026-08-10 18:42:56,605][ INFO][PID:2263361] Checking for cancel request [2026-08-10 18:43:01,606][ INFO][PID:2263361] Checking for cancel request [2026-08-10 18:43:06,611][ INFO][PID:2263361] Checking for cancel request [2026-08-10 18:43:11,625][ INFO][PID:2263361] Checking for cancel request [2026-08-10 18:43:16,664][ INFO][PID:2263361] Checking for cancel request [2026-08-10 18:43:21,668][ INFO][PID:2263361] Checking for cancel request [2026-08-10 18:43:26,675][ INFO][PID:2263361] Checking for cancel request [2026-08-10 18:43:31,677][ INFO][PID:2263361] Checking for cancel request [2026-08-10 18:43:36,712][ INFO][PID:2263361] Checking for cancel request [2026-08-10 18:43:41,714][ INFO][PID:2263361] Checking for cancel request [2026-08-10 18:43:46,726][ INFO][PID:2263361] Checking for cancel request [2026-08-10 18:43:51,729][ INFO][PID:2263361] Checking for cancel request [2026-08-10 18:43:56,731][ INFO][PID:2263361] Checking for cancel request [2026-08-10 18:44:01,733][ INFO][PID:2263361] Checking for cancel request [2026-08-10 18:44:06,737][ INFO][PID:2263361] Checking for cancel request [2026-08-10 18:44:11,739][ INFO][PID:2263361] Checking for cancel request [2026-08-10 18:44:16,757][ INFO][PID:2263361] Checking for cancel request [2026-08-10 18:44:21,798][ INFO][PID:2263361] Checking for cancel request [2026-08-10 18:44:26,810][ INFO][PID:2263361] Checking for cancel request [2026-08-10 18:44:31,821][ INFO][PID:2263361] Checking for cancel request [2026-08-10 18:44:36,902][ INFO][PID:2263361] Checking for cancel request [2026-08-10 18:44:41,986][ INFO][PID:2263361] Checking for cancel request [2026-08-10 18:44:46,991][ INFO][PID:2263361] Checking for cancel request [2026-08-10 18:44:51,998][ INFO][PID:2263361] Checking for cancel request [2026-08-10 18:44:57,026][ INFO][PID:2263361] Checking for cancel request [2026-08-10 18:45:02,030][ INFO][PID:2263361] Checking for cancel request [2026-08-10 18:45:07,033][ INFO][PID:2263361] Checking for cancel request [2026-08-10 18:45:12,046][ INFO][PID:2263361] Checking for cancel request [2026-08-10 18:45:17,087][ INFO][PID:2263361] Checking for cancel request [2026-08-10 18:45:22,091][ INFO][PID:2263361] Checking for cancel request [2026-08-10 18:45:27,092][ INFO][PID:2263361] Checking for cancel request [2026-08-10 18:45:32,109][ INFO][PID:2263361] Checking for cancel request [2026-08-10 18:45:37,110][ INFO][PID:2263361] Checking for cancel request [2026-08-10 18:45:42,113][ INFO][PID:2263361] Checking for cancel request [2026-08-10 18:45:47,119][ INFO][PID:2263361] Checking for cancel request [2026-08-10 18:45:52,121][ INFO][PID:2263361] Checking for cancel request [2026-08-10 18:45:57,202][ INFO][PID:2263361] Checking for cancel request [2026-08-10 18:46:02,250][ INFO][PID:2263361] Checking for cancel request [2026-08-10 18:46:07,253][ INFO][PID:2263361] Checking for cancel request [2026-08-10 18:46:12,257][ INFO][PID:2263361] Checking for cancel request [2026-08-10 18:46:17,262][ INFO][PID:2263361] Checking for cancel request [2026-08-10 18:46:22,263][ INFO][PID:2263361] Checking for cancel request [2026-08-10 18:46:27,265][ INFO][PID:2263361] Checking for cancel request [2026-08-10 18:46:32,314][ INFO][PID:2263361] Checking for cancel request [2026-08-10 18:46:37,317][ INFO][PID:2263361] Checking for cancel request [2026-08-10 18:46:42,321][ INFO][PID:2263361] Checking for cancel request [2026-08-10 18:46:47,331][ INFO][PID:2263361] Checking for cancel request [2026-08-10 18:46:52,335][ INFO][PID:2263361] Checking for cancel request [2026-08-10 18:46:57,336][ INFO][PID:2263361] Checking for cancel request [2026-08-10 18:47:02,339][ INFO][PID:2263361] Checking for cancel request [2026-08-10 18:47:07,341][ INFO][PID:2263361] Checking for cancel request [2026-08-10 18:47:12,342][ INFO][PID:2263361] Checking for cancel request [2026-08-10 18:47:17,345][ INFO][PID:2263361] Checking for cancel request [2026-08-10 18:47:22,353][ INFO][PID:2263361] Checking for cancel request [2026-08-10 18:47:27,369][ INFO][PID:2263361] Checking for cancel request [2026-08-10 18:47:32,372][ INFO][PID:2263361] Checking for cancel request [2026-08-10 18:47:37,373][ INFO][PID:2263361] Checking for cancel request [2026-08-10 18:47:42,375][ INFO][PID:2263361] Checking for cancel request [2026-08-10 18:47:47,376][ INFO][PID:2263361] Checking for cancel request [2026-08-10 18:47:52,377][ INFO][PID:2263361] Checking for cancel request [2026-08-10 18:47:57,465][ INFO][PID:2263361] Checking for cancel request [2026-08-10 18:48:02,466][ INFO][PID:2263361] Checking for cancel request [2026-08-10 18:48:07,468][ INFO][PID:2263361] Checking for cancel request [2026-08-10 18:48:12,530][ INFO][PID:2263361] Checking for cancel request [2026-08-10 18:48:17,936][ INFO][PID:2263361] Checking for cancel request [2026-08-10 18:48:23,056][ INFO][PID:2263361] Checking for cancel request [2026-08-10 18:48:28,058][ INFO][PID:2263361] Checking for cancel request [2026-08-10 18:48:33,062][ INFO][PID:2263361] Checking for cancel request [2026-08-10 18:48:38,064][ INFO][PID:2263361] Checking for cancel request [2026-08-10 18:48:43,065][ INFO][PID:2263361] Checking for cancel request [2026-08-10 18:48:48,067][ INFO][PID:2263361] Checking for cancel request [2026-08-10 18:48:53,068][ INFO][PID:2263361] Checking for cancel request [2026-08-10 18:48:58,070][ INFO][PID:2263361] Checking for cancel request [2026-08-10 18:49:03,071][ INFO][PID:2263361] Checking for cancel request [2026-08-10 18:49:08,073][ INFO][PID:2263361] Checking for cancel request [2026-08-10 18:49:13,075][ INFO][PID:2263361] Checking for cancel request [2026-08-10 18:49:18,076][ INFO][PID:2263361] Checking for cancel request [2026-08-10 18:49:23,077][ INFO][PID:2263361] Checking for cancel request [2026-08-10 18:49:28,079][ INFO][PID:2263361] Checking for cancel request [2026-08-10 18:49:33,080][ INFO][PID:2263361] Checking for cancel request [2026-08-10 18:49:38,082][ INFO][PID:2263361] Checking for cancel request [2026-08-10 18:49:43,084][ INFO][PID:2263361] Checking for cancel request [2026-08-10 18:49:48,085][ INFO][PID:2263361] Checking for cancel request [2026-08-10 18:49:53,087][ INFO][PID:2263361] Checking for cancel request [2026-08-10 18:49:58,089][ INFO][PID:2263361] Checking for cancel request [2026-08-10 18:50:03,101][ INFO][PID:2263361] Periodic builder liveness probe: alive [2026-08-10 18:50:03,102][ INFO][PID:2263361] Checking for cancel request [2026-08-10 18:50:08,103][ INFO][PID:2263361] Checking for cancel request [2026-08-10 18:50:13,104][ INFO][PID:2263361] Checking for cancel request [2026-08-10 18:50:18,106][ INFO][PID:2263361] Checking for cancel request [2026-08-10 18:50:23,108][ INFO][PID:2263361] Checking for cancel request [2026-08-10 18:50:28,110][ INFO][PID:2263361] Checking for cancel request [2026-08-10 18:50:33,111][ INFO][PID:2263361] Checking for cancel request [2026-08-10 18:50:38,114][ INFO][PID:2263361] Checking for cancel request [2026-08-10 18:50:43,117][ INFO][PID:2263361] Checking for cancel request [2026-08-10 18:50:48,121][ INFO][PID:2263361] Checking for cancel request [2026-08-10 18:50:53,123][ INFO][PID:2263361] Checking for cancel request [2026-08-10 18:50:58,141][ INFO][PID:2263361] Checking for cancel request [2026-08-10 18:50:59,970][ INFO][PID:2263361] Downloading results from builder [2026-08-10 18:50:59,971][ INFO][PID:2263361] rsyncing of mockbuilder@35.153.106.240:/var/lib/copr-rpmbuild/results/ to /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5368/srpm-builds/10843638 started [2026-08-10 18:50:59,973][ INFO][PID:2263361] Popen command started: /usr/bin/rsync -rltDvH --chmod=D755,F644 -e 'ssh -F /home/copr/.ssh/config' mockbuilder@35.153.106.240:/var/lib/copr-rpmbuild/results/ /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5368/srpm-builds/10843638/ &> /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5368/srpm-builds/10843638/build-10843638.rsync.log [2026-08-10 18:51:05,534][ INFO][PID:2263361] rsyncing finished. [2026-08-10 18:51:05,535][ INFO][PID:2263361] VM Release request [2026-08-10 18:51:05,543][ INFO][PID:2263361] Searching for 'success' file in resultdir [2026-08-10 18:51:05,544][ INFO][PID:2263361] Getting build details [2026-08-10 18:51:05,544][ INFO][PID:2263361] Retrieving SRPM info from /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5368/srpm-builds/10843638 [2026-08-10 18:51:05,545][ INFO][PID:2263361] SRPM URL: https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5368/srpm-builds/10843638/Sunshine-0.0.5368-1.src.rpm [2026-08-10 18:51:05,546][ INFO][PID:2263361] build details: {'srpm_url': 'https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5368/srpm-builds/10843638/Sunshine-0.0.5368-1.src.rpm', 'pkg_name': 'Sunshine', 'pkg_version': '0.0.5368-1'} [2026-08-10 18:51:05,546][ INFO][PID:2263361] Finished build: id=10843638 failed=False timeout=108000 destdir=/var/lib/copr/public_html/results/lizardbyte/pulls:pr:5368 chroot=srpm-builds [2026-08-10 18:51:05,549][ INFO][PID:2263361] Worker succeeded build, took 670.1968097686768 [2026-08-10 18:51:05,550][ INFO][PID:2263361] 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": 1786387865.5491657, "started_on": 1786387195.352356, "submitted_on": null, "status": 1, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10843638", "build_id": 10843638, "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\": \"tmpq_dyzy5e\", \"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/10843638/Sunshine-0.0.5368-1.src.rpm", "uses_devel_repo": null, "sandbox": "lizardbyte/pulls--0ee61771-decf-4aa9-bd8b-c0b05731413d", "results": { "architecture_specific_tags": { "fedora-43": {}, "fedora-44": {}, "fedora-rawhide": {} }, "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" ], "distributions_in_project": [ "fedora-43", "fedora-44", "fedora-rawhide" ], "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": "10843638", "built_packages": "", "tags": [ "arch_x86_64" ], "rpmeta_prediction": null, "pkg_version": "0.0.5368-1", "id": 10843638, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2026-08-10 18:51:05,600][ INFO][PID:2263361] Sending fedora-messaging bus message in build.end [2026-08-10 18:51:05,629][ INFO][PID:2263361] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5368/srpm-builds/10843638/builder-live.log by gzip [2026-08-10 18:51:05,631][ INFO][PID:2263361] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5368/srpm-builds/10843638/builder-live.log' as PID 2338574 [2026-08-10 18:51:05,666][ INFO][PID:2263361] Finished after 0 seconds with exit code 0 (gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5368/srpm-builds/10843638/builder-live.log) [2026-08-10 18:51:05,667][ INFO][PID:2263361] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5368/srpm-builds/10843638/backend.log by gzip [2026-08-10 18:51:05,668][ INFO][PID:2263361] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5368/srpm-builds/10843638/backend.log' as PID 2338579