[2026-06-07 12:48:09,757][ INFO][PID:2431707] Marking build as starting [2026-06-07 12:48:09,799][ INFO][PID:2431707] Checking for cancel request [2026-06-07 12:48:09,801][ INFO][PID:2431707] VM allocation process starts [2026-06-07 12:48:09,812][ INFO][PID:2431707] Trying to allocate VM: ResallocHost, ticket_id=3324635, requested_tags=['arch_x86_64', 'copr_builder'] [2026-06-07 12:48:14,814][ INFO][PID:2431707] Checking for cancel request [2026-06-07 12:48:19,818][ INFO][PID:2431707] Checking for cancel request [2026-06-07 12:48:21,852][ INFO][PID:2431707] Allocated host ResallocHost, ticket_id=3324635, hostname=13.222.182.125, name=aws_x86_64_reserved_prod_11205764_20260607_123145, requested_tags=['arch_x86_64', 'copr_builder'] [2026-06-07 12:48:21,853][ INFO][PID:2431707] Allocating ssh connection to builder [2026-06-07 12:48:21,854][ INFO][PID:2431707] Checking that builder machine is OK [2026-06-07 12:48:22,212][ INFO][PID:2431707] Installed copr-rpmbuild version: 1.8 [2026-06-07 12:48:22,243][ INFO][PID:2431707] Running remote command: copr-builder-ready srpm-builds [2026-06-07 12:48:22,474][ INFO][PID:2431707] Red Hat subscription not needed for srpm-builds Builder is ready to be used [2026-06-07 12:48:22,478][ INFO][PID:2431707] Filling build.info file with builder info [2026-06-07 12:48:22,480][ INFO][PID:2431707] Checking for cancel request [2026-06-07 12:48:22,482][ INFO][PID:2431707] 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": 1780836502.4825125, "submitted_on": null, "status": 3, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10575896", "build_id": 10575896, "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\": \"tmpfvddgv_f\", \"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--4588f443-55c7-44be-8926-3f854024c72b", "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": "10575896", "built_packages": "", "tags": [ "arch_x86_64" ], "rpmeta_prediction": null, "id": 10575896, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2026-06-07 12:48:22,530][ INFO][PID:2431707] Sending fedora-messaging bus message in build.start [2026-06-07 12:48:23,365][ INFO][PID:2431707] Sending fedora-messaging bus message in chroot.start [2026-06-07 12:48:23,392][ INFO][PID:2431707] Starting remote build: copr-rpmbuild --verbose --drop-resultdir --srpm --task-url https://copr.fedorainfracloud.org/backend/get-srpm-build-task/10575896 --detached [2026-06-07 12:48:23,867][ INFO][PID:2431707] The copr-rpmbuild seems started, per: stdout: stderr: Warning: Permanently added '13.222.182.125' (ED25519) to the list of known hosts. [2026-06-07 12:48:23,868][ INFO][PID:2431707] Downloading the builder-live.log file, attempt 1 [2026-06-07 12:48:23,870][ INFO][PID:2431707] Popen command started: ssh -F /home/copr/.ssh/config mockbuilder@13.222.182.125 copr-rpmbuild-log [2026-06-07 12:48:28,876][ INFO][PID:2431707] Periodic builder liveness probe: alive [2026-06-07 12:48:28,877][ INFO][PID:2431707] Checking for cancel request [2026-06-07 12:48:33,879][ INFO][PID:2431707] Checking for cancel request [2026-06-07 12:48:38,880][ INFO][PID:2431707] Checking for cancel request [2026-06-07 12:48:43,882][ INFO][PID:2431707] Checking for cancel request [2026-06-07 12:48:48,883][ INFO][PID:2431707] Checking for cancel request [2026-06-07 12:48:53,899][ INFO][PID:2431707] Checking for cancel request [2026-06-07 12:48:58,901][ INFO][PID:2431707] Checking for cancel request [2026-06-07 12:49:03,902][ INFO][PID:2431707] Checking for cancel request [2026-06-07 12:49:08,903][ INFO][PID:2431707] Checking for cancel request [2026-06-07 12:49:13,905][ INFO][PID:2431707] Checking for cancel request [2026-06-07 12:49:18,906][ INFO][PID:2431707] Checking for cancel request [2026-06-07 12:49:23,907][ INFO][PID:2431707] Checking for cancel request [2026-06-07 12:49:28,909][ INFO][PID:2431707] Checking for cancel request [2026-06-07 12:49:33,910][ INFO][PID:2431707] Checking for cancel request [2026-06-07 12:49:38,912][ INFO][PID:2431707] Checking for cancel request [2026-06-07 12:49:43,913][ INFO][PID:2431707] Checking for cancel request [2026-06-07 12:49:48,915][ INFO][PID:2431707] Checking for cancel request [2026-06-07 12:49:53,916][ INFO][PID:2431707] Checking for cancel request [2026-06-07 12:49:58,917][ INFO][PID:2431707] Checking for cancel request [2026-06-07 12:50:03,924][ INFO][PID:2431707] Checking for cancel request [2026-06-07 12:50:08,925][ INFO][PID:2431707] Checking for cancel request [2026-06-07 12:50:13,926][ INFO][PID:2431707] Checking for cancel request [2026-06-07 12:50:18,928][ INFO][PID:2431707] Checking for cancel request [2026-06-07 12:50:23,929][ INFO][PID:2431707] Checking for cancel request [2026-06-07 12:50:28,930][ INFO][PID:2431707] Checking for cancel request [2026-06-07 12:50:33,932][ INFO][PID:2431707] Checking for cancel request [2026-06-07 12:50:38,933][ INFO][PID:2431707] Checking for cancel request [2026-06-07 12:50:43,934][ INFO][PID:2431707] Checking for cancel request [2026-06-07 12:50:48,936][ INFO][PID:2431707] Checking for cancel request [2026-06-07 12:50:53,937][ INFO][PID:2431707] Checking for cancel request [2026-06-07 12:50:58,939][ INFO][PID:2431707] Checking for cancel request [2026-06-07 12:51:03,940][ INFO][PID:2431707] Checking for cancel request [2026-06-07 12:51:08,941][ INFO][PID:2431707] Checking for cancel request [2026-06-07 12:51:13,943][ INFO][PID:2431707] Checking for cancel request [2026-06-07 12:51:18,944][ INFO][PID:2431707] Checking for cancel request [2026-06-07 12:51:23,945][ INFO][PID:2431707] Checking for cancel request [2026-06-07 12:51:28,946][ INFO][PID:2431707] Checking for cancel request [2026-06-07 12:51:33,948][ INFO][PID:2431707] Checking for cancel request [2026-06-07 12:51:38,949][ INFO][PID:2431707] Checking for cancel request [2026-06-07 12:51:43,972][ INFO][PID:2431707] Checking for cancel request [2026-06-07 12:51:48,973][ INFO][PID:2431707] Checking for cancel request [2026-06-07 12:51:53,974][ INFO][PID:2431707] Checking for cancel request [2026-06-07 12:51:58,975][ INFO][PID:2431707] Checking for cancel request [2026-06-07 12:52:03,977][ INFO][PID:2431707] Checking for cancel request [2026-06-07 12:52:09,033][ INFO][PID:2431707] Checking for cancel request [2026-06-07 12:52:14,035][ INFO][PID:2431707] Checking for cancel request [2026-06-07 12:52:19,290][ INFO][PID:2431707] Checking for cancel request [2026-06-07 12:52:24,294][ INFO][PID:2431707] Checking for cancel request [2026-06-07 12:52:29,295][ INFO][PID:2431707] Checking for cancel request [2026-06-07 12:52:34,915][ INFO][PID:2431707] Checking for cancel request [2026-06-07 12:52:39,919][ INFO][PID:2431707] Checking for cancel request [2026-06-07 12:52:44,920][ INFO][PID:2431707] Checking for cancel request [2026-06-07 12:52:49,921][ INFO][PID:2431707] Checking for cancel request [2026-06-07 12:52:54,922][ INFO][PID:2431707] Checking for cancel request [2026-06-07 12:52:59,924][ INFO][PID:2431707] Checking for cancel request [2026-06-07 12:53:04,925][ INFO][PID:2431707] Checking for cancel request [2026-06-07 12:53:09,926][ INFO][PID:2431707] Checking for cancel request [2026-06-07 12:53:14,928][ INFO][PID:2431707] Checking for cancel request [2026-06-07 12:53:19,929][ INFO][PID:2431707] Checking for cancel request [2026-06-07 12:53:24,931][ INFO][PID:2431707] Checking for cancel request [2026-06-07 12:53:29,932][ INFO][PID:2431707] Checking for cancel request [2026-06-07 12:53:34,934][ INFO][PID:2431707] Checking for cancel request [2026-06-07 12:53:40,405][ INFO][PID:2431707] Checking for cancel request [2026-06-07 12:53:45,408][ INFO][PID:2431707] Checking for cancel request [2026-06-07 12:53:50,410][ INFO][PID:2431707] Checking for cancel request [2026-06-07 12:53:55,412][ INFO][PID:2431707] Checking for cancel request [2026-06-07 12:54:00,413][ INFO][PID:2431707] Checking for cancel request [2026-06-07 12:54:05,415][ INFO][PID:2431707] Checking for cancel request [2026-06-07 12:54:10,416][ INFO][PID:2431707] Checking for cancel request [2026-06-07 12:54:15,418][ INFO][PID:2431707] Checking for cancel request [2026-06-07 12:54:20,420][ INFO][PID:2431707] Checking for cancel request [2026-06-07 12:54:25,422][ INFO][PID:2431707] Checking for cancel request [2026-06-07 12:54:30,485][ INFO][PID:2431707] Checking for cancel request [2026-06-07 12:54:35,492][ INFO][PID:2431707] Checking for cancel request [2026-06-07 12:54:40,495][ INFO][PID:2431707] Checking for cancel request [2026-06-07 12:54:45,498][ INFO][PID:2431707] Checking for cancel request [2026-06-07 12:54:50,532][ INFO][PID:2431707] Checking for cancel request [2026-06-07 12:54:55,639][ INFO][PID:2431707] Checking for cancel request [2026-06-07 12:55:00,659][ INFO][PID:2431707] Checking for cancel request [2026-06-07 12:55:05,661][ INFO][PID:2431707] Checking for cancel request [2026-06-07 12:55:10,663][ INFO][PID:2431707] Checking for cancel request [2026-06-07 12:55:15,820][ INFO][PID:2431707] Checking for cancel request [2026-06-07 12:55:20,824][ INFO][PID:2431707] Checking for cancel request [2026-06-07 12:55:25,827][ INFO][PID:2431707] Checking for cancel request [2026-06-07 12:55:30,829][ INFO][PID:2431707] Checking for cancel request [2026-06-07 12:55:35,831][ INFO][PID:2431707] Checking for cancel request [2026-06-07 12:55:40,833][ INFO][PID:2431707] Checking for cancel request [2026-06-07 12:55:45,837][ INFO][PID:2431707] Checking for cancel request [2026-06-07 12:55:50,839][ INFO][PID:2431707] Checking for cancel request [2026-06-07 12:55:55,844][ INFO][PID:2431707] Checking for cancel request [2026-06-07 12:56:00,845][ INFO][PID:2431707] Checking for cancel request [2026-06-07 12:56:05,905][ INFO][PID:2431707] Checking for cancel request [2026-06-07 12:56:11,038][ INFO][PID:2431707] Checking for cancel request [2026-06-07 12:56:16,234][ INFO][PID:2431707] Checking for cancel request [2026-06-07 12:56:21,237][ INFO][PID:2431707] Checking for cancel request [2026-06-07 12:56:26,240][ INFO][PID:2431707] Checking for cancel request [2026-06-07 12:56:31,242][ INFO][PID:2431707] Checking for cancel request [2026-06-07 12:56:36,246][ INFO][PID:2431707] Checking for cancel request [2026-06-07 12:56:41,248][ INFO][PID:2431707] Checking for cancel request [2026-06-07 12:56:46,249][ INFO][PID:2431707] Checking for cancel request [2026-06-07 12:56:51,250][ INFO][PID:2431707] Checking for cancel request [2026-06-07 12:56:56,252][ INFO][PID:2431707] Checking for cancel request [2026-06-07 12:57:01,254][ INFO][PID:2431707] Checking for cancel request [2026-06-07 12:57:06,255][ INFO][PID:2431707] Checking for cancel request [2026-06-07 12:57:11,257][ INFO][PID:2431707] Checking for cancel request [2026-06-07 12:57:16,260][ INFO][PID:2431707] Checking for cancel request [2026-06-07 12:57:21,262][ INFO][PID:2431707] Checking for cancel request [2026-06-07 12:57:26,264][ INFO][PID:2431707] Checking for cancel request [2026-06-07 12:57:31,265][ INFO][PID:2431707] Checking for cancel request [2026-06-07 12:57:36,267][ INFO][PID:2431707] Checking for cancel request [2026-06-07 12:57:41,271][ INFO][PID:2431707] Checking for cancel request [2026-06-07 12:57:46,272][ INFO][PID:2431707] Checking for cancel request [2026-06-07 12:57:51,274][ INFO][PID:2431707] Checking for cancel request [2026-06-07 12:57:56,275][ INFO][PID:2431707] Checking for cancel request [2026-06-07 12:58:01,276][ INFO][PID:2431707] Checking for cancel request [2026-06-07 12:58:06,298][ INFO][PID:2431707] Checking for cancel request [2026-06-07 12:58:11,368][ INFO][PID:2431707] Checking for cancel request [2026-06-07 12:58:16,369][ INFO][PID:2431707] Checking for cancel request [2026-06-07 12:58:21,371][ INFO][PID:2431707] Checking for cancel request [2026-06-07 12:58:26,503][ INFO][PID:2431707] Checking for cancel request [2026-06-07 12:58:31,516][ INFO][PID:2431707] Periodic builder liveness probe: alive [2026-06-07 12:58:31,520][ INFO][PID:2431707] Checking for cancel request [2026-06-07 12:58:36,521][ INFO][PID:2431707] Checking for cancel request [2026-06-07 12:58:41,591][ INFO][PID:2431707] Checking for cancel request [2026-06-07 12:58:46,593][ INFO][PID:2431707] Checking for cancel request [2026-06-07 12:58:51,596][ INFO][PID:2431707] Checking for cancel request [2026-06-07 12:58:56,597][ INFO][PID:2431707] Checking for cancel request [2026-06-07 12:59:01,647][ INFO][PID:2431707] Checking for cancel request [2026-06-07 12:59:06,663][ INFO][PID:2431707] Checking for cancel request [2026-06-07 12:59:11,669][ INFO][PID:2431707] Checking for cancel request [2026-06-07 12:59:16,671][ INFO][PID:2431707] Checking for cancel request [2026-06-07 12:59:21,779][ INFO][PID:2431707] Checking for cancel request [2026-06-07 12:59:26,781][ INFO][PID:2431707] Checking for cancel request [2026-06-07 12:59:31,821][ INFO][PID:2431707] Checking for cancel request [2026-06-07 12:59:36,825][ INFO][PID:2431707] Checking for cancel request [2026-06-07 12:59:41,828][ INFO][PID:2431707] Checking for cancel request [2026-06-07 12:59:46,941][ INFO][PID:2431707] Checking for cancel request [2026-06-07 12:59:52,202][ INFO][PID:2431707] Checking for cancel request [2026-06-07 12:59:57,204][ INFO][PID:2431707] Checking for cancel request [2026-06-07 13:00:02,206][ INFO][PID:2431707] Checking for cancel request [2026-06-07 13:00:07,211][ INFO][PID:2431707] Checking for cancel request [2026-06-07 13:00:12,216][ INFO][PID:2431707] Checking for cancel request [2026-06-07 13:00:17,218][ INFO][PID:2431707] Checking for cancel request [2026-06-07 13:00:22,220][ INFO][PID:2431707] Checking for cancel request [2026-06-07 13:00:27,224][ INFO][PID:2431707] Checking for cancel request [2026-06-07 13:00:32,225][ INFO][PID:2431707] Checking for cancel request [2026-06-07 13:00:37,227][ INFO][PID:2431707] Checking for cancel request [2026-06-07 13:00:42,232][ INFO][PID:2431707] Checking for cancel request [2026-06-07 13:00:47,233][ INFO][PID:2431707] Checking for cancel request [2026-06-07 13:00:52,340][ INFO][PID:2431707] Checking for cancel request [2026-06-07 13:00:57,343][ INFO][PID:2431707] Checking for cancel request [2026-06-07 13:01:02,346][ INFO][PID:2431707] Checking for cancel request [2026-06-07 13:01:07,349][ INFO][PID:2431707] Checking for cancel request [2026-06-07 13:01:12,350][ INFO][PID:2431707] Checking for cancel request [2026-06-07 13:01:17,351][ INFO][PID:2431707] Checking for cancel request [2026-06-07 13:01:22,353][ INFO][PID:2431707] Checking for cancel request [2026-06-07 13:01:27,357][ INFO][PID:2431707] Checking for cancel request [2026-06-07 13:01:32,358][ INFO][PID:2431707] Checking for cancel request [2026-06-07 13:01:37,362][ INFO][PID:2431707] Checking for cancel request [2026-06-07 13:01:42,363][ INFO][PID:2431707] Checking for cancel request [2026-06-07 13:01:47,364][ INFO][PID:2431707] Checking for cancel request [2026-06-07 13:01:52,400][ INFO][PID:2431707] Checking for cancel request [2026-06-07 13:01:57,405][ INFO][PID:2431707] Checking for cancel request [2026-06-07 13:02:02,477][ INFO][PID:2431707] Checking for cancel request [2026-06-07 13:02:07,479][ INFO][PID:2431707] Checking for cancel request [2026-06-07 13:02:12,480][ INFO][PID:2431707] Checking for cancel request [2026-06-07 13:02:17,482][ INFO][PID:2431707] Checking for cancel request [2026-06-07 13:02:22,495][ INFO][PID:2431707] Checking for cancel request [2026-06-07 13:02:27,548][ INFO][PID:2431707] Checking for cancel request [2026-06-07 13:02:32,609][ INFO][PID:2431707] Checking for cancel request [2026-06-07 13:02:37,616][ INFO][PID:2431707] Checking for cancel request [2026-06-07 13:02:42,716][ INFO][PID:2431707] Checking for cancel request [2026-06-07 13:02:47,900][ INFO][PID:2431707] Checking for cancel request [2026-06-07 13:02:52,906][ INFO][PID:2431707] Checking for cancel request [2026-06-07 13:02:57,908][ INFO][PID:2431707] Checking for cancel request [2026-06-07 13:03:02,909][ INFO][PID:2431707] Checking for cancel request [2026-06-07 13:03:08,055][ INFO][PID:2431707] Checking for cancel request [2026-06-07 13:03:13,203][ INFO][PID:2431707] Checking for cancel request [2026-06-07 13:03:18,204][ INFO][PID:2431707] Checking for cancel request [2026-06-07 13:03:23,209][ INFO][PID:2431707] Checking for cancel request [2026-06-07 13:03:28,249][ INFO][PID:2431707] Checking for cancel request [2026-06-07 13:03:33,250][ INFO][PID:2431707] Checking for cancel request [2026-06-07 13:03:38,252][ INFO][PID:2431707] Checking for cancel request [2026-06-07 13:03:43,277][ INFO][PID:2431707] Checking for cancel request [2026-06-07 13:03:48,438][ INFO][PID:2431707] Checking for cancel request [2026-06-07 13:03:53,874][ INFO][PID:2431707] Checking for cancel request [2026-06-07 13:03:59,096][ INFO][PID:2431707] Checking for cancel request [2026-06-07 13:04:04,463][ INFO][PID:2431707] Checking for cancel request [2026-06-07 13:04:09,744][ INFO][PID:2431707] Checking for cancel request [2026-06-07 13:04:15,083][ INFO][PID:2431707] Checking for cancel request [2026-06-07 13:04:20,361][ INFO][PID:2431707] Checking for cancel request [2026-06-07 13:04:25,501][ INFO][PID:2431707] Checking for cancel request [2026-06-07 13:04:30,617][ INFO][PID:2431707] Checking for cancel request [2026-06-07 13:04:35,619][ INFO][PID:2431707] Checking for cancel request [2026-06-07 13:04:40,664][ INFO][PID:2431707] Checking for cancel request [2026-06-07 13:04:44,569][ INFO][PID:2431707] Downloading results from builder [2026-06-07 13:04:44,645][ INFO][PID:2431707] rsyncing of mockbuilder@13.222.182.125:/var/lib/copr-rpmbuild/results/ to /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5260/srpm-builds/10575896 started [2026-06-07 13:04:44,667][ INFO][PID:2431707] Popen command started: /usr/bin/rsync -rltDvH --chmod=D755,F644 -e 'ssh -F /home/copr/.ssh/config' mockbuilder@13.222.182.125:/var/lib/copr-rpmbuild/results/ /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5260/srpm-builds/10575896/ &> /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5260/srpm-builds/10575896/build-10575896.rsync.log [2026-06-07 13:04:49,375][ INFO][PID:2431707] rsyncing finished. [2026-06-07 13:04:49,379][ INFO][PID:2431707] VM Release request [2026-06-07 13:04:49,404][ INFO][PID:2431707] Searching for 'success' file in resultdir [2026-06-07 13:04:49,433][ INFO][PID:2431707] Getting build details [2026-06-07 13:04:49,434][ INFO][PID:2431707] Retrieving SRPM info from /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5260/srpm-builds/10575896 [2026-06-07 13:04:49,471][ INFO][PID:2431707] SRPM URL: https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5260/srpm-builds/10575896/Sunshine-0.0.5260-1.src.rpm [2026-06-07 13:04:49,476][ INFO][PID:2431707] build details: {'srpm_url': 'https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5260/srpm-builds/10575896/Sunshine-0.0.5260-1.src.rpm', 'pkg_name': 'Sunshine', 'pkg_version': '0.0.5260-1'} [2026-06-07 13:04:49,484][ INFO][PID:2431707] Finished build: id=10575896 failed=False timeout=108000 destdir=/var/lib/copr/public_html/results/lizardbyte/pulls:pr:5260 chroot=srpm-builds [2026-06-07 13:04:49,524][ INFO][PID:2431707] Worker succeeded build, took 987.0419991016388 [2026-06-07 13:04:49,526][ INFO][PID:2431707] 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": 1780837489.5245116, "started_on": 1780836502.4825125, "submitted_on": null, "status": 1, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10575896", "build_id": 10575896, "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\": \"tmpfvddgv_f\", \"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/10575896/Sunshine-0.0.5260-1.src.rpm", "uses_devel_repo": null, "sandbox": "lizardbyte/pulls--4588f443-55c7-44be-8926-3f854024c72b", "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": "10575896", "built_packages": "", "tags": [ "arch_x86_64" ], "rpmeta_prediction": null, "pkg_version": "0.0.5260-1", "id": 10575896, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2026-06-07 13:04:49,828][ INFO][PID:2431707] Sending fedora-messaging bus message in build.end [2026-06-07 13:04:50,219][ INFO][PID:2431707] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5260/srpm-builds/10575896/builder-live.log by gzip [2026-06-07 13:04:50,238][ INFO][PID:2431707] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5260/srpm-builds/10575896/builder-live.log' as PID 2549887 [2026-06-07 13:04:50,525][ INFO][PID:2431707] Finished after 0 seconds with exit code 0 (gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5260/srpm-builds/10575896/builder-live.log) [2026-06-07 13:04:50,529][ INFO][PID:2431707] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5260/srpm-builds/10575896/backend.log by gzip [2026-06-07 13:04:50,531][ INFO][PID:2431707] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5260/srpm-builds/10575896/backend.log' as PID 2549908