[2026-07-15 02:12:52,898][ INFO][PID:3529029] Marking build as starting [2026-07-15 02:12:52,948][ INFO][PID:3529029] Checking for cancel request [2026-07-15 02:12:52,951][ INFO][PID:3529029] VM allocation process starts [2026-07-15 02:12:52,963][ INFO][PID:3529029] Trying to allocate VM: ResallocHost, ticket_id=3906362, requested_tags=['arch_x86_64', 'copr_builder'] [2026-07-15 02:12:57,966][ INFO][PID:3529029] Checking for cancel request [2026-07-15 02:13:02,971][ INFO][PID:3529029] Checking for cancel request [2026-07-15 02:13:07,972][ INFO][PID:3529029] Checking for cancel request [2026-07-15 02:13:12,974][ INFO][PID:3529029] Checking for cancel request [2026-07-15 02:13:17,980][ INFO][PID:3529029] Checking for cancel request [2026-07-15 02:13:22,981][ INFO][PID:3529029] Checking for cancel request [2026-07-15 02:13:27,983][ INFO][PID:3529029] Checking for cancel request [2026-07-15 02:13:32,993][ INFO][PID:3529029] Checking for cancel request [2026-07-15 02:13:37,998][ INFO][PID:3529029] Checking for cancel request [2026-07-15 02:13:43,001][ INFO][PID:3529029] Checking for cancel request [2026-07-15 02:13:48,005][ INFO][PID:3529029] Checking for cancel request [2026-07-15 02:13:53,008][ INFO][PID:3529029] Checking for cancel request [2026-07-15 02:13:58,013][ INFO][PID:3529029] Checking for cancel request [2026-07-15 02:14:01,223][ INFO][PID:3529029] Allocated host ResallocHost, ticket_id=3906362, hostname=100.29.14.117, name=aws_x86_64_reserved_prod_13086676_20260715_021228, requested_tags=['arch_x86_64', 'copr_builder'] [2026-07-15 02:14:01,251][ INFO][PID:3529029] Allocating ssh connection to builder [2026-07-15 02:14:01,253][ INFO][PID:3529029] Checking that builder machine is OK [2026-07-15 02:14:01,650][ INFO][PID:3529029] Installed copr-rpmbuild version: 1.8 [2026-07-15 02:14:01,651][ INFO][PID:3529029] Running remote command: copr-builder-ready srpm-builds [2026-07-15 02:14:01,988][ INFO][PID:3529029] Red Hat subscription not needed for srpm-builds Builder is ready to be used [2026-07-15 02:14:01,994][ INFO][PID:3529029] Filling build.info file with builder info [2026-07-15 02:14:02,009][ INFO][PID:3529029] Checking for cancel request [2026-07-15 02:14:02,017][ INFO][PID:3529029] 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": 1784081642.0176628, "submitted_on": null, "status": 3, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10719643", "build_id": 10719643, "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\": \"tmpkpzobueb\", \"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--b1faa832-5385-4b1c-a328-dc3bf45a8180", "results": null, "appstream": false, "allow_user_ssh": null, "ssh_public_keys": null, "storage": null, "repos": [], "background": true, "distributions_in_build": [ "fedora-43", "fedora-44", "fedora-rawhide", "opensuse-leap-15.6" ], "distributions_in_project": [ "fedora-43", "fedora-44", "fedora-rawhide", "opensuse-leap-15.6" ], "destdir": "/var/lib/copr/public_html/results/lizardbyte/pulls:pr:5368", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5368", "result_dir": "10719643", "built_packages": "", "tags": [ "arch_x86_64" ], "rpmeta_prediction": null, "id": 10719643, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2026-07-15 02:14:02,092][ INFO][PID:3529029] Sending fedora-messaging bus message in build.start [2026-07-15 02:14:03,523][ INFO][PID:3529029] Sending fedora-messaging bus message in chroot.start [2026-07-15 02:14:03,582][ INFO][PID:3529029] Starting remote build: copr-rpmbuild --verbose --drop-resultdir --srpm --task-url https://copr.fedorainfracloud.org/backend/get-srpm-build-task/10719643 --detached [2026-07-15 02:14:04,321][ INFO][PID:3529029] The copr-rpmbuild seems started, per: stdout: stderr: Warning: Permanently added '100.29.14.117' (ED25519) to the list of known hosts. [2026-07-15 02:14:04,324][ INFO][PID:3529029] Downloading the builder-live.log file, attempt 1 [2026-07-15 02:14:04,334][ INFO][PID:3529029] Popen command started: ssh -F /home/copr/.ssh/config mockbuilder@100.29.14.117 copr-rpmbuild-log [2026-07-15 02:14:09,355][ INFO][PID:3529029] Periodic builder liveness probe: alive [2026-07-15 02:14:09,357][ INFO][PID:3529029] Checking for cancel request [2026-07-15 02:14:14,366][ INFO][PID:3529029] Checking for cancel request [2026-07-15 02:14:19,369][ INFO][PID:3529029] Checking for cancel request [2026-07-15 02:14:24,372][ INFO][PID:3529029] Checking for cancel request [2026-07-15 02:14:29,377][ INFO][PID:3529029] Checking for cancel request [2026-07-15 02:14:34,381][ INFO][PID:3529029] Checking for cancel request [2026-07-15 02:14:39,384][ INFO][PID:3529029] Checking for cancel request [2026-07-15 02:14:44,391][ INFO][PID:3529029] Checking for cancel request [2026-07-15 02:14:49,395][ INFO][PID:3529029] Checking for cancel request [2026-07-15 02:14:54,398][ INFO][PID:3529029] Checking for cancel request [2026-07-15 02:14:59,400][ INFO][PID:3529029] Checking for cancel request [2026-07-15 02:15:04,406][ INFO][PID:3529029] Checking for cancel request [2026-07-15 02:15:09,419][ INFO][PID:3529029] Checking for cancel request [2026-07-15 02:15:14,422][ INFO][PID:3529029] Checking for cancel request [2026-07-15 02:15:19,428][ INFO][PID:3529029] Checking for cancel request [2026-07-15 02:15:24,444][ INFO][PID:3529029] Checking for cancel request [2026-07-15 02:15:29,445][ INFO][PID:3529029] Checking for cancel request [2026-07-15 02:15:34,448][ INFO][PID:3529029] Checking for cancel request [2026-07-15 02:15:39,469][ INFO][PID:3529029] Checking for cancel request [2026-07-15 02:15:44,474][ INFO][PID:3529029] Checking for cancel request [2026-07-15 02:15:49,475][ INFO][PID:3529029] Checking for cancel request [2026-07-15 02:15:54,477][ INFO][PID:3529029] Checking for cancel request [2026-07-15 02:15:59,479][ INFO][PID:3529029] Checking for cancel request [2026-07-15 02:16:04,484][ INFO][PID:3529029] Checking for cancel request [2026-07-15 02:16:09,486][ INFO][PID:3529029] Checking for cancel request [2026-07-15 02:16:14,488][ INFO][PID:3529029] Checking for cancel request [2026-07-15 02:16:19,491][ INFO][PID:3529029] Checking for cancel request [2026-07-15 02:16:24,495][ INFO][PID:3529029] Checking for cancel request [2026-07-15 02:16:29,496][ INFO][PID:3529029] Checking for cancel request [2026-07-15 02:16:34,498][ INFO][PID:3529029] Checking for cancel request [2026-07-15 02:16:39,499][ INFO][PID:3529029] Checking for cancel request [2026-07-15 02:16:44,501][ INFO][PID:3529029] Checking for cancel request [2026-07-15 02:16:49,511][ INFO][PID:3529029] Checking for cancel request [2026-07-15 02:16:54,512][ INFO][PID:3529029] Checking for cancel request [2026-07-15 02:16:59,518][ INFO][PID:3529029] Checking for cancel request [2026-07-15 02:17:04,520][ INFO][PID:3529029] Checking for cancel request [2026-07-15 02:17:09,532][ INFO][PID:3529029] Checking for cancel request [2026-07-15 02:17:14,534][ INFO][PID:3529029] Checking for cancel request [2026-07-15 02:17:19,547][ INFO][PID:3529029] Checking for cancel request [2026-07-15 02:17:24,577][ INFO][PID:3529029] Checking for cancel request [2026-07-15 02:17:29,579][ INFO][PID:3529029] Checking for cancel request [2026-07-15 02:17:34,581][ INFO][PID:3529029] Checking for cancel request [2026-07-15 02:17:39,582][ INFO][PID:3529029] Checking for cancel request [2026-07-15 02:17:44,584][ INFO][PID:3529029] Checking for cancel request [2026-07-15 02:17:49,585][ INFO][PID:3529029] Checking for cancel request [2026-07-15 02:17:54,588][ INFO][PID:3529029] Checking for cancel request [2026-07-15 02:17:59,600][ INFO][PID:3529029] Checking for cancel request [2026-07-15 02:18:04,602][ INFO][PID:3529029] Checking for cancel request [2026-07-15 02:18:09,614][ INFO][PID:3529029] Checking for cancel request [2026-07-15 02:18:14,618][ INFO][PID:3529029] Checking for cancel request [2026-07-15 02:18:19,622][ INFO][PID:3529029] Checking for cancel request [2026-07-15 02:18:24,624][ INFO][PID:3529029] Checking for cancel request [2026-07-15 02:18:29,627][ INFO][PID:3529029] Checking for cancel request [2026-07-15 02:18:34,631][ INFO][PID:3529029] Checking for cancel request [2026-07-15 02:18:39,650][ INFO][PID:3529029] Checking for cancel request [2026-07-15 02:18:44,661][ INFO][PID:3529029] Checking for cancel request [2026-07-15 02:18:49,663][ INFO][PID:3529029] Checking for cancel request [2026-07-15 02:18:54,665][ INFO][PID:3529029] Checking for cancel request [2026-07-15 02:18:59,667][ INFO][PID:3529029] Checking for cancel request [2026-07-15 02:19:04,668][ INFO][PID:3529029] Checking for cancel request [2026-07-15 02:19:09,669][ INFO][PID:3529029] Checking for cancel request [2026-07-15 02:19:14,671][ INFO][PID:3529029] Checking for cancel request [2026-07-15 02:19:19,672][ INFO][PID:3529029] Checking for cancel request [2026-07-15 02:19:24,674][ INFO][PID:3529029] Checking for cancel request [2026-07-15 02:19:29,675][ INFO][PID:3529029] Checking for cancel request [2026-07-15 02:19:34,827][ INFO][PID:3529029] Checking for cancel request [2026-07-15 02:19:39,828][ INFO][PID:3529029] Checking for cancel request [2026-07-15 02:19:44,830][ INFO][PID:3529029] Checking for cancel request [2026-07-15 02:19:49,848][ INFO][PID:3529029] Checking for cancel request [2026-07-15 02:19:54,850][ INFO][PID:3529029] Checking for cancel request [2026-07-15 02:19:59,851][ INFO][PID:3529029] Checking for cancel request [2026-07-15 02:20:05,006][ INFO][PID:3529029] Checking for cancel request [2026-07-15 02:20:10,031][ INFO][PID:3529029] Checking for cancel request [2026-07-15 02:20:15,035][ INFO][PID:3529029] Checking for cancel request [2026-07-15 02:20:20,037][ INFO][PID:3529029] Checking for cancel request [2026-07-15 02:20:25,060][ INFO][PID:3529029] Checking for cancel request [2026-07-15 02:20:30,062][ INFO][PID:3529029] Checking for cancel request [2026-07-15 02:20:35,068][ INFO][PID:3529029] Checking for cancel request [2026-07-15 02:20:40,117][ INFO][PID:3529029] Checking for cancel request [2026-07-15 02:20:45,237][ INFO][PID:3529029] Checking for cancel request [2026-07-15 02:20:50,240][ INFO][PID:3529029] Checking for cancel request [2026-07-15 02:20:55,293][ INFO][PID:3529029] Checking for cancel request [2026-07-15 02:21:00,433][ INFO][PID:3529029] Checking for cancel request [2026-07-15 02:21:05,437][ INFO][PID:3529029] Checking for cancel request [2026-07-15 02:21:10,439][ INFO][PID:3529029] Checking for cancel request [2026-07-15 02:21:15,695][ INFO][PID:3529029] Checking for cancel request [2026-07-15 02:21:20,706][ INFO][PID:3529029] Checking for cancel request [2026-07-15 02:21:25,764][ INFO][PID:3529029] Checking for cancel request [2026-07-15 02:21:30,794][ INFO][PID:3529029] Checking for cancel request [2026-07-15 02:21:35,799][ INFO][PID:3529029] Checking for cancel request [2026-07-15 02:21:40,823][ INFO][PID:3529029] Checking for cancel request [2026-07-15 02:21:45,858][ INFO][PID:3529029] Checking for cancel request [2026-07-15 02:21:50,868][ INFO][PID:3529029] Checking for cancel request [2026-07-15 02:21:55,885][ INFO][PID:3529029] Checking for cancel request [2026-07-15 02:22:00,887][ INFO][PID:3529029] Checking for cancel request [2026-07-15 02:22:05,889][ INFO][PID:3529029] Checking for cancel request [2026-07-15 02:22:10,892][ INFO][PID:3529029] Checking for cancel request [2026-07-15 02:22:15,895][ INFO][PID:3529029] Checking for cancel request [2026-07-15 02:22:20,897][ INFO][PID:3529029] Checking for cancel request [2026-07-15 02:22:25,899][ INFO][PID:3529029] Checking for cancel request [2026-07-15 02:22:30,901][ INFO][PID:3529029] Checking for cancel request [2026-07-15 02:22:35,903][ INFO][PID:3529029] Checking for cancel request [2026-07-15 02:22:40,905][ INFO][PID:3529029] Checking for cancel request [2026-07-15 02:22:45,921][ INFO][PID:3529029] Checking for cancel request [2026-07-15 02:22:50,924][ INFO][PID:3529029] Checking for cancel request [2026-07-15 02:22:56,026][ INFO][PID:3529029] Checking for cancel request [2026-07-15 02:23:01,043][ INFO][PID:3529029] Checking for cancel request [2026-07-15 02:23:06,045][ INFO][PID:3529029] Checking for cancel request [2026-07-15 02:23:11,048][ INFO][PID:3529029] Checking for cancel request [2026-07-15 02:23:16,092][ INFO][PID:3529029] Checking for cancel request [2026-07-15 02:23:21,097][ INFO][PID:3529029] Checking for cancel request [2026-07-15 02:23:26,105][ INFO][PID:3529029] Checking for cancel request [2026-07-15 02:23:31,108][ INFO][PID:3529029] Checking for cancel request [2026-07-15 02:23:36,111][ INFO][PID:3529029] Checking for cancel request [2026-07-15 02:23:41,112][ INFO][PID:3529029] Checking for cancel request [2026-07-15 02:23:46,121][ INFO][PID:3529029] Checking for cancel request [2026-07-15 02:23:51,123][ INFO][PID:3529029] Checking for cancel request [2026-07-15 02:23:56,177][ INFO][PID:3529029] Checking for cancel request [2026-07-15 02:24:01,182][ INFO][PID:3529029] Checking for cancel request [2026-07-15 02:24:06,394][ INFO][PID:3529029] Checking for cancel request [2026-07-15 02:24:11,414][ INFO][PID:3529029] Periodic builder liveness probe: alive [2026-07-15 02:24:11,421][ INFO][PID:3529029] Checking for cancel request [2026-07-15 02:24:16,423][ INFO][PID:3529029] Checking for cancel request [2026-07-15 02:24:21,428][ INFO][PID:3529029] Checking for cancel request [2026-07-15 02:24:26,430][ INFO][PID:3529029] Checking for cancel request [2026-07-15 02:24:31,431][ INFO][PID:3529029] Checking for cancel request [2026-07-15 02:24:36,528][ INFO][PID:3529029] Checking for cancel request [2026-07-15 02:24:41,051][ INFO][PID:3529029] Downloading results from builder [2026-07-15 02:24:41,085][ INFO][PID:3529029] rsyncing of mockbuilder@100.29.14.117:/var/lib/copr-rpmbuild/results/ to /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5368/srpm-builds/10719643 started [2026-07-15 02:24:41,104][ INFO][PID:3529029] Popen command started: /usr/bin/rsync -rltDvH --chmod=D755,F644 -e 'ssh -F /home/copr/.ssh/config' mockbuilder@100.29.14.117:/var/lib/copr-rpmbuild/results/ /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5368/srpm-builds/10719643/ &> /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5368/srpm-builds/10719643/build-10719643.rsync.log [2026-07-15 02:24:46,067][ INFO][PID:3529029] rsyncing finished. [2026-07-15 02:24:46,069][ INFO][PID:3529029] VM Release request [2026-07-15 02:24:46,091][ INFO][PID:3529029] Searching for 'success' file in resultdir [2026-07-15 02:24:46,125][ INFO][PID:3529029] Getting build details [2026-07-15 02:24:46,129][ INFO][PID:3529029] Retrieving SRPM info from /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5368/srpm-builds/10719643 [2026-07-15 02:24:46,173][ INFO][PID:3529029] SRPM URL: https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5368/srpm-builds/10719643/Sunshine-0.0.5368-1.src.rpm [2026-07-15 02:24:46,176][ INFO][PID:3529029] build details: {'srpm_url': 'https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5368/srpm-builds/10719643/Sunshine-0.0.5368-1.src.rpm', 'pkg_name': 'Sunshine', 'pkg_version': '0.0.5368-1'} [2026-07-15 02:24:46,186][ INFO][PID:3529029] Finished build: id=10719643 failed=False timeout=108000 destdir=/var/lib/copr/public_html/results/lizardbyte/pulls:pr:5368 chroot=srpm-builds [2026-07-15 02:24:46,259][ INFO][PID:3529029] Worker succeeded build, took 644.2416086196899 [2026-07-15 02:24:46,264][ INFO][PID:3529029] 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": 1784082286.2592714, "started_on": 1784081642.0176628, "submitted_on": null, "status": 1, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10719643", "build_id": 10719643, "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\": \"tmpkpzobueb\", \"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/10719643/Sunshine-0.0.5368-1.src.rpm", "uses_devel_repo": null, "sandbox": "lizardbyte/pulls--b1faa832-5385-4b1c-a328-dc3bf45a8180", "results": { "architecture_specific_tags": { "fedora-43": {}, "fedora-44": {}, "fedora-rawhide": {}, "opensuse-leap-15.6": {} }, "name": "Sunshine", "epoch": null, "version": "0.0.5368", "release": "1" }, "appstream": false, "allow_user_ssh": null, "ssh_public_keys": null, "storage": null, "repos": [], "background": true, "distributions_in_build": [ "fedora-43", "fedora-44", "fedora-rawhide", "opensuse-leap-15.6" ], "distributions_in_project": [ "fedora-43", "fedora-44", "fedora-rawhide", "opensuse-leap-15.6" ], "destdir": "/var/lib/copr/public_html/results/lizardbyte/pulls:pr:5368", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5368", "result_dir": "10719643", "built_packages": "", "tags": [ "arch_x86_64" ], "rpmeta_prediction": null, "pkg_version": "0.0.5368-1", "id": 10719643, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2026-07-15 02:24:47,003][ INFO][PID:3529029] Sending fedora-messaging bus message in build.end [2026-07-15 02:24:47,461][ INFO][PID:3529029] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5368/srpm-builds/10719643/builder-live.log by gzip [2026-07-15 02:24:47,475][ INFO][PID:3529029] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5368/srpm-builds/10719643/builder-live.log' as PID 3628136 [2026-07-15 02:24:47,515][ INFO][PID:3529029] Finished after 0 seconds with exit code 0 (gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5368/srpm-builds/10719643/builder-live.log) [2026-07-15 02:24:47,528][ INFO][PID:3529029] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5368/srpm-builds/10719643/backend.log by gzip [2026-07-15 02:24:47,530][ INFO][PID:3529029] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5368/srpm-builds/10719643/backend.log' as PID 3628140