[2026-08-20 14:21:20,359][ INFO][PID:627596] Marking build as starting [2026-08-20 14:21:20,418][ INFO][PID:627596] Checking for cancel request [2026-08-20 14:21:20,420][ INFO][PID:627596] VM allocation process starts [2026-08-20 14:21:20,442][ INFO][PID:627596] Trying to allocate VM: ResallocHost, ticket_id=4540405, requested_tags=['arch_x86_64', 'copr_builder'] [2026-08-20 14:21:25,444][ INFO][PID:627596] Checking for cancel request [2026-08-20 14:21:30,445][ INFO][PID:627596] Checking for cancel request [2026-08-20 14:21:32,475][ INFO][PID:627596] Allocated host ResallocHost, ticket_id=4540405, hostname=100.48.47.168, name=aws_x86_64_reserved_prod_19520824_20260820_141954, requested_tags=['arch_x86_64', 'copr_builder'] [2026-08-20 14:21:32,476][ INFO][PID:627596] Allocating ssh connection to builder [2026-08-20 14:21:32,476][ INFO][PID:627596] Checking that builder machine is OK [2026-08-20 14:21:32,798][ INFO][PID:627596] Installed copr-rpmbuild version: 1.9 [2026-08-20 14:21:32,799][ INFO][PID:627596] Running remote command: copr-builder-ready srpm-builds [2026-08-20 14:21:32,980][ INFO][PID:627596] Red Hat subscription not needed for srpm-builds Builder is ready to be used [2026-08-20 14:21:32,983][ INFO][PID:627596] Filling build.info file with builder info [2026-08-20 14:21:32,984][ INFO][PID:627596] Checking for cancel request [2026-08-20 14:21:32,986][ INFO][PID:627596] 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:5504", "submitter": null, "ended_on": null, "started_on": 1787235692.9859715, "submitted_on": null, "status": 3, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10884583", "build_id": 10884583, "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\": \"tmphl3ay1rn\", \"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--8deb91cf-2557-4ea0-8753-185369c461b2", "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:5504", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5504", "result_dir": "10884583", "built_packages": "", "tags": [ "arch_x86_64" ], "rpmeta_prediction": null, "id": 10884583, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2026-08-20 14:21:33,025][ INFO][PID:627596] Sending fedora-messaging bus message in build.start [2026-08-20 14:21:33,960][ INFO][PID:627596] Sending fedora-messaging bus message in chroot.start [2026-08-20 14:21:34,043][ INFO][PID:627596] Starting remote build: copr-rpmbuild --verbose --drop-resultdir --srpm --task-url https://copr.fedorainfracloud.org/backend/get-srpm-build-task/10884583 --detached [2026-08-20 14:21:34,511][ INFO][PID:627596] The copr-rpmbuild seems started, per: stdout: stderr: Warning: Permanently added '100.48.47.168' (ED25519) to the list of known hosts. [2026-08-20 14:21:34,512][ INFO][PID:627596] Downloading the builder-live.log file, attempt 1 [2026-08-20 14:21:34,514][ INFO][PID:627596] Popen command started: ssh -F /home/copr/.ssh/config mockbuilder@100.48.47.168 copr-rpmbuild-log [2026-08-20 14:21:39,557][ INFO][PID:627596] Periodic builder liveness probe: alive [2026-08-20 14:21:39,562][ INFO][PID:627596] Checking for cancel request [2026-08-20 14:21:44,572][ INFO][PID:627596] Checking for cancel request [2026-08-20 14:21:49,584][ INFO][PID:627596] Checking for cancel request [2026-08-20 14:21:54,588][ INFO][PID:627596] Checking for cancel request [2026-08-20 14:21:59,589][ INFO][PID:627596] Checking for cancel request [2026-08-20 14:22:04,591][ INFO][PID:627596] Checking for cancel request [2026-08-20 14:22:09,596][ INFO][PID:627596] Checking for cancel request [2026-08-20 14:22:14,599][ INFO][PID:627596] Checking for cancel request [2026-08-20 14:22:19,601][ INFO][PID:627596] Checking for cancel request [2026-08-20 14:22:24,602][ INFO][PID:627596] Checking for cancel request [2026-08-20 14:22:29,603][ INFO][PID:627596] Checking for cancel request [2026-08-20 14:22:34,605][ INFO][PID:627596] Checking for cancel request [2026-08-20 14:22:39,607][ INFO][PID:627596] Checking for cancel request [2026-08-20 14:22:44,608][ INFO][PID:627596] Checking for cancel request [2026-08-20 14:22:49,610][ INFO][PID:627596] Checking for cancel request [2026-08-20 14:22:54,612][ INFO][PID:627596] Checking for cancel request [2026-08-20 14:22:59,613][ INFO][PID:627596] Checking for cancel request [2026-08-20 14:23:04,615][ INFO][PID:627596] Checking for cancel request [2026-08-20 14:23:09,616][ INFO][PID:627596] Checking for cancel request [2026-08-20 14:23:14,618][ INFO][PID:627596] Checking for cancel request [2026-08-20 14:23:19,619][ INFO][PID:627596] Checking for cancel request [2026-08-20 14:23:24,621][ INFO][PID:627596] Checking for cancel request [2026-08-20 14:23:29,623][ INFO][PID:627596] Checking for cancel request [2026-08-20 14:23:34,624][ INFO][PID:627596] Checking for cancel request [2026-08-20 14:23:39,626][ INFO][PID:627596] Checking for cancel request [2026-08-20 14:23:44,628][ INFO][PID:627596] Checking for cancel request [2026-08-20 14:23:49,629][ INFO][PID:627596] Checking for cancel request [2026-08-20 14:23:54,631][ INFO][PID:627596] Checking for cancel request [2026-08-20 14:23:59,632][ INFO][PID:627596] Checking for cancel request [2026-08-20 14:24:04,634][ INFO][PID:627596] Checking for cancel request [2026-08-20 14:24:09,636][ INFO][PID:627596] Checking for cancel request [2026-08-20 14:24:14,640][ INFO][PID:627596] Checking for cancel request [2026-08-20 14:24:19,641][ INFO][PID:627596] Checking for cancel request [2026-08-20 14:24:24,643][ INFO][PID:627596] Checking for cancel request [2026-08-20 14:24:29,645][ INFO][PID:627596] Checking for cancel request [2026-08-20 14:24:34,652][ INFO][PID:627596] Checking for cancel request [2026-08-20 14:24:39,657][ INFO][PID:627596] Checking for cancel request [2026-08-20 14:24:44,662][ INFO][PID:627596] Checking for cancel request [2026-08-20 14:24:49,670][ INFO][PID:627596] Checking for cancel request [2026-08-20 14:24:54,673][ INFO][PID:627596] Checking for cancel request [2026-08-20 14:24:59,676][ INFO][PID:627596] Checking for cancel request [2026-08-20 14:25:04,678][ INFO][PID:627596] Checking for cancel request [2026-08-20 14:25:09,680][ INFO][PID:627596] Checking for cancel request [2026-08-20 14:25:14,688][ INFO][PID:627596] Checking for cancel request [2026-08-20 14:25:19,695][ INFO][PID:627596] Checking for cancel request [2026-08-20 14:25:24,697][ INFO][PID:627596] Checking for cancel request [2026-08-20 14:25:29,698][ INFO][PID:627596] Checking for cancel request [2026-08-20 14:25:34,701][ INFO][PID:627596] Checking for cancel request [2026-08-20 14:25:39,705][ INFO][PID:627596] Checking for cancel request [2026-08-20 14:25:44,713][ INFO][PID:627596] Checking for cancel request [2026-08-20 14:25:49,715][ INFO][PID:627596] Checking for cancel request [2026-08-20 14:25:55,135][ INFO][PID:627596] Checking for cancel request [2026-08-20 14:26:00,139][ INFO][PID:627596] Checking for cancel request [2026-08-20 14:26:05,142][ INFO][PID:627596] Checking for cancel request [2026-08-20 14:26:10,143][ INFO][PID:627596] Checking for cancel request [2026-08-20 14:26:15,145][ INFO][PID:627596] Checking for cancel request [2026-08-20 14:26:20,150][ INFO][PID:627596] Checking for cancel request [2026-08-20 14:26:25,152][ INFO][PID:627596] Checking for cancel request [2026-08-20 14:26:30,153][ INFO][PID:627596] Checking for cancel request [2026-08-20 14:26:35,156][ INFO][PID:627596] Checking for cancel request [2026-08-20 14:26:40,161][ INFO][PID:627596] Checking for cancel request [2026-08-20 14:26:45,168][ INFO][PID:627596] Checking for cancel request [2026-08-20 14:26:50,170][ INFO][PID:627596] Checking for cancel request [2026-08-20 14:26:55,174][ INFO][PID:627596] Checking for cancel request [2026-08-20 14:27:00,183][ INFO][PID:627596] Checking for cancel request [2026-08-20 14:27:05,188][ INFO][PID:627596] Checking for cancel request [2026-08-20 14:27:10,195][ INFO][PID:627596] Checking for cancel request [2026-08-20 14:27:15,200][ INFO][PID:627596] Checking for cancel request [2026-08-20 14:27:20,206][ INFO][PID:627596] Checking for cancel request [2026-08-20 14:27:25,209][ INFO][PID:627596] Checking for cancel request [2026-08-20 14:27:30,225][ INFO][PID:627596] Checking for cancel request [2026-08-20 14:27:35,228][ INFO][PID:627596] Checking for cancel request [2026-08-20 14:27:40,233][ INFO][PID:627596] Checking for cancel request [2026-08-20 14:27:45,242][ INFO][PID:627596] Checking for cancel request [2026-08-20 14:27:50,253][ INFO][PID:627596] Checking for cancel request [2026-08-20 14:27:55,261][ INFO][PID:627596] Checking for cancel request [2026-08-20 14:28:00,264][ INFO][PID:627596] Checking for cancel request [2026-08-20 14:28:05,296][ INFO][PID:627596] Checking for cancel request [2026-08-20 14:28:10,308][ INFO][PID:627596] Checking for cancel request [2026-08-20 14:28:15,312][ INFO][PID:627596] Checking for cancel request [2026-08-20 14:28:20,314][ INFO][PID:627596] Checking for cancel request [2026-08-20 14:28:25,315][ INFO][PID:627596] Checking for cancel request [2026-08-20 14:28:30,320][ INFO][PID:627596] Checking for cancel request [2026-08-20 14:28:35,323][ INFO][PID:627596] Checking for cancel request [2026-08-20 14:28:40,327][ INFO][PID:627596] Checking for cancel request [2026-08-20 14:28:45,329][ INFO][PID:627596] Checking for cancel request [2026-08-20 14:28:50,331][ INFO][PID:627596] Checking for cancel request [2026-08-20 14:28:55,333][ INFO][PID:627596] Checking for cancel request [2026-08-20 14:29:00,337][ INFO][PID:627596] Checking for cancel request [2026-08-20 14:29:05,338][ INFO][PID:627596] Checking for cancel request [2026-08-20 14:29:10,340][ INFO][PID:627596] Checking for cancel request [2026-08-20 14:29:15,344][ INFO][PID:627596] Checking for cancel request [2026-08-20 14:29:20,348][ INFO][PID:627596] Checking for cancel request [2026-08-20 14:29:25,365][ INFO][PID:627596] Checking for cancel request [2026-08-20 14:29:30,380][ INFO][PID:627596] Checking for cancel request [2026-08-20 14:29:35,382][ INFO][PID:627596] Checking for cancel request [2026-08-20 14:29:40,384][ INFO][PID:627596] Checking for cancel request [2026-08-20 14:29:45,385][ INFO][PID:627596] Checking for cancel request [2026-08-20 14:29:50,387][ INFO][PID:627596] Checking for cancel request [2026-08-20 14:29:55,397][ INFO][PID:627596] Checking for cancel request [2026-08-20 14:30:00,400][ INFO][PID:627596] Checking for cancel request [2026-08-20 14:30:05,402][ INFO][PID:627596] Checking for cancel request [2026-08-20 14:30:10,411][ INFO][PID:627596] Checking for cancel request [2026-08-20 14:30:15,418][ INFO][PID:627596] Checking for cancel request [2026-08-20 14:30:20,420][ INFO][PID:627596] Checking for cancel request [2026-08-20 14:30:25,422][ INFO][PID:627596] Checking for cancel request [2026-08-20 14:30:30,426][ INFO][PID:627596] Checking for cancel request [2026-08-20 14:30:35,430][ INFO][PID:627596] Checking for cancel request [2026-08-20 14:30:40,435][ INFO][PID:627596] Checking for cancel request [2026-08-20 14:30:45,439][ INFO][PID:627596] Checking for cancel request [2026-08-20 14:30:50,441][ INFO][PID:627596] Checking for cancel request [2026-08-20 14:30:55,443][ INFO][PID:627596] Checking for cancel request [2026-08-20 14:31:00,444][ INFO][PID:627596] Checking for cancel request [2026-08-20 14:31:05,446][ INFO][PID:627596] Checking for cancel request [2026-08-20 14:31:10,448][ INFO][PID:627596] Checking for cancel request [2026-08-20 14:31:15,450][ INFO][PID:627596] Checking for cancel request [2026-08-20 14:31:20,451][ INFO][PID:627596] Checking for cancel request [2026-08-20 14:31:25,453][ INFO][PID:627596] Checking for cancel request [2026-08-20 14:31:30,455][ INFO][PID:627596] Checking for cancel request [2026-08-20 14:31:35,458][ INFO][PID:627596] Checking for cancel request [2026-08-20 14:31:40,470][ INFO][PID:627596] Periodic builder liveness probe: alive [2026-08-20 14:31:40,471][ INFO][PID:627596] Checking for cancel request [2026-08-20 14:31:45,472][ INFO][PID:627596] Checking for cancel request [2026-08-20 14:31:50,483][ INFO][PID:627596] Checking for cancel request [2026-08-20 14:31:55,485][ INFO][PID:627596] Checking for cancel request [2026-08-20 14:32:00,486][ INFO][PID:627596] Checking for cancel request [2026-08-20 14:32:05,488][ INFO][PID:627596] Checking for cancel request [2026-08-20 14:32:10,493][ INFO][PID:627596] Checking for cancel request [2026-08-20 14:32:15,501][ INFO][PID:627596] Checking for cancel request [2026-08-20 14:32:20,506][ INFO][PID:627596] Checking for cancel request [2026-08-20 14:32:25,509][ INFO][PID:627596] Checking for cancel request [2026-08-20 14:32:30,511][ INFO][PID:627596] Checking for cancel request [2026-08-20 14:32:35,513][ INFO][PID:627596] Checking for cancel request [2026-08-20 14:32:40,519][ INFO][PID:627596] Checking for cancel request [2026-08-20 14:32:45,521][ INFO][PID:627596] Checking for cancel request [2026-08-20 14:32:50,523][ INFO][PID:627596] Checking for cancel request [2026-08-20 14:32:55,530][ INFO][PID:627596] Checking for cancel request [2026-08-20 14:33:00,532][ INFO][PID:627596] Checking for cancel request [2026-08-20 14:33:05,538][ INFO][PID:627596] Checking for cancel request [2026-08-20 14:33:10,540][ INFO][PID:627596] Checking for cancel request [2026-08-20 14:33:15,548][ INFO][PID:627596] Checking for cancel request [2026-08-20 14:33:20,550][ INFO][PID:627596] Checking for cancel request [2026-08-20 14:33:25,557][ INFO][PID:627596] Checking for cancel request [2026-08-20 14:33:28,421][ INFO][PID:627596] Downloading results from builder [2026-08-20 14:33:28,422][ INFO][PID:627596] rsyncing of mockbuilder@100.48.47.168:/var/lib/copr-rpmbuild/results/ to /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5504/srpm-builds/10884583 started [2026-08-20 14:33:28,424][ INFO][PID:627596] Popen command started: /usr/bin/rsync -rltDvH --chmod=D755,F644 -e 'ssh -F /home/copr/.ssh/config' mockbuilder@100.48.47.168:/var/lib/copr-rpmbuild/results/ /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5504/srpm-builds/10884583/ &> /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5504/srpm-builds/10884583/build-10884583.rsync.log [2026-08-20 14:33:34,037][ INFO][PID:627596] rsyncing finished. [2026-08-20 14:33:34,040][ INFO][PID:627596] VM Release request [2026-08-20 14:33:34,064][ INFO][PID:627596] Searching for 'success' file in resultdir [2026-08-20 14:33:34,065][ INFO][PID:627596] Getting build details [2026-08-20 14:33:34,069][ INFO][PID:627596] Retrieving SRPM info from /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5504/srpm-builds/10884583 [2026-08-20 14:33:34,071][ INFO][PID:627596] SRPM URL: https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5504/srpm-builds/10884583/Sunshine-0.0.5504-1.src.rpm [2026-08-20 14:33:34,073][ INFO][PID:627596] build details: {'srpm_url': 'https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5504/srpm-builds/10884583/Sunshine-0.0.5504-1.src.rpm', 'pkg_name': 'Sunshine', 'pkg_version': '0.0.5504-1'} [2026-08-20 14:33:34,074][ INFO][PID:627596] Finished build: id=10884583 failed=False timeout=108000 destdir=/var/lib/copr/public_html/results/lizardbyte/pulls:pr:5504 chroot=srpm-builds [2026-08-20 14:33:34,076][ INFO][PID:627596] Worker succeeded build, took 721.0907266139984 [2026-08-20 14:33:34,077][ INFO][PID:627596] 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:5504", "submitter": null, "ended_on": 1787236414.076698, "started_on": 1787235692.9859715, "submitted_on": null, "status": 1, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10884583", "build_id": 10884583, "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\": \"tmphl3ay1rn\", \"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:5504/srpm-builds/10884583/Sunshine-0.0.5504-1.src.rpm", "uses_devel_repo": null, "sandbox": "lizardbyte/pulls--8deb91cf-2557-4ea0-8753-185369c461b2", "results": { "architecture_specific_tags": { "fedora-43": {}, "fedora-44": {}, "fedora-45": {}, "fedora-rawhide": {} }, "name": "Sunshine", "epoch": null, "version": "0.0.5504", "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:5504", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5504", "result_dir": "10884583", "built_packages": "", "tags": [ "arch_x86_64" ], "rpmeta_prediction": null, "pkg_version": "0.0.5504-1", "id": 10884583, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2026-08-20 14:33:34,178][ INFO][PID:627596] Sending fedora-messaging bus message in build.end [2026-08-20 14:33:34,261][ INFO][PID:627596] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5504/srpm-builds/10884583/builder-live.log by gzip [2026-08-20 14:33:34,267][ INFO][PID:627596] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5504/srpm-builds/10884583/builder-live.log' as PID 742728 [2026-08-20 14:33:34,297][ INFO][PID:627596] Finished after 0 seconds with exit code 0 (gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5504/srpm-builds/10884583/builder-live.log) [2026-08-20 14:33:34,298][ INFO][PID:627596] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5504/srpm-builds/10884583/backend.log by gzip [2026-08-20 14:33:34,308][ INFO][PID:627596] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5504/srpm-builds/10884583/backend.log' as PID 742735