[2026-05-16 21:24:43,850][ INFO][PID:3577175] Marking build as starting [2026-05-16 21:24:43,889][ INFO][PID:3577175] Checking for cancel request [2026-05-16 21:24:43,890][ INFO][PID:3577175] VM allocation process starts [2026-05-16 21:24:43,902][ INFO][PID:3577175] Trying to allocate VM: ResallocHost, ticket_id=2922543, requested_tags=['arch_x86_64', 'copr_builder'] [2026-05-16 21:24:46,948][ INFO][PID:3577175] Allocated host ResallocHost, ticket_id=2922543, hostname=44.200.68.238, name=aws_x86_64_reserved_prod_08880464_20260516_210905, requested_tags=['arch_x86_64', 'copr_builder'] [2026-05-16 21:24:46,949][ INFO][PID:3577175] Allocating ssh connection to builder [2026-05-16 21:24:46,950][ INFO][PID:3577175] Checking that builder machine is OK [2026-05-16 21:24:47,308][ INFO][PID:3577175] Installed copr-rpmbuild version: 1.8 [2026-05-16 21:24:47,309][ INFO][PID:3577175] Running remote command: copr-builder-ready srpm-builds [2026-05-16 21:24:47,529][ INFO][PID:3577175] Red Hat subscription not needed for srpm-builds Builder is ready to be used [2026-05-16 21:24:47,530][ INFO][PID:3577175] Filling build.info file with builder info [2026-05-16 21:24:47,979][ INFO][PID:3577175] Checking for cancel request [2026-05-16 21:24:47,980][ INFO][PID:3577175] 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": "stable", "project_dirname": "stable", "submitter": null, "ended_on": null, "started_on": 1778966687.9804194, "submitted_on": null, "status": 3, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10467825", "build_id": 10467825, "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\": \"tmphsfth4fc\", \"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/stable--a7579dfb-8eea-43c7-8997-927f55caf289", "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/stable", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/lizardbyte/stable", "result_dir": "10467825", "built_packages": "", "tags": [ "arch_x86_64" ], "id": 10467825, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "stable", "vendor": "Fedora Project COPR (lizardbyte/stable)" } } ] } [2026-05-16 21:24:48,024][ INFO][PID:3577175] Sending fedora-messaging bus message in build.start [2026-05-16 21:24:48,486][ INFO][PID:3577175] Sending fedora-messaging bus message in chroot.start [2026-05-16 21:24:48,510][ INFO][PID:3577175] Starting remote build: copr-rpmbuild --verbose --drop-resultdir --srpm --task-url https://copr.fedorainfracloud.org/backend/get-srpm-build-task/10467825 --detached [2026-05-16 21:24:48,963][ INFO][PID:3577175] The copr-rpmbuild seems started, per: stdout: stderr: Warning: Permanently added '44.200.68.238' (ED25519) to the list of known hosts. [2026-05-16 21:24:48,964][ INFO][PID:3577175] Downloading the builder-live.log file, attempt 1 [2026-05-16 21:24:48,966][ INFO][PID:3577175] Popen command started: ssh -F /home/copr/.ssh/config mockbuilder@44.200.68.238 copr-rpmbuild-log [2026-05-16 21:24:53,974][ INFO][PID:3577175] Periodic builder liveness probe: alive [2026-05-16 21:24:53,975][ INFO][PID:3577175] Checking for cancel request [2026-05-16 21:24:58,976][ INFO][PID:3577175] Checking for cancel request [2026-05-16 21:25:03,977][ INFO][PID:3577175] Checking for cancel request [2026-05-16 21:25:08,979][ INFO][PID:3577175] Checking for cancel request [2026-05-16 21:25:13,980][ INFO][PID:3577175] Checking for cancel request [2026-05-16 21:25:18,982][ INFO][PID:3577175] Checking for cancel request [2026-05-16 21:25:23,983][ INFO][PID:3577175] Checking for cancel request [2026-05-16 21:25:28,985][ INFO][PID:3577175] Checking for cancel request [2026-05-16 21:25:33,986][ INFO][PID:3577175] Checking for cancel request [2026-05-16 21:25:38,987][ INFO][PID:3577175] Checking for cancel request [2026-05-16 21:25:43,988][ INFO][PID:3577175] Checking for cancel request [2026-05-16 21:25:48,989][ INFO][PID:3577175] Checking for cancel request [2026-05-16 21:25:53,991][ INFO][PID:3577175] Checking for cancel request [2026-05-16 21:25:58,992][ INFO][PID:3577175] Checking for cancel request [2026-05-16 21:26:03,993][ INFO][PID:3577175] Checking for cancel request [2026-05-16 21:26:08,994][ INFO][PID:3577175] Checking for cancel request [2026-05-16 21:26:13,996][ INFO][PID:3577175] Checking for cancel request [2026-05-16 21:26:18,997][ INFO][PID:3577175] Checking for cancel request [2026-05-16 21:26:23,998][ INFO][PID:3577175] Checking for cancel request [2026-05-16 21:26:28,999][ INFO][PID:3577175] Checking for cancel request [2026-05-16 21:26:34,000][ INFO][PID:3577175] Checking for cancel request [2026-05-16 21:26:39,002][ INFO][PID:3577175] Checking for cancel request [2026-05-16 21:26:44,003][ INFO][PID:3577175] Checking for cancel request [2026-05-16 21:26:49,004][ INFO][PID:3577175] Checking for cancel request [2026-05-16 21:26:54,005][ INFO][PID:3577175] Checking for cancel request [2026-05-16 21:26:59,006][ INFO][PID:3577175] Checking for cancel request [2026-05-16 21:27:04,008][ INFO][PID:3577175] Checking for cancel request [2026-05-16 21:27:09,009][ INFO][PID:3577175] Checking for cancel request [2026-05-16 21:27:14,010][ INFO][PID:3577175] Checking for cancel request [2026-05-16 21:27:19,011][ INFO][PID:3577175] Checking for cancel request [2026-05-16 21:27:24,012][ INFO][PID:3577175] Checking for cancel request [2026-05-16 21:27:29,013][ INFO][PID:3577175] Checking for cancel request [2026-05-16 21:27:34,014][ INFO][PID:3577175] Checking for cancel request [2026-05-16 21:27:39,016][ INFO][PID:3577175] Checking for cancel request [2026-05-16 21:27:44,017][ INFO][PID:3577175] Checking for cancel request [2026-05-16 21:27:49,018][ INFO][PID:3577175] Checking for cancel request [2026-05-16 21:27:54,019][ INFO][PID:3577175] Checking for cancel request [2026-05-16 21:27:59,020][ INFO][PID:3577175] Checking for cancel request [2026-05-16 21:28:04,165][ INFO][PID:3577175] Checking for cancel request [2026-05-16 21:28:09,166][ INFO][PID:3577175] Checking for cancel request [2026-05-16 21:28:14,167][ INFO][PID:3577175] Checking for cancel request [2026-05-16 21:28:19,169][ INFO][PID:3577175] Checking for cancel request [2026-05-16 21:28:24,170][ INFO][PID:3577175] Checking for cancel request [2026-05-16 21:28:29,171][ INFO][PID:3577175] Checking for cancel request [2026-05-16 21:28:34,173][ INFO][PID:3577175] Checking for cancel request [2026-05-16 21:28:39,174][ INFO][PID:3577175] Checking for cancel request [2026-05-16 21:28:44,175][ INFO][PID:3577175] Checking for cancel request [2026-05-16 21:28:49,177][ INFO][PID:3577175] Checking for cancel request [2026-05-16 21:28:54,178][ INFO][PID:3577175] Checking for cancel request [2026-05-16 21:28:59,179][ INFO][PID:3577175] Checking for cancel request [2026-05-16 21:29:04,180][ INFO][PID:3577175] Checking for cancel request [2026-05-16 21:29:09,181][ INFO][PID:3577175] Checking for cancel request [2026-05-16 21:29:14,183][ INFO][PID:3577175] Checking for cancel request [2026-05-16 21:29:19,184][ INFO][PID:3577175] Checking for cancel request [2026-05-16 21:29:24,185][ INFO][PID:3577175] Checking for cancel request [2026-05-16 21:29:29,186][ INFO][PID:3577175] Checking for cancel request [2026-05-16 21:29:34,188][ INFO][PID:3577175] Checking for cancel request [2026-05-16 21:29:39,189][ INFO][PID:3577175] Checking for cancel request [2026-05-16 21:29:44,190][ INFO][PID:3577175] Checking for cancel request [2026-05-16 21:29:49,191][ INFO][PID:3577175] Checking for cancel request [2026-05-16 21:29:54,192][ INFO][PID:3577175] Checking for cancel request [2026-05-16 21:29:59,193][ INFO][PID:3577175] Checking for cancel request [2026-05-16 21:30:04,195][ INFO][PID:3577175] Checking for cancel request [2026-05-16 21:30:09,196][ INFO][PID:3577175] Checking for cancel request [2026-05-16 21:30:14,197][ INFO][PID:3577175] Checking for cancel request [2026-05-16 21:30:19,199][ INFO][PID:3577175] Checking for cancel request [2026-05-16 21:30:24,200][ INFO][PID:3577175] Checking for cancel request [2026-05-16 21:30:29,201][ INFO][PID:3577175] Checking for cancel request [2026-05-16 21:30:34,203][ INFO][PID:3577175] Checking for cancel request [2026-05-16 21:30:39,204][ INFO][PID:3577175] Checking for cancel request [2026-05-16 21:30:44,224][ INFO][PID:3577175] Checking for cancel request [2026-05-16 21:30:49,225][ INFO][PID:3577175] Checking for cancel request [2026-05-16 21:30:54,227][ INFO][PID:3577175] Checking for cancel request [2026-05-16 21:30:59,228][ INFO][PID:3577175] Checking for cancel request [2026-05-16 21:31:04,270][ INFO][PID:3577175] Checking for cancel request [2026-05-16 21:31:09,300][ INFO][PID:3577175] Checking for cancel request [2026-05-16 21:31:14,302][ INFO][PID:3577175] Checking for cancel request [2026-05-16 21:31:19,303][ INFO][PID:3577175] Checking for cancel request [2026-05-16 21:31:24,319][ INFO][PID:3577175] Checking for cancel request [2026-05-16 21:31:29,320][ INFO][PID:3577175] Checking for cancel request [2026-05-16 21:31:34,322][ INFO][PID:3577175] Checking for cancel request [2026-05-16 21:31:39,323][ INFO][PID:3577175] Checking for cancel request [2026-05-16 21:31:44,324][ INFO][PID:3577175] Checking for cancel request [2026-05-16 21:31:49,325][ INFO][PID:3577175] Checking for cancel request [2026-05-16 21:31:54,326][ INFO][PID:3577175] Checking for cancel request [2026-05-16 21:31:59,328][ INFO][PID:3577175] Checking for cancel request [2026-05-16 21:32:04,329][ INFO][PID:3577175] Checking for cancel request [2026-05-16 21:32:09,330][ INFO][PID:3577175] Checking for cancel request [2026-05-16 21:32:14,332][ INFO][PID:3577175] Checking for cancel request [2026-05-16 21:32:19,334][ INFO][PID:3577175] Checking for cancel request [2026-05-16 21:32:24,335][ INFO][PID:3577175] Checking for cancel request [2026-05-16 21:32:29,337][ INFO][PID:3577175] Checking for cancel request [2026-05-16 21:32:34,338][ INFO][PID:3577175] Checking for cancel request [2026-05-16 21:32:39,340][ INFO][PID:3577175] Checking for cancel request [2026-05-16 21:32:44,341][ INFO][PID:3577175] Checking for cancel request [2026-05-16 21:32:49,342][ INFO][PID:3577175] Checking for cancel request [2026-05-16 21:32:54,344][ INFO][PID:3577175] Checking for cancel request [2026-05-16 21:32:59,345][ INFO][PID:3577175] Checking for cancel request [2026-05-16 21:33:04,346][ INFO][PID:3577175] Checking for cancel request [2026-05-16 21:33:09,348][ INFO][PID:3577175] Checking for cancel request [2026-05-16 21:33:14,354][ INFO][PID:3577175] Checking for cancel request [2026-05-16 21:33:19,355][ INFO][PID:3577175] Checking for cancel request [2026-05-16 21:33:24,357][ INFO][PID:3577175] Checking for cancel request [2026-05-16 21:33:29,360][ INFO][PID:3577175] Checking for cancel request [2026-05-16 21:33:32,855][ INFO][PID:3577175] Downloading results from builder [2026-05-16 21:33:32,864][ INFO][PID:3577175] rsyncing of mockbuilder@44.200.68.238:/var/lib/copr-rpmbuild/results/ to /var/lib/copr/public_html/results/lizardbyte/stable/srpm-builds/10467825 started [2026-05-16 21:33:32,884][ INFO][PID:3577175] Popen command started: /usr/bin/rsync -rltDvH --chmod=D755,F644 -e 'ssh -F /home/copr/.ssh/config' mockbuilder@44.200.68.238:/var/lib/copr-rpmbuild/results/ /var/lib/copr/public_html/results/lizardbyte/stable/srpm-builds/10467825/ &> /var/lib/copr/public_html/results/lizardbyte/stable/srpm-builds/10467825/build-10467825.rsync.log [2026-05-16 21:33:37,058][ INFO][PID:3577175] rsyncing finished. [2026-05-16 21:33:37,060][ INFO][PID:3577175] VM Release request [2026-05-16 21:33:37,117][ INFO][PID:3577175] Searching for 'success' file in resultdir [2026-05-16 21:33:37,135][ INFO][PID:3577175] Getting build details [2026-05-16 21:33:37,136][ INFO][PID:3577175] Retrieving SRPM info from /var/lib/copr/public_html/results/lizardbyte/stable/srpm-builds/10467825 [2026-05-16 21:33:37,158][ INFO][PID:3577175] SRPM URL: https://download.copr.fedorainfracloud.org/results/lizardbyte/stable/srpm-builds/10467825/Sunshine-2026.516.143833-1.src.rpm [2026-05-16 21:33:37,159][ INFO][PID:3577175] build details: {'srpm_url': 'https://download.copr.fedorainfracloud.org/results/lizardbyte/stable/srpm-builds/10467825/Sunshine-2026.516.143833-1.src.rpm', 'pkg_name': 'Sunshine', 'pkg_version': '2026.516.143833-1'} [2026-05-16 21:33:37,164][ INFO][PID:3577175] Finished build: id=10467825 failed=False timeout=108000 destdir=/var/lib/copr/public_html/results/lizardbyte/stable chroot=srpm-builds [2026-05-16 21:33:37,190][ INFO][PID:3577175] Worker succeeded build, took 529.2088708877563 [2026-05-16 21:33:37,194][ INFO][PID:3577175] 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": "stable", "project_dirname": "stable", "submitter": null, "ended_on": 1778967217.1892903, "started_on": 1778966687.9804194, "submitted_on": null, "status": 1, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10467825", "build_id": 10467825, "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\": \"tmphsfth4fc\", \"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/stable/srpm-builds/10467825/Sunshine-2026.516.143833-1.src.rpm", "uses_devel_repo": null, "sandbox": "lizardbyte/stable--a7579dfb-8eea-43c7-8997-927f55caf289", "results": { "architecture_specific_tags": { "fedora-42": {}, "fedora-43": {}, "fedora-44": {}, "fedora-rawhide": {}, "opensuse-leap-15.6": {} }, "name": "Sunshine", "epoch": null, "version": "2026.516.143833", "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/stable", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/lizardbyte/stable", "result_dir": "10467825", "built_packages": "", "tags": [ "arch_x86_64" ], "pkg_version": "2026.516.143833-1", "id": 10467825, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "stable", "vendor": "Fedora Project COPR (lizardbyte/stable)" } } ] } [2026-05-16 21:33:37,502][ INFO][PID:3577175] Sending fedora-messaging bus message in build.end [2026-05-16 21:33:37,751][ INFO][PID:3577175] Compressing /var/lib/copr/public_html/results/lizardbyte/stable/srpm-builds/10467825/builder-live.log by gzip [2026-05-16 21:33:37,759][ INFO][PID:3577175] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/stable/srpm-builds/10467825/builder-live.log' as PID 3605862 [2026-05-16 21:33:37,783][ INFO][PID:3577175] Finished after 0 seconds with exit code 0 (gzip /var/lib/copr/public_html/results/lizardbyte/stable/srpm-builds/10467825/builder-live.log) [2026-05-16 21:33:37,786][ INFO][PID:3577175] Compressing /var/lib/copr/public_html/results/lizardbyte/stable/srpm-builds/10467825/backend.log by gzip [2026-05-16 21:33:37,787][ INFO][PID:3577175] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/stable/srpm-builds/10467825/backend.log' as PID 3605865