[2026-08-19 06:33:11,695][ INFO][PID:3937397] Marking build as starting [2026-08-19 06:33:11,736][ INFO][PID:3937397] Checking for cancel request [2026-08-19 06:33:11,738][ INFO][PID:3937397] VM allocation process starts [2026-08-19 06:33:11,748][ INFO][PID:3937397] Trying to allocate VM: ResallocHost, ticket_id=4513565, requested_tags=['arch_x86_64', 'copr_builder'] [2026-08-19 06:33:16,751][ INFO][PID:3937397] Checking for cancel request [2026-08-19 06:33:21,752][ INFO][PID:3937397] Checking for cancel request [2026-08-19 06:33:26,753][ INFO][PID:3937397] Checking for cancel request [2026-08-19 06:33:29,799][ INFO][PID:3937397] Allocated host ResallocHost, ticket_id=4513565, hostname=100.55.12.69, name=aws_x86_64_reserved_prod_19435182_20260819_062933, requested_tags=['arch_x86_64', 'copr_builder'] [2026-08-19 06:33:29,800][ INFO][PID:3937397] Allocating ssh connection to builder [2026-08-19 06:33:29,801][ INFO][PID:3937397] Checking that builder machine is OK [2026-08-19 06:33:30,132][ INFO][PID:3937397] Installed copr-rpmbuild version: 1.9 [2026-08-19 06:33:30,133][ INFO][PID:3937397] Running remote command: copr-builder-ready srpm-builds [2026-08-19 06:33:30,328][ INFO][PID:3937397] Red Hat subscription not needed for srpm-builds Builder is ready to be used [2026-08-19 06:33:30,330][ INFO][PID:3937397] Filling build.info file with builder info [2026-08-19 06:33:30,331][ INFO][PID:3937397] Checking for cancel request [2026-08-19 06:33:30,332][ INFO][PID:3937397] 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:5528", "submitter": null, "ended_on": null, "started_on": 1787121210.3325841, "submitted_on": null, "status": 3, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10878907", "build_id": 10878907, "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\": \"tmpfo40943x\", \"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--251217d6-35e5-4461-ab61-f2f37b37be11", "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:5528", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5528", "result_dir": "10878907", "built_packages": "", "tags": [ "arch_x86_64" ], "rpmeta_prediction": null, "id": 10878907, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2026-08-19 06:33:30,379][ INFO][PID:3937397] Sending fedora-messaging bus message in build.start [2026-08-19 06:33:31,246][ INFO][PID:3937397] Sending fedora-messaging bus message in chroot.start [2026-08-19 06:33:31,289][ INFO][PID:3937397] Starting remote build: copr-rpmbuild --verbose --drop-resultdir --srpm --task-url https://copr.fedorainfracloud.org/backend/get-srpm-build-task/10878907 --detached [2026-08-19 06:33:31,792][ INFO][PID:3937397] The copr-rpmbuild seems started, per: stdout: stderr: Warning: Permanently added '100.55.12.69' (ED25519) to the list of known hosts. [2026-08-19 06:33:31,793][ INFO][PID:3937397] Downloading the builder-live.log file, attempt 1 [2026-08-19 06:33:31,796][ INFO][PID:3937397] Popen command started: ssh -F /home/copr/.ssh/config mockbuilder@100.55.12.69 copr-rpmbuild-log [2026-08-19 06:33:36,803][ INFO][PID:3937397] Periodic builder liveness probe: alive [2026-08-19 06:33:36,804][ INFO][PID:3937397] Checking for cancel request [2026-08-19 06:33:41,805][ INFO][PID:3937397] Checking for cancel request [2026-08-19 06:33:46,806][ INFO][PID:3937397] Checking for cancel request [2026-08-19 06:33:51,808][ INFO][PID:3937397] Checking for cancel request [2026-08-19 06:33:56,809][ INFO][PID:3937397] Checking for cancel request [2026-08-19 06:34:01,811][ INFO][PID:3937397] Checking for cancel request [2026-08-19 06:34:06,812][ INFO][PID:3937397] Checking for cancel request [2026-08-19 06:34:11,814][ INFO][PID:3937397] Checking for cancel request [2026-08-19 06:34:16,816][ INFO][PID:3937397] Checking for cancel request [2026-08-19 06:34:21,820][ INFO][PID:3937397] Checking for cancel request [2026-08-19 06:34:26,822][ INFO][PID:3937397] Checking for cancel request [2026-08-19 06:34:31,823][ INFO][PID:3937397] Checking for cancel request [2026-08-19 06:34:36,825][ INFO][PID:3937397] Checking for cancel request [2026-08-19 06:34:41,827][ INFO][PID:3937397] Checking for cancel request [2026-08-19 06:34:46,828][ INFO][PID:3937397] Checking for cancel request [2026-08-19 06:34:51,830][ INFO][PID:3937397] Checking for cancel request [2026-08-19 06:34:56,831][ INFO][PID:3937397] Checking for cancel request [2026-08-19 06:35:01,834][ INFO][PID:3937397] Checking for cancel request [2026-08-19 06:35:06,836][ INFO][PID:3937397] Checking for cancel request [2026-08-19 06:35:11,837][ INFO][PID:3937397] Checking for cancel request [2026-08-19 06:35:16,839][ INFO][PID:3937397] Checking for cancel request [2026-08-19 06:35:21,840][ INFO][PID:3937397] Checking for cancel request [2026-08-19 06:35:26,842][ INFO][PID:3937397] Checking for cancel request [2026-08-19 06:35:31,852][ INFO][PID:3937397] Checking for cancel request [2026-08-19 06:35:36,853][ INFO][PID:3937397] Checking for cancel request [2026-08-19 06:35:41,855][ INFO][PID:3937397] Checking for cancel request [2026-08-19 06:35:46,856][ INFO][PID:3937397] Checking for cancel request [2026-08-19 06:35:51,858][ INFO][PID:3937397] Checking for cancel request [2026-08-19 06:35:56,861][ INFO][PID:3937397] Checking for cancel request [2026-08-19 06:36:01,864][ INFO][PID:3937397] Checking for cancel request [2026-08-19 06:36:06,866][ INFO][PID:3937397] Checking for cancel request [2026-08-19 06:36:11,867][ INFO][PID:3937397] Checking for cancel request [2026-08-19 06:36:16,869][ INFO][PID:3937397] Checking for cancel request [2026-08-19 06:36:21,872][ INFO][PID:3937397] Checking for cancel request [2026-08-19 06:36:26,873][ INFO][PID:3937397] Checking for cancel request [2026-08-19 06:36:31,875][ INFO][PID:3937397] Checking for cancel request [2026-08-19 06:36:36,889][ INFO][PID:3937397] Checking for cancel request [2026-08-19 06:36:41,891][ INFO][PID:3937397] Checking for cancel request [2026-08-19 06:36:46,893][ INFO][PID:3937397] Checking for cancel request [2026-08-19 06:36:51,894][ INFO][PID:3937397] Checking for cancel request [2026-08-19 06:36:56,896][ INFO][PID:3937397] Checking for cancel request [2026-08-19 06:37:01,897][ INFO][PID:3937397] Checking for cancel request [2026-08-19 06:37:06,899][ INFO][PID:3937397] Checking for cancel request [2026-08-19 06:37:11,900][ INFO][PID:3937397] Checking for cancel request [2026-08-19 06:37:16,902][ INFO][PID:3937397] Checking for cancel request [2026-08-19 06:37:21,906][ INFO][PID:3937397] Checking for cancel request [2026-08-19 06:37:26,908][ INFO][PID:3937397] Checking for cancel request [2026-08-19 06:37:31,910][ INFO][PID:3937397] Checking for cancel request [2026-08-19 06:37:36,912][ INFO][PID:3937397] Checking for cancel request [2026-08-19 06:37:41,914][ INFO][PID:3937397] Checking for cancel request [2026-08-19 06:37:46,916][ INFO][PID:3937397] Checking for cancel request [2026-08-19 06:37:51,917][ INFO][PID:3937397] Checking for cancel request [2026-08-19 06:37:56,919][ INFO][PID:3937397] Checking for cancel request [2026-08-19 06:38:01,920][ INFO][PID:3937397] Checking for cancel request [2026-08-19 06:38:06,922][ INFO][PID:3937397] Checking for cancel request [2026-08-19 06:38:11,923][ INFO][PID:3937397] Checking for cancel request [2026-08-19 06:38:16,925][ INFO][PID:3937397] Checking for cancel request [2026-08-19 06:38:21,926][ INFO][PID:3937397] Checking for cancel request [2026-08-19 06:38:26,927][ INFO][PID:3937397] Checking for cancel request [2026-08-19 06:38:31,928][ INFO][PID:3937397] Checking for cancel request [2026-08-19 06:38:36,930][ INFO][PID:3937397] Checking for cancel request [2026-08-19 06:38:41,931][ INFO][PID:3937397] Checking for cancel request [2026-08-19 06:38:46,934][ INFO][PID:3937397] Checking for cancel request [2026-08-19 06:38:51,935][ INFO][PID:3937397] Checking for cancel request [2026-08-19 06:38:56,936][ INFO][PID:3937397] Checking for cancel request [2026-08-19 06:39:01,938][ INFO][PID:3937397] Checking for cancel request [2026-08-19 06:39:07,372][ INFO][PID:3937397] Checking for cancel request [2026-08-19 06:39:12,373][ INFO][PID:3937397] Checking for cancel request [2026-08-19 06:39:17,375][ INFO][PID:3937397] Checking for cancel request [2026-08-19 06:39:22,376][ INFO][PID:3937397] Checking for cancel request [2026-08-19 06:39:27,378][ INFO][PID:3937397] Checking for cancel request [2026-08-19 06:39:32,379][ INFO][PID:3937397] Checking for cancel request [2026-08-19 06:39:37,381][ INFO][PID:3937397] Checking for cancel request [2026-08-19 06:39:42,382][ INFO][PID:3937397] Checking for cancel request [2026-08-19 06:39:47,383][ INFO][PID:3937397] Checking for cancel request [2026-08-19 06:39:52,385][ INFO][PID:3937397] Checking for cancel request [2026-08-19 06:39:57,386][ INFO][PID:3937397] Checking for cancel request [2026-08-19 06:40:02,388][ INFO][PID:3937397] Checking for cancel request [2026-08-19 06:40:07,389][ INFO][PID:3937397] Checking for cancel request [2026-08-19 06:40:12,391][ INFO][PID:3937397] Checking for cancel request [2026-08-19 06:40:17,392][ INFO][PID:3937397] Checking for cancel request [2026-08-19 06:40:22,394][ INFO][PID:3937397] Checking for cancel request [2026-08-19 06:40:27,395][ INFO][PID:3937397] Checking for cancel request [2026-08-19 06:40:32,398][ INFO][PID:3937397] Checking for cancel request [2026-08-19 06:40:37,399][ INFO][PID:3937397] Checking for cancel request [2026-08-19 06:40:42,401][ INFO][PID:3937397] Checking for cancel request [2026-08-19 06:40:47,403][ INFO][PID:3937397] Checking for cancel request [2026-08-19 06:40:52,405][ INFO][PID:3937397] Checking for cancel request [2026-08-19 06:40:57,406][ INFO][PID:3937397] Checking for cancel request [2026-08-19 06:41:02,408][ INFO][PID:3937397] Checking for cancel request [2026-08-19 06:41:07,409][ INFO][PID:3937397] Checking for cancel request [2026-08-19 06:41:12,411][ INFO][PID:3937397] Checking for cancel request [2026-08-19 06:41:17,412][ INFO][PID:3937397] Checking for cancel request [2026-08-19 06:41:22,414][ INFO][PID:3937397] Checking for cancel request [2026-08-19 06:41:27,415][ INFO][PID:3937397] Checking for cancel request [2026-08-19 06:41:32,417][ INFO][PID:3937397] Checking for cancel request [2026-08-19 06:41:37,418][ INFO][PID:3937397] Checking for cancel request [2026-08-19 06:41:42,420][ INFO][PID:3937397] Checking for cancel request [2026-08-19 06:41:47,421][ INFO][PID:3937397] Checking for cancel request [2026-08-19 06:41:52,423][ INFO][PID:3937397] Checking for cancel request [2026-08-19 06:41:57,424][ INFO][PID:3937397] Checking for cancel request [2026-08-19 06:42:02,426][ INFO][PID:3937397] Checking for cancel request [2026-08-19 06:42:07,427][ INFO][PID:3937397] Checking for cancel request [2026-08-19 06:42:12,428][ INFO][PID:3937397] Checking for cancel request [2026-08-19 06:42:17,430][ INFO][PID:3937397] Checking for cancel request [2026-08-19 06:42:22,432][ INFO][PID:3937397] Checking for cancel request [2026-08-19 06:42:27,433][ INFO][PID:3937397] Checking for cancel request [2026-08-19 06:42:32,435][ INFO][PID:3937397] Checking for cancel request [2026-08-19 06:42:37,436][ INFO][PID:3937397] Checking for cancel request [2026-08-19 06:42:42,438][ INFO][PID:3937397] Checking for cancel request [2026-08-19 06:42:47,439][ INFO][PID:3937397] Checking for cancel request [2026-08-19 06:42:52,441][ INFO][PID:3937397] Checking for cancel request [2026-08-19 06:42:57,442][ INFO][PID:3937397] Checking for cancel request [2026-08-19 06:43:02,444][ INFO][PID:3937397] Checking for cancel request [2026-08-19 06:43:07,446][ INFO][PID:3937397] Checking for cancel request [2026-08-19 06:43:12,447][ INFO][PID:3937397] Checking for cancel request [2026-08-19 06:43:17,449][ INFO][PID:3937397] Checking for cancel request [2026-08-19 06:43:22,450][ INFO][PID:3937397] Checking for cancel request [2026-08-19 06:43:27,452][ INFO][PID:3937397] Checking for cancel request [2026-08-19 06:43:32,453][ INFO][PID:3937397] Checking for cancel request [2026-08-19 06:43:37,464][ INFO][PID:3937397] Periodic builder liveness probe: alive [2026-08-19 06:43:37,465][ INFO][PID:3937397] Checking for cancel request [2026-08-19 06:43:42,466][ INFO][PID:3937397] Checking for cancel request [2026-08-19 06:43:47,468][ INFO][PID:3937397] Checking for cancel request [2026-08-19 06:43:52,470][ INFO][PID:3937397] Checking for cancel request [2026-08-19 06:43:57,472][ INFO][PID:3937397] Checking for cancel request [2026-08-19 06:44:02,474][ INFO][PID:3937397] Checking for cancel request [2026-08-19 06:44:07,477][ INFO][PID:3937397] Checking for cancel request [2026-08-19 06:44:12,483][ INFO][PID:3937397] Checking for cancel request [2026-08-19 06:44:17,484][ INFO][PID:3937397] Checking for cancel request [2026-08-19 06:44:22,485][ INFO][PID:3937397] Checking for cancel request [2026-08-19 06:44:27,487][ INFO][PID:3937397] Checking for cancel request [2026-08-19 06:44:32,492][ INFO][PID:3937397] Checking for cancel request [2026-08-19 06:44:37,493][ INFO][PID:3937397] Checking for cancel request [2026-08-19 06:44:42,495][ INFO][PID:3937397] Checking for cancel request [2026-08-19 06:44:47,496][ INFO][PID:3937397] Checking for cancel request [2026-08-19 06:44:52,498][ INFO][PID:3937397] Checking for cancel request [2026-08-19 06:44:57,499][ INFO][PID:3937397] Checking for cancel request [2026-08-19 06:45:02,500][ INFO][PID:3937397] Checking for cancel request [2026-08-19 06:45:07,502][ INFO][PID:3937397] Checking for cancel request [2026-08-19 06:45:12,503][ INFO][PID:3937397] Checking for cancel request [2026-08-19 06:45:17,504][ INFO][PID:3937397] Checking for cancel request [2026-08-19 06:45:22,506][ INFO][PID:3937397] Checking for cancel request [2026-08-19 06:45:27,509][ INFO][PID:3937397] Checking for cancel request [2026-08-19 06:45:29,039][ INFO][PID:3937397] Downloading results from builder [2026-08-19 06:45:29,040][ INFO][PID:3937397] rsyncing of mockbuilder@100.55.12.69:/var/lib/copr-rpmbuild/results/ to /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5528/srpm-builds/10878907 started [2026-08-19 06:45:29,041][ INFO][PID:3937397] Popen command started: /usr/bin/rsync -rltDvH --chmod=D755,F644 -e 'ssh -F /home/copr/.ssh/config' mockbuilder@100.55.12.69:/var/lib/copr-rpmbuild/results/ /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5528/srpm-builds/10878907/ &> /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5528/srpm-builds/10878907/build-10878907.rsync.log [2026-08-19 06:45:33,588][ INFO][PID:3937397] rsyncing finished. [2026-08-19 06:45:33,589][ INFO][PID:3937397] VM Release request [2026-08-19 06:45:33,599][ INFO][PID:3937397] Searching for 'success' file in resultdir [2026-08-19 06:45:33,600][ INFO][PID:3937397] Getting build details [2026-08-19 06:45:33,600][ INFO][PID:3937397] Retrieving SRPM info from /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5528/srpm-builds/10878907 [2026-08-19 06:45:33,601][ INFO][PID:3937397] SRPM URL: https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5528/srpm-builds/10878907/Sunshine-0.0.5528-1.src.rpm [2026-08-19 06:45:33,602][ INFO][PID:3937397] build details: {'srpm_url': 'https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5528/srpm-builds/10878907/Sunshine-0.0.5528-1.src.rpm', 'pkg_name': 'Sunshine', 'pkg_version': '0.0.5528-1'} [2026-08-19 06:45:33,602][ INFO][PID:3937397] Finished build: id=10878907 failed=False timeout=108000 destdir=/var/lib/copr/public_html/results/lizardbyte/pulls:pr:5528 chroot=srpm-builds [2026-08-19 06:45:33,603][ INFO][PID:3937397] Worker succeeded build, took 723.2711002826691 [2026-08-19 06:45:33,604][ INFO][PID:3937397] 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:5528", "submitter": null, "ended_on": 1787121933.6036844, "started_on": 1787121210.3325841, "submitted_on": null, "status": 1, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10878907", "build_id": 10878907, "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\": \"tmpfo40943x\", \"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:5528/srpm-builds/10878907/Sunshine-0.0.5528-1.src.rpm", "uses_devel_repo": null, "sandbox": "lizardbyte/pulls--251217d6-35e5-4461-ab61-f2f37b37be11", "results": { "architecture_specific_tags": { "fedora-43": {}, "fedora-44": {}, "fedora-45": {}, "fedora-rawhide": {} }, "name": "Sunshine", "epoch": null, "version": "0.0.5528", "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:5528", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5528", "result_dir": "10878907", "built_packages": "", "tags": [ "arch_x86_64" ], "rpmeta_prediction": null, "pkg_version": "0.0.5528-1", "id": 10878907, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2026-08-19 06:45:33,656][ INFO][PID:3937397] Sending fedora-messaging bus message in build.end [2026-08-19 06:45:33,691][ INFO][PID:3937397] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5528/srpm-builds/10878907/builder-live.log by gzip [2026-08-19 06:45:33,693][ INFO][PID:3937397] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5528/srpm-builds/10878907/builder-live.log' as PID 4011680 [2026-08-19 06:45:33,715][ INFO][PID:3937397] Finished after 0 seconds with exit code 0 (gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5528/srpm-builds/10878907/builder-live.log) [2026-08-19 06:45:33,716][ INFO][PID:3937397] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5528/srpm-builds/10878907/backend.log by gzip [2026-08-19 06:45:33,717][ INFO][PID:3937397] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5528/srpm-builds/10878907/backend.log' as PID 4011687