[2026-06-06 05:33:46,226][ INFO][PID:1386857] Marking build as starting [2026-06-06 05:33:46,280][ INFO][PID:1386857] Checking for cancel request [2026-06-06 05:33:46,282][ INFO][PID:1386857] VM allocation process starts [2026-06-06 05:33:46,294][ INFO][PID:1386857] Trying to allocate VM: ResallocHost, ticket_id=3312149, requested_tags=['arch_x86_64', 'copr_builder'] [2026-06-06 05:33:51,296][ INFO][PID:1386857] Checking for cancel request [2026-06-06 05:33:56,298][ INFO][PID:1386857] Checking for cancel request [2026-06-06 05:34:01,300][ INFO][PID:1386857] Checking for cancel request [2026-06-06 05:34:04,333][ INFO][PID:1386857] Allocated host ResallocHost, ticket_id=3312149, hostname=44.200.7.210, name=aws_x86_64_reserved_prod_10821722_20260606_050535, requested_tags=['arch_x86_64', 'copr_builder'] [2026-06-06 05:34:04,335][ INFO][PID:1386857] Allocating ssh connection to builder [2026-06-06 05:34:04,335][ INFO][PID:1386857] Checking that builder machine is OK [2026-06-06 05:34:04,734][ INFO][PID:1386857] Installed copr-rpmbuild version: 1.8 [2026-06-06 05:34:04,734][ INFO][PID:1386857] Running remote command: copr-builder-ready srpm-builds [2026-06-06 05:34:04,958][ INFO][PID:1386857] Red Hat subscription not needed for srpm-builds Builder is ready to be used [2026-06-06 05:34:04,959][ INFO][PID:1386857] Filling build.info file with builder info [2026-06-06 05:34:04,959][ INFO][PID:1386857] Checking for cancel request [2026-06-06 05:34:04,961][ INFO][PID:1386857] 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:5256", "submitter": null, "ended_on": null, "started_on": 1780724044.9609926, "submitted_on": null, "status": 3, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10572979", "build_id": 10572979, "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\": \"tmpvz1h3hbb\", \"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--58d06085-5636-441e-b873-dbe6540f0fa7", "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:5256", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5256", "result_dir": "10572979", "built_packages": "", "tags": [ "arch_x86_64" ], "rpmeta_prediction": null, "id": 10572979, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2026-06-06 05:34:05,009][ INFO][PID:1386857] Sending fedora-messaging bus message in build.start [2026-06-06 05:34:05,524][ INFO][PID:1386857] Sending fedora-messaging bus message in chroot.start [2026-06-06 05:34:05,567][ INFO][PID:1386857] Starting remote build: copr-rpmbuild --verbose --drop-resultdir --srpm --task-url https://copr.fedorainfracloud.org/backend/get-srpm-build-task/10572979 --detached [2026-06-06 05:34:06,064][ INFO][PID:1386857] The copr-rpmbuild seems started, per: stdout: stderr: Warning: Permanently added '44.200.7.210' (ED25519) to the list of known hosts. [2026-06-06 05:34:06,065][ INFO][PID:1386857] Downloading the builder-live.log file, attempt 1 [2026-06-06 05:34:06,067][ INFO][PID:1386857] Popen command started: ssh -F /home/copr/.ssh/config mockbuilder@44.200.7.210 copr-rpmbuild-log [2026-06-06 05:34:11,080][ INFO][PID:1386857] Periodic builder liveness probe: alive [2026-06-06 05:34:11,081][ INFO][PID:1386857] Checking for cancel request [2026-06-06 05:34:16,083][ INFO][PID:1386857] Checking for cancel request [2026-06-06 05:34:21,084][ INFO][PID:1386857] Checking for cancel request [2026-06-06 05:34:26,087][ INFO][PID:1386857] Checking for cancel request [2026-06-06 05:34:31,088][ INFO][PID:1386857] Checking for cancel request [2026-06-06 05:34:36,089][ INFO][PID:1386857] Checking for cancel request [2026-06-06 05:34:41,093][ INFO][PID:1386857] Checking for cancel request [2026-06-06 05:34:46,095][ INFO][PID:1386857] Checking for cancel request [2026-06-06 05:34:51,096][ INFO][PID:1386857] Checking for cancel request [2026-06-06 05:34:56,098][ INFO][PID:1386857] Checking for cancel request [2026-06-06 05:35:01,100][ INFO][PID:1386857] Checking for cancel request [2026-06-06 05:35:06,103][ INFO][PID:1386857] Checking for cancel request [2026-06-06 05:35:11,171][ INFO][PID:1386857] Checking for cancel request [2026-06-06 05:35:16,173][ INFO][PID:1386857] Checking for cancel request [2026-06-06 05:35:21,174][ INFO][PID:1386857] Checking for cancel request [2026-06-06 05:35:26,176][ INFO][PID:1386857] Checking for cancel request [2026-06-06 05:35:31,177][ INFO][PID:1386857] Checking for cancel request [2026-06-06 05:35:36,178][ INFO][PID:1386857] Checking for cancel request [2026-06-06 05:35:41,180][ INFO][PID:1386857] Checking for cancel request [2026-06-06 05:35:46,181][ INFO][PID:1386857] Checking for cancel request [2026-06-06 05:35:51,185][ INFO][PID:1386857] Checking for cancel request [2026-06-06 05:35:56,187][ INFO][PID:1386857] Checking for cancel request [2026-06-06 05:36:01,338][ INFO][PID:1386857] Checking for cancel request [2026-06-06 05:36:06,413][ INFO][PID:1386857] Checking for cancel request [2026-06-06 05:36:11,496][ INFO][PID:1386857] Checking for cancel request [2026-06-06 05:36:16,718][ INFO][PID:1386857] Checking for cancel request [2026-06-06 05:36:21,720][ INFO][PID:1386857] Checking for cancel request [2026-06-06 05:36:26,722][ INFO][PID:1386857] Checking for cancel request [2026-06-06 05:36:31,726][ INFO][PID:1386857] Checking for cancel request [2026-06-06 05:36:36,897][ INFO][PID:1386857] Checking for cancel request [2026-06-06 05:36:41,899][ INFO][PID:1386857] Checking for cancel request [2026-06-06 05:36:47,455][ INFO][PID:1386857] Checking for cancel request [2026-06-06 05:36:52,599][ INFO][PID:1386857] Checking for cancel request [2026-06-06 05:36:57,601][ INFO][PID:1386857] Checking for cancel request [2026-06-06 05:37:02,679][ INFO][PID:1386857] Checking for cancel request [2026-06-06 05:37:07,961][ INFO][PID:1386857] Checking for cancel request [2026-06-06 05:37:13,184][ INFO][PID:1386857] Checking for cancel request [2026-06-06 05:37:18,216][ INFO][PID:1386857] Checking for cancel request [2026-06-06 05:37:23,255][ INFO][PID:1386857] Checking for cancel request [2026-06-06 05:37:28,282][ INFO][PID:1386857] Checking for cancel request [2026-06-06 05:37:33,358][ INFO][PID:1386857] Checking for cancel request [2026-06-06 05:37:38,677][ INFO][PID:1386857] Checking for cancel request [2026-06-06 05:37:43,681][ INFO][PID:1386857] Checking for cancel request [2026-06-06 05:37:48,717][ INFO][PID:1386857] Checking for cancel request [2026-06-06 05:37:53,729][ INFO][PID:1386857] Checking for cancel request [2026-06-06 05:37:59,052][ INFO][PID:1386857] Checking for cancel request [2026-06-06 05:38:04,054][ INFO][PID:1386857] Checking for cancel request [2026-06-06 05:38:09,056][ INFO][PID:1386857] Checking for cancel request [2026-06-06 05:38:14,101][ INFO][PID:1386857] Checking for cancel request [2026-06-06 05:38:19,169][ INFO][PID:1386857] Checking for cancel request [2026-06-06 05:38:24,287][ INFO][PID:1386857] Checking for cancel request [2026-06-06 05:38:29,292][ INFO][PID:1386857] Checking for cancel request [2026-06-06 05:38:34,302][ INFO][PID:1386857] Checking for cancel request [2026-06-06 05:38:39,307][ INFO][PID:1386857] Checking for cancel request [2026-06-06 05:38:44,464][ INFO][PID:1386857] Checking for cancel request [2026-06-06 05:38:49,567][ INFO][PID:1386857] Checking for cancel request [2026-06-06 05:38:54,569][ INFO][PID:1386857] Checking for cancel request [2026-06-06 05:38:59,570][ INFO][PID:1386857] Checking for cancel request [2026-06-06 05:39:04,688][ INFO][PID:1386857] Checking for cancel request [2026-06-06 05:39:09,749][ INFO][PID:1386857] Checking for cancel request [2026-06-06 05:39:14,880][ INFO][PID:1386857] Checking for cancel request [2026-06-06 05:39:20,100][ INFO][PID:1386857] Checking for cancel request [2026-06-06 05:39:25,151][ INFO][PID:1386857] Checking for cancel request [2026-06-06 05:39:30,153][ INFO][PID:1386857] Checking for cancel request [2026-06-06 05:39:35,155][ INFO][PID:1386857] Checking for cancel request [2026-06-06 05:39:40,273][ INFO][PID:1386857] Checking for cancel request [2026-06-06 05:39:45,314][ INFO][PID:1386857] Checking for cancel request [2026-06-06 05:39:50,315][ INFO][PID:1386857] Checking for cancel request [2026-06-06 05:39:55,364][ INFO][PID:1386857] Checking for cancel request [2026-06-06 05:40:00,448][ INFO][PID:1386857] Checking for cancel request [2026-06-06 05:40:05,501][ INFO][PID:1386857] Checking for cancel request [2026-06-06 05:40:10,585][ INFO][PID:1386857] Checking for cancel request [2026-06-06 05:40:15,588][ INFO][PID:1386857] Checking for cancel request [2026-06-06 05:40:20,903][ INFO][PID:1386857] Checking for cancel request [2026-06-06 05:40:25,931][ INFO][PID:1386857] Checking for cancel request [2026-06-06 05:40:31,185][ INFO][PID:1386857] Checking for cancel request [2026-06-06 05:40:36,214][ INFO][PID:1386857] Checking for cancel request [2026-06-06 05:40:41,216][ INFO][PID:1386857] Checking for cancel request [2026-06-06 05:40:46,311][ INFO][PID:1386857] Checking for cancel request [2026-06-06 05:40:51,378][ INFO][PID:1386857] Checking for cancel request [2026-06-06 05:40:56,386][ INFO][PID:1386857] Checking for cancel request [2026-06-06 05:41:01,389][ INFO][PID:1386857] Checking for cancel request [2026-06-06 05:41:06,392][ INFO][PID:1386857] Checking for cancel request [2026-06-06 05:41:11,450][ INFO][PID:1386857] Checking for cancel request [2026-06-06 05:41:16,451][ INFO][PID:1386857] Checking for cancel request [2026-06-06 05:41:21,548][ INFO][PID:1386857] Checking for cancel request [2026-06-06 05:41:26,633][ INFO][PID:1386857] Checking for cancel request [2026-06-06 05:41:31,637][ INFO][PID:1386857] Checking for cancel request [2026-06-06 05:41:36,691][ INFO][PID:1386857] Checking for cancel request [2026-06-06 05:41:41,820][ INFO][PID:1386857] Checking for cancel request [2026-06-06 05:41:46,829][ INFO][PID:1386857] Checking for cancel request [2026-06-06 05:41:51,875][ INFO][PID:1386857] Checking for cancel request [2026-06-06 05:41:56,991][ INFO][PID:1386857] Checking for cancel request [2026-06-06 05:42:02,176][ INFO][PID:1386857] Checking for cancel request [2026-06-06 05:42:07,203][ INFO][PID:1386857] Checking for cancel request [2026-06-06 05:42:12,255][ INFO][PID:1386857] Checking for cancel request [2026-06-06 05:42:17,363][ INFO][PID:1386857] Checking for cancel request [2026-06-06 05:42:22,366][ INFO][PID:1386857] Checking for cancel request [2026-06-06 05:42:27,368][ INFO][PID:1386857] Checking for cancel request [2026-06-06 05:42:32,369][ INFO][PID:1386857] Checking for cancel request [2026-06-06 05:42:37,621][ INFO][PID:1386857] Checking for cancel request [2026-06-06 05:42:43,779][ INFO][PID:1386857] Checking for cancel request [2026-06-06 05:42:48,887][ INFO][PID:1386857] Checking for cancel request [2026-06-06 05:42:53,978][ INFO][PID:1386857] Checking for cancel request [2026-06-06 05:42:58,998][ INFO][PID:1386857] Checking for cancel request [2026-06-06 05:43:04,161][ INFO][PID:1386857] Checking for cancel request [2026-06-06 05:43:09,924][ INFO][PID:1386857] Checking for cancel request [2026-06-06 05:43:14,965][ INFO][PID:1386857] Checking for cancel request [2026-06-06 05:43:20,018][ INFO][PID:1386857] Checking for cancel request [2026-06-06 05:43:25,240][ INFO][PID:1386857] Checking for cancel request [2026-06-06 05:43:26,006][ INFO][PID:1386857] Downloading results from builder [2026-06-06 05:43:26,040][ INFO][PID:1386857] rsyncing of mockbuilder@44.200.7.210:/var/lib/copr-rpmbuild/results/ to /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5256/srpm-builds/10572979 started [2026-06-06 05:43:26,116][ INFO][PID:1386857] Popen command started: /usr/bin/rsync -rltDvH --chmod=D755,F644 -e 'ssh -F /home/copr/.ssh/config' mockbuilder@44.200.7.210:/var/lib/copr-rpmbuild/results/ /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5256/srpm-builds/10572979/ &> /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5256/srpm-builds/10572979/build-10572979.rsync.log [2026-06-06 05:51:23,671][ INFO][PID:1386857] rsyncing finished. [2026-06-06 05:51:23,683][ INFO][PID:1386857] VM Release request [2026-06-06 05:51:24,018][ INFO][PID:1386857] Searching for 'success' file in resultdir [2026-06-06 05:51:24,209][ INFO][PID:1386857] Getting build details [2026-06-06 05:51:24,211][ INFO][PID:1386857] Retrieving SRPM info from /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5256/srpm-builds/10572979 [2026-06-06 05:51:24,260][ INFO][PID:1386857] SRPM URL: https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5256/srpm-builds/10572979/Sunshine-0.0.5256-1.src.rpm [2026-06-06 05:51:24,261][ INFO][PID:1386857] build details: {'srpm_url': 'https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5256/srpm-builds/10572979/Sunshine-0.0.5256-1.src.rpm', 'pkg_name': 'Sunshine', 'pkg_version': '0.0.5256-1'} [2026-06-06 05:51:24,273][ INFO][PID:1386857] Finished build: id=10572979 failed=False timeout=108000 destdir=/var/lib/copr/public_html/results/lizardbyte/pulls:pr:5256 chroot=srpm-builds [2026-06-06 05:51:24,389][ INFO][PID:1386857] Worker succeeded build, took 1039.4276506900787 [2026-06-06 05:51:24,399][ INFO][PID:1386857] 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:5256", "submitter": null, "ended_on": 1780725084.3886433, "started_on": 1780724044.9609926, "submitted_on": null, "status": 1, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10572979", "build_id": 10572979, "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\": \"tmpvz1h3hbb\", \"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:5256/srpm-builds/10572979/Sunshine-0.0.5256-1.src.rpm", "uses_devel_repo": null, "sandbox": "lizardbyte/pulls--58d06085-5636-441e-b873-dbe6540f0fa7", "results": { "architecture_specific_tags": { "fedora-42": {}, "fedora-43": {}, "fedora-44": {}, "fedora-rawhide": {}, "opensuse-leap-15.6": {} }, "name": "Sunshine", "epoch": null, "version": "0.0.5256", "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:5256", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5256", "result_dir": "10572979", "built_packages": "", "tags": [ "arch_x86_64" ], "rpmeta_prediction": null, "pkg_version": "0.0.5256-1", "id": 10572979, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2026-06-06 05:51:25,386][ INFO][PID:1386857] Sending fedora-messaging bus message in build.end [2026-06-06 05:51:25,769][ INFO][PID:1386857] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5256/srpm-builds/10572979/builder-live.log by gzip [2026-06-06 05:51:25,795][ INFO][PID:1386857] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5256/srpm-builds/10572979/builder-live.log' as PID 1495981 [2026-06-06 05:51:26,093][ INFO][PID:1386857] Finished after 0 seconds with exit code 0 (gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5256/srpm-builds/10572979/builder-live.log) [2026-06-06 05:51:26,096][ INFO][PID:1386857] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5256/srpm-builds/10572979/backend.log by gzip [2026-06-06 05:51:26,098][ INFO][PID:1386857] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5256/srpm-builds/10572979/backend.log' as PID 1495992