[2026-06-07 03:24:01,950][ INFO][PID:2313578] Marking build as starting [2026-06-07 03:24:01,992][ INFO][PID:2313578] Checking for cancel request [2026-06-07 03:24:01,993][ INFO][PID:2313578] VM allocation process starts [2026-06-07 03:24:02,017][ INFO][PID:2313578] Trying to allocate VM: ResallocHost, ticket_id=3319174, requested_tags=['arch_x86_64', 'copr_builder'] [2026-06-07 03:24:07,019][ INFO][PID:2313578] Checking for cancel request [2026-06-07 03:24:12,035][ INFO][PID:2313578] Checking for cancel request [2026-06-07 03:24:14,073][ INFO][PID:2313578] Allocated host ResallocHost, ticket_id=3319174, hostname=98.92.10.91, name=aws_x86_64_reserved_prod_11099686_20260607_031051, requested_tags=['arch_x86_64', 'copr_builder'] [2026-06-07 03:24:14,084][ INFO][PID:2313578] Allocating ssh connection to builder [2026-06-07 03:24:14,084][ INFO][PID:2313578] Checking that builder machine is OK [2026-06-07 03:24:14,441][ INFO][PID:2313578] Installed copr-rpmbuild version: 1.8 [2026-06-07 03:24:14,442][ INFO][PID:2313578] Running remote command: copr-builder-ready srpm-builds [2026-06-07 03:24:14,694][ INFO][PID:2313578] Red Hat subscription not needed for srpm-builds Builder is ready to be used [2026-06-07 03:24:14,695][ INFO][PID:2313578] Filling build.info file with builder info [2026-06-07 03:24:14,702][ INFO][PID:2313578] Checking for cancel request [2026-06-07 03:24:14,704][ INFO][PID:2313578] 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:5260", "submitter": null, "ended_on": null, "started_on": 1780802654.7040668, "submitted_on": null, "status": 3, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10574502", "build_id": 10574502, "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\": \"tmp4igxn6n8\", \"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--0a035b7d-5fc0-4019-9f2b-7382ce5740ac", "results": null, "appstream": false, "allow_user_ssh": null, "ssh_public_keys": null, "storage": null, "repos": [], "background": true, "distributions_in_build": [ "fedora-42", "fedora-43", "fedora-44", "fedora-rawhide", "opensuse-leap-15.6" ], "distributions_in_project": [ "fedora-42", "fedora-43", "fedora-44", "fedora-rawhide", "opensuse-leap-15.6" ], "destdir": "/var/lib/copr/public_html/results/lizardbyte/pulls:pr:5260", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5260", "result_dir": "10574502", "built_packages": "", "tags": [ "arch_x86_64" ], "rpmeta_prediction": null, "id": 10574502, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2026-06-07 03:24:14,743][ INFO][PID:2313578] Sending fedora-messaging bus message in build.start [2026-06-07 03:24:15,325][ INFO][PID:2313578] Sending fedora-messaging bus message in chroot.start [2026-06-07 03:24:15,354][ INFO][PID:2313578] Starting remote build: copr-rpmbuild --verbose --drop-resultdir --srpm --task-url https://copr.fedorainfracloud.org/backend/get-srpm-build-task/10574502 --detached [2026-06-07 03:24:15,823][ INFO][PID:2313578] The copr-rpmbuild seems started, per: stdout: stderr: Warning: Permanently added '98.92.10.91' (ED25519) to the list of known hosts. [2026-06-07 03:24:15,824][ INFO][PID:2313578] Downloading the builder-live.log file, attempt 1 [2026-06-07 03:24:15,826][ INFO][PID:2313578] Popen command started: ssh -F /home/copr/.ssh/config mockbuilder@98.92.10.91 copr-rpmbuild-log [2026-06-07 03:24:20,834][ INFO][PID:2313578] Periodic builder liveness probe: alive [2026-06-07 03:24:20,835][ INFO][PID:2313578] Checking for cancel request [2026-06-07 03:24:25,836][ INFO][PID:2313578] Checking for cancel request [2026-06-07 03:24:30,837][ INFO][PID:2313578] Checking for cancel request [2026-06-07 03:24:35,838][ INFO][PID:2313578] Checking for cancel request [2026-06-07 03:24:40,840][ INFO][PID:2313578] Checking for cancel request [2026-06-07 03:24:45,841][ INFO][PID:2313578] Checking for cancel request [2026-06-07 03:24:50,842][ INFO][PID:2313578] Checking for cancel request [2026-06-07 03:24:55,850][ INFO][PID:2313578] Checking for cancel request [2026-06-07 03:25:00,877][ INFO][PID:2313578] Checking for cancel request [2026-06-07 03:25:05,879][ INFO][PID:2313578] Checking for cancel request [2026-06-07 03:25:10,880][ INFO][PID:2313578] Checking for cancel request [2026-06-07 03:25:15,881][ INFO][PID:2313578] Checking for cancel request [2026-06-07 03:25:20,883][ INFO][PID:2313578] Checking for cancel request [2026-06-07 03:25:25,884][ INFO][PID:2313578] Checking for cancel request [2026-06-07 03:25:30,886][ INFO][PID:2313578] Checking for cancel request [2026-06-07 03:25:35,887][ INFO][PID:2313578] Checking for cancel request [2026-06-07 03:25:40,888][ INFO][PID:2313578] Checking for cancel request [2026-06-07 03:25:45,889][ INFO][PID:2313578] Checking for cancel request [2026-06-07 03:25:50,890][ INFO][PID:2313578] Checking for cancel request [2026-06-07 03:25:55,892][ INFO][PID:2313578] Checking for cancel request [2026-06-07 03:26:00,897][ INFO][PID:2313578] Checking for cancel request [2026-06-07 03:26:05,910][ INFO][PID:2313578] Checking for cancel request [2026-06-07 03:26:10,925][ INFO][PID:2313578] Checking for cancel request [2026-06-07 03:26:15,931][ INFO][PID:2313578] Checking for cancel request [2026-06-07 03:26:20,932][ INFO][PID:2313578] Checking for cancel request [2026-06-07 03:26:25,934][ INFO][PID:2313578] Checking for cancel request [2026-06-07 03:26:30,935][ INFO][PID:2313578] Checking for cancel request [2026-06-07 03:26:35,937][ INFO][PID:2313578] Checking for cancel request [2026-06-07 03:26:40,938][ INFO][PID:2313578] Checking for cancel request [2026-06-07 03:26:45,941][ INFO][PID:2313578] Checking for cancel request [2026-06-07 03:26:50,944][ INFO][PID:2313578] Checking for cancel request [2026-06-07 03:26:55,946][ INFO][PID:2313578] Checking for cancel request [2026-06-07 03:27:00,948][ INFO][PID:2313578] Checking for cancel request [2026-06-07 03:27:05,950][ INFO][PID:2313578] Checking for cancel request [2026-06-07 03:27:10,951][ INFO][PID:2313578] Checking for cancel request [2026-06-07 03:27:15,953][ INFO][PID:2313578] Checking for cancel request [2026-06-07 03:27:20,957][ INFO][PID:2313578] Checking for cancel request [2026-06-07 03:27:25,959][ INFO][PID:2313578] Checking for cancel request [2026-06-07 03:27:30,961][ INFO][PID:2313578] Checking for cancel request [2026-06-07 03:27:35,965][ INFO][PID:2313578] Checking for cancel request [2026-06-07 03:27:40,969][ INFO][PID:2313578] Checking for cancel request [2026-06-07 03:27:45,977][ INFO][PID:2313578] Checking for cancel request [2026-06-07 03:27:50,979][ INFO][PID:2313578] Checking for cancel request [2026-06-07 03:27:55,987][ INFO][PID:2313578] Checking for cancel request [2026-06-07 03:28:00,990][ INFO][PID:2313578] Checking for cancel request [2026-06-07 03:28:05,991][ INFO][PID:2313578] Checking for cancel request [2026-06-07 03:28:10,993][ INFO][PID:2313578] Checking for cancel request [2026-06-07 03:28:15,998][ INFO][PID:2313578] Checking for cancel request [2026-06-07 03:28:21,003][ INFO][PID:2313578] Checking for cancel request [2026-06-07 03:28:26,005][ INFO][PID:2313578] Checking for cancel request [2026-06-07 03:28:31,007][ INFO][PID:2313578] Checking for cancel request [2026-06-07 03:28:36,009][ INFO][PID:2313578] Checking for cancel request [2026-06-07 03:28:41,011][ INFO][PID:2313578] Checking for cancel request [2026-06-07 03:28:46,014][ INFO][PID:2313578] Checking for cancel request [2026-06-07 03:28:51,017][ INFO][PID:2313578] Checking for cancel request [2026-06-07 03:28:56,018][ INFO][PID:2313578] Checking for cancel request [2026-06-07 03:29:01,019][ INFO][PID:2313578] Checking for cancel request [2026-06-07 03:29:06,021][ INFO][PID:2313578] Checking for cancel request [2026-06-07 03:29:11,022][ INFO][PID:2313578] Checking for cancel request [2026-06-07 03:29:16,025][ INFO][PID:2313578] Checking for cancel request [2026-06-07 03:29:21,030][ INFO][PID:2313578] Checking for cancel request [2026-06-07 03:29:26,031][ INFO][PID:2313578] Checking for cancel request [2026-06-07 03:29:31,033][ INFO][PID:2313578] Checking for cancel request [2026-06-07 03:29:36,039][ INFO][PID:2313578] Checking for cancel request [2026-06-07 03:29:41,047][ INFO][PID:2313578] Checking for cancel request [2026-06-07 03:29:46,048][ INFO][PID:2313578] Checking for cancel request [2026-06-07 03:29:51,050][ INFO][PID:2313578] Checking for cancel request [2026-06-07 03:29:56,052][ INFO][PID:2313578] Checking for cancel request [2026-06-07 03:30:01,055][ INFO][PID:2313578] Checking for cancel request [2026-06-07 03:30:06,062][ INFO][PID:2313578] Checking for cancel request [2026-06-07 03:30:11,064][ INFO][PID:2313578] Checking for cancel request [2026-06-07 03:30:16,069][ INFO][PID:2313578] Checking for cancel request [2026-06-07 03:30:21,074][ INFO][PID:2313578] Checking for cancel request [2026-06-07 03:30:26,076][ INFO][PID:2313578] Checking for cancel request [2026-06-07 03:30:31,078][ INFO][PID:2313578] Checking for cancel request [2026-06-07 03:30:36,080][ INFO][PID:2313578] Checking for cancel request [2026-06-07 03:30:41,082][ INFO][PID:2313578] Checking for cancel request [2026-06-07 03:30:46,083][ INFO][PID:2313578] Checking for cancel request [2026-06-07 03:30:51,084][ INFO][PID:2313578] Checking for cancel request [2026-06-07 03:30:56,086][ INFO][PID:2313578] Checking for cancel request [2026-06-07 03:31:01,090][ INFO][PID:2313578] Checking for cancel request [2026-06-07 03:31:06,097][ INFO][PID:2313578] Checking for cancel request [2026-06-07 03:31:11,100][ INFO][PID:2313578] Checking for cancel request [2026-06-07 03:31:16,116][ INFO][PID:2313578] Checking for cancel request [2026-06-07 03:31:21,119][ INFO][PID:2313578] Checking for cancel request [2026-06-07 03:31:26,124][ INFO][PID:2313578] Checking for cancel request [2026-06-07 03:31:31,125][ INFO][PID:2313578] Checking for cancel request [2026-06-07 03:31:36,135][ INFO][PID:2313578] Checking for cancel request [2026-06-07 03:31:41,138][ INFO][PID:2313578] Checking for cancel request [2026-06-07 03:31:46,149][ INFO][PID:2313578] Checking for cancel request [2026-06-07 03:31:51,150][ INFO][PID:2313578] Checking for cancel request [2026-06-07 03:31:56,153][ INFO][PID:2313578] Checking for cancel request [2026-06-07 03:32:01,155][ INFO][PID:2313578] Checking for cancel request [2026-06-07 03:32:06,157][ INFO][PID:2313578] Checking for cancel request [2026-06-07 03:32:11,175][ INFO][PID:2313578] Checking for cancel request [2026-06-07 03:32:16,177][ INFO][PID:2313578] Checking for cancel request [2026-06-07 03:32:21,180][ INFO][PID:2313578] Checking for cancel request [2026-06-07 03:32:26,183][ INFO][PID:2313578] Checking for cancel request [2026-06-07 03:32:31,184][ INFO][PID:2313578] Checking for cancel request [2026-06-07 03:32:36,193][ INFO][PID:2313578] Checking for cancel request [2026-06-07 03:32:41,210][ INFO][PID:2313578] Checking for cancel request [2026-06-07 03:32:46,237][ INFO][PID:2313578] Checking for cancel request [2026-06-07 03:32:51,255][ INFO][PID:2313578] Checking for cancel request [2026-06-07 03:32:56,267][ INFO][PID:2313578] Checking for cancel request [2026-06-07 03:33:01,269][ INFO][PID:2313578] Checking for cancel request [2026-06-07 03:33:06,275][ INFO][PID:2313578] Checking for cancel request [2026-06-07 03:33:11,289][ INFO][PID:2313578] Checking for cancel request [2026-06-07 03:33:16,290][ INFO][PID:2313578] Checking for cancel request [2026-06-07 03:33:21,292][ INFO][PID:2313578] Checking for cancel request [2026-06-07 03:33:26,295][ INFO][PID:2313578] Checking for cancel request [2026-06-07 03:33:31,302][ INFO][PID:2313578] Checking for cancel request [2026-06-07 03:33:36,304][ INFO][PID:2313578] Checking for cancel request [2026-06-07 03:33:41,305][ INFO][PID:2313578] Checking for cancel request [2026-06-07 03:33:46,307][ INFO][PID:2313578] Checking for cancel request [2026-06-07 03:33:51,309][ INFO][PID:2313578] Checking for cancel request [2026-06-07 03:33:56,313][ INFO][PID:2313578] Checking for cancel request [2026-06-07 03:34:01,315][ INFO][PID:2313578] Checking for cancel request [2026-06-07 03:34:06,316][ INFO][PID:2313578] Checking for cancel request [2026-06-07 03:34:11,318][ INFO][PID:2313578] Checking for cancel request [2026-06-07 03:34:16,319][ INFO][PID:2313578] Checking for cancel request [2026-06-07 03:34:21,626][ INFO][PID:2313578] Periodic builder liveness probe: alive [2026-06-07 03:34:21,663][ INFO][PID:2313578] Checking for cancel request [2026-06-07 03:34:26,665][ INFO][PID:2313578] Checking for cancel request [2026-06-07 03:34:31,667][ INFO][PID:2313578] Checking for cancel request [2026-06-07 03:34:36,668][ INFO][PID:2313578] Checking for cancel request [2026-06-07 03:34:41,670][ INFO][PID:2313578] Checking for cancel request [2026-06-07 03:34:46,672][ INFO][PID:2313578] Checking for cancel request [2026-06-07 03:34:51,674][ INFO][PID:2313578] Checking for cancel request [2026-06-07 03:34:56,675][ INFO][PID:2313578] Checking for cancel request [2026-06-07 03:35:01,677][ INFO][PID:2313578] Checking for cancel request [2026-06-07 03:35:06,678][ INFO][PID:2313578] Checking for cancel request [2026-06-07 03:35:11,680][ INFO][PID:2313578] Checking for cancel request [2026-06-07 03:35:16,683][ INFO][PID:2313578] Checking for cancel request [2026-06-07 03:35:21,684][ INFO][PID:2313578] Checking for cancel request [2026-06-07 03:35:26,686][ INFO][PID:2313578] Checking for cancel request [2026-06-07 03:35:31,688][ INFO][PID:2313578] Checking for cancel request [2026-06-07 03:35:36,690][ INFO][PID:2313578] Checking for cancel request [2026-06-07 03:35:41,691][ INFO][PID:2313578] Checking for cancel request [2026-06-07 03:35:46,693][ INFO][PID:2313578] Checking for cancel request [2026-06-07 03:35:51,694][ INFO][PID:2313578] Checking for cancel request [2026-06-07 03:35:56,696][ INFO][PID:2313578] Checking for cancel request [2026-06-07 03:36:01,699][ INFO][PID:2313578] Checking for cancel request [2026-06-07 03:36:06,700][ INFO][PID:2313578] Checking for cancel request [2026-06-07 03:36:11,702][ INFO][PID:2313578] Checking for cancel request [2026-06-07 03:36:16,703][ INFO][PID:2313578] Checking for cancel request [2026-06-07 03:36:21,705][ INFO][PID:2313578] Checking for cancel request [2026-06-07 03:36:26,706][ INFO][PID:2313578] Checking for cancel request [2026-06-07 03:36:31,708][ INFO][PID:2313578] Checking for cancel request [2026-06-07 03:36:36,710][ INFO][PID:2313578] Checking for cancel request [2026-06-07 03:36:41,712][ INFO][PID:2313578] Checking for cancel request [2026-06-07 03:36:46,713][ INFO][PID:2313578] Checking for cancel request [2026-06-07 03:36:51,715][ INFO][PID:2313578] Checking for cancel request [2026-06-07 03:36:56,717][ INFO][PID:2313578] Checking for cancel request [2026-06-07 03:37:01,718][ INFO][PID:2313578] Checking for cancel request [2026-06-07 03:37:06,720][ INFO][PID:2313578] Checking for cancel request [2026-06-07 03:37:11,722][ INFO][PID:2313578] Checking for cancel request [2026-06-07 03:37:16,724][ INFO][PID:2313578] Checking for cancel request [2026-06-07 03:37:21,726][ INFO][PID:2313578] Checking for cancel request [2026-06-07 03:37:26,728][ INFO][PID:2313578] Checking for cancel request [2026-06-07 03:37:31,729][ INFO][PID:2313578] Checking for cancel request [2026-06-07 03:37:36,731][ INFO][PID:2313578] Checking for cancel request [2026-06-07 03:37:41,733][ INFO][PID:2313578] Checking for cancel request [2026-06-07 03:37:46,735][ INFO][PID:2313578] Checking for cancel request [2026-06-07 03:37:51,736][ INFO][PID:2313578] Checking for cancel request [2026-06-07 03:37:56,737][ INFO][PID:2313578] Checking for cancel request [2026-06-07 03:38:01,740][ INFO][PID:2313578] Checking for cancel request [2026-06-07 03:38:06,741][ INFO][PID:2313578] Checking for cancel request [2026-06-07 03:38:11,743][ INFO][PID:2313578] Checking for cancel request [2026-06-07 03:38:16,745][ INFO][PID:2313578] Checking for cancel request [2026-06-07 03:38:21,747][ INFO][PID:2313578] Checking for cancel request [2026-06-07 03:38:26,751][ INFO][PID:2313578] Checking for cancel request [2026-06-07 03:38:31,752][ INFO][PID:2313578] Checking for cancel request [2026-06-07 03:38:36,753][ INFO][PID:2313578] Checking for cancel request [2026-06-07 03:38:41,755][ INFO][PID:2313578] Checking for cancel request [2026-06-07 03:38:46,756][ INFO][PID:2313578] Checking for cancel request [2026-06-07 03:38:51,758][ INFO][PID:2313578] Checking for cancel request [2026-06-07 03:38:56,759][ INFO][PID:2313578] Checking for cancel request [2026-06-07 03:39:01,761][ INFO][PID:2313578] Checking for cancel request [2026-06-07 03:39:06,762][ INFO][PID:2313578] Checking for cancel request [2026-06-07 03:39:11,763][ INFO][PID:2313578] Checking for cancel request [2026-06-07 03:39:16,765][ INFO][PID:2313578] Checking for cancel request [2026-06-07 03:39:21,766][ INFO][PID:2313578] Checking for cancel request [2026-06-07 03:39:26,767][ INFO][PID:2313578] Checking for cancel request [2026-06-07 03:39:31,769][ INFO][PID:2313578] Checking for cancel request [2026-06-07 03:39:36,770][ INFO][PID:2313578] Checking for cancel request [2026-06-07 03:39:41,772][ INFO][PID:2313578] Checking for cancel request [2026-06-07 03:39:46,773][ INFO][PID:2313578] Checking for cancel request [2026-06-07 03:39:47,720][ INFO][PID:2313578] Downloading results from builder [2026-06-07 03:39:47,748][ INFO][PID:2313578] rsyncing of mockbuilder@98.92.10.91:/var/lib/copr-rpmbuild/results/ to /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5260/srpm-builds/10574502 started [2026-06-07 03:39:47,798][ INFO][PID:2313578] Popen command started: /usr/bin/rsync -rltDvH --chmod=D755,F644 -e 'ssh -F /home/copr/.ssh/config' mockbuilder@98.92.10.91:/var/lib/copr-rpmbuild/results/ /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5260/srpm-builds/10574502/ &> /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5260/srpm-builds/10574502/build-10574502.rsync.log [2026-06-07 03:39:52,681][ INFO][PID:2313578] rsyncing finished. [2026-06-07 03:39:52,685][ INFO][PID:2313578] VM Release request [2026-06-07 03:39:52,713][ INFO][PID:2313578] Searching for 'success' file in resultdir [2026-06-07 03:39:52,784][ INFO][PID:2313578] Getting build details [2026-06-07 03:39:52,787][ INFO][PID:2313578] Retrieving SRPM info from /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5260/srpm-builds/10574502 [2026-06-07 03:39:52,863][ INFO][PID:2313578] SRPM URL: https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5260/srpm-builds/10574502/Sunshine-0.0.5260-1.src.rpm [2026-06-07 03:39:52,866][ INFO][PID:2313578] build details: {'srpm_url': 'https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5260/srpm-builds/10574502/Sunshine-0.0.5260-1.src.rpm', 'pkg_name': 'Sunshine', 'pkg_version': '0.0.5260-1'} [2026-06-07 03:39:52,883][ INFO][PID:2313578] Finished build: id=10574502 failed=False timeout=108000 destdir=/var/lib/copr/public_html/results/lizardbyte/pulls:pr:5260 chroot=srpm-builds [2026-06-07 03:39:52,992][ INFO][PID:2313578] Worker succeeded build, took 938.2874925136566 [2026-06-07 03:39:53,010][ INFO][PID:2313578] 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:5260", "submitter": null, "ended_on": 1780803592.9915593, "started_on": 1780802654.7040668, "submitted_on": null, "status": 1, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10574502", "build_id": 10574502, "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\": \"tmp4igxn6n8\", \"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:5260/srpm-builds/10574502/Sunshine-0.0.5260-1.src.rpm", "uses_devel_repo": null, "sandbox": "lizardbyte/pulls--0a035b7d-5fc0-4019-9f2b-7382ce5740ac", "results": { "architecture_specific_tags": { "fedora-42": {}, "fedora-43": {}, "fedora-44": {}, "fedora-rawhide": {}, "opensuse-leap-15.6": {} }, "name": "Sunshine", "epoch": null, "version": "0.0.5260", "release": "1" }, "appstream": false, "allow_user_ssh": null, "ssh_public_keys": null, "storage": null, "repos": [], "background": true, "distributions_in_build": [ "fedora-42", "fedora-43", "fedora-44", "fedora-rawhide", "opensuse-leap-15.6" ], "distributions_in_project": [ "fedora-42", "fedora-43", "fedora-44", "fedora-rawhide", "opensuse-leap-15.6" ], "destdir": "/var/lib/copr/public_html/results/lizardbyte/pulls:pr:5260", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5260", "result_dir": "10574502", "built_packages": "", "tags": [ "arch_x86_64" ], "rpmeta_prediction": null, "pkg_version": "0.0.5260-1", "id": 10574502, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2026-06-07 03:39:53,929][ INFO][PID:2313578] Sending fedora-messaging bus message in build.end [2026-06-07 03:39:54,392][ INFO][PID:2313578] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5260/srpm-builds/10574502/builder-live.log by gzip [2026-06-07 03:39:54,417][ INFO][PID:2313578] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5260/srpm-builds/10574502/builder-live.log' as PID 2446627 [2026-06-07 03:39:54,448][ INFO][PID:2313578] Finished after 0 seconds with exit code 0 (gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5260/srpm-builds/10574502/builder-live.log) [2026-06-07 03:39:54,453][ INFO][PID:2313578] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5260/srpm-builds/10574502/backend.log by gzip [2026-06-07 03:39:54,455][ INFO][PID:2313578] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5260/srpm-builds/10574502/backend.log' as PID 2446632