[2026-05-18 21:44:34,261][ INFO][PID:4069918] Marking build as starting [2026-05-18 21:44:34,303][ INFO][PID:4069918] Checking for cancel request [2026-05-18 21:44:34,305][ INFO][PID:4069918] VM allocation process starts [2026-05-18 21:44:34,318][ INFO][PID:4069918] Trying to allocate VM: ResallocHost, ticket_id=2955507, requested_tags=['arch_x86_64', 'copr_builder'] [2026-05-18 21:44:37,359][ INFO][PID:4069918] Allocated host ResallocHost, ticket_id=2955507, hostname=13.222.56.89, name=aws_x86_64_reserved_prod_09124764_20260518_213744, requested_tags=['arch_x86_64', 'copr_builder'] [2026-05-18 21:44:37,360][ INFO][PID:4069918] Allocating ssh connection to builder [2026-05-18 21:44:37,361][ INFO][PID:4069918] Checking that builder machine is OK [2026-05-18 21:44:37,741][ INFO][PID:4069918] Installed copr-rpmbuild version: 1.8 [2026-05-18 21:44:37,981][ INFO][PID:4069918] Running remote command: copr-builder-ready srpm-builds [2026-05-18 21:44:38,218][ INFO][PID:4069918] Red Hat subscription not needed for srpm-builds Builder is ready to be used [2026-05-18 21:44:38,219][ INFO][PID:4069918] Filling build.info file with builder info [2026-05-18 21:44:38,220][ INFO][PID:4069918] Checking for cancel request [2026-05-18 21:44:38,221][ INFO][PID:4069918] 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:5138", "submitter": null, "ended_on": null, "started_on": 1779140678.2213027, "submitted_on": null, "status": 3, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10477043", "build_id": 10477043, "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\": \"tmpg95mq08b\", \"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--d1723abb-1964-4b9f-b1de-45dcade58917", "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:5138", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5138", "result_dir": "10477043", "built_packages": "", "tags": [ "arch_x86_64" ], "id": 10477043, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2026-05-18 21:44:38,258][ INFO][PID:4069918] Sending fedora-messaging bus message in build.start [2026-05-18 21:44:38,718][ INFO][PID:4069918] Sending fedora-messaging bus message in chroot.start [2026-05-18 21:44:38,747][ INFO][PID:4069918] Starting remote build: copr-rpmbuild --verbose --drop-resultdir --srpm --task-url https://copr.fedorainfracloud.org/backend/get-srpm-build-task/10477043 --detached [2026-05-18 21:44:39,225][ INFO][PID:4069918] The copr-rpmbuild seems started, per: stdout: stderr: Warning: Permanently added '13.222.56.89' (ED25519) to the list of known hosts. [2026-05-18 21:44:39,227][ INFO][PID:4069918] Downloading the builder-live.log file, attempt 1 [2026-05-18 21:44:39,228][ INFO][PID:4069918] Popen command started: ssh -F /home/copr/.ssh/config mockbuilder@13.222.56.89 copr-rpmbuild-log [2026-05-18 21:44:44,235][ INFO][PID:4069918] Periodic builder liveness probe: alive [2026-05-18 21:44:44,236][ INFO][PID:4069918] Checking for cancel request [2026-05-18 21:44:49,237][ INFO][PID:4069918] Checking for cancel request [2026-05-18 21:44:54,238][ INFO][PID:4069918] Checking for cancel request [2026-05-18 21:44:59,240][ INFO][PID:4069918] Checking for cancel request [2026-05-18 21:45:04,241][ INFO][PID:4069918] Checking for cancel request [2026-05-18 21:45:09,242][ INFO][PID:4069918] Checking for cancel request [2026-05-18 21:45:14,244][ INFO][PID:4069918] Checking for cancel request [2026-05-18 21:45:19,245][ INFO][PID:4069918] Checking for cancel request [2026-05-18 21:45:24,247][ INFO][PID:4069918] Checking for cancel request [2026-05-18 21:45:29,248][ INFO][PID:4069918] Checking for cancel request [2026-05-18 21:45:34,250][ INFO][PID:4069918] Checking for cancel request [2026-05-18 21:45:39,252][ INFO][PID:4069918] Checking for cancel request [2026-05-18 21:45:44,254][ INFO][PID:4069918] Checking for cancel request [2026-05-18 21:45:49,256][ INFO][PID:4069918] Checking for cancel request [2026-05-18 21:45:54,259][ INFO][PID:4069918] Checking for cancel request [2026-05-18 21:45:59,261][ INFO][PID:4069918] Checking for cancel request [2026-05-18 21:46:04,262][ INFO][PID:4069918] Checking for cancel request [2026-05-18 21:46:09,264][ INFO][PID:4069918] Checking for cancel request [2026-05-18 21:46:14,266][ INFO][PID:4069918] Checking for cancel request [2026-05-18 21:46:19,268][ INFO][PID:4069918] Checking for cancel request [2026-05-18 21:46:24,269][ INFO][PID:4069918] Checking for cancel request [2026-05-18 21:46:29,271][ INFO][PID:4069918] Checking for cancel request [2026-05-18 21:46:34,276][ INFO][PID:4069918] Checking for cancel request [2026-05-18 21:46:39,280][ INFO][PID:4069918] Checking for cancel request [2026-05-18 21:46:44,282][ INFO][PID:4069918] Checking for cancel request [2026-05-18 21:46:49,283][ INFO][PID:4069918] Checking for cancel request [2026-05-18 21:46:54,285][ INFO][PID:4069918] Checking for cancel request [2026-05-18 21:46:59,287][ INFO][PID:4069918] Checking for cancel request [2026-05-18 21:47:04,288][ INFO][PID:4069918] Checking for cancel request [2026-05-18 21:47:09,451][ INFO][PID:4069918] Checking for cancel request [2026-05-18 21:47:14,555][ INFO][PID:4069918] Checking for cancel request [2026-05-18 21:47:19,938][ INFO][PID:4069918] Checking for cancel request [2026-05-18 21:47:25,071][ INFO][PID:4069918] Checking for cancel request [2026-05-18 21:47:30,109][ INFO][PID:4069918] Checking for cancel request [2026-05-18 21:47:35,113][ INFO][PID:4069918] Checking for cancel request [2026-05-18 21:47:40,115][ INFO][PID:4069918] Checking for cancel request [2026-05-18 21:47:45,216][ INFO][PID:4069918] Checking for cancel request [2026-05-18 21:47:50,316][ INFO][PID:4069918] Checking for cancel request [2026-05-18 21:47:55,425][ INFO][PID:4069918] Checking for cancel request [2026-05-18 21:48:00,625][ INFO][PID:4069918] Checking for cancel request [2026-05-18 21:48:05,710][ INFO][PID:4069918] Checking for cancel request [2026-05-18 21:48:10,784][ INFO][PID:4069918] Checking for cancel request [2026-05-18 21:48:15,994][ INFO][PID:4069918] Checking for cancel request [2026-05-18 21:48:21,211][ INFO][PID:4069918] Checking for cancel request [2026-05-18 21:48:26,581][ INFO][PID:4069918] Checking for cancel request [2026-05-18 21:48:31,582][ INFO][PID:4069918] Checking for cancel request [2026-05-18 21:48:36,773][ INFO][PID:4069918] Checking for cancel request [2026-05-18 21:48:41,775][ INFO][PID:4069918] Checking for cancel request [2026-05-18 21:48:47,036][ INFO][PID:4069918] Checking for cancel request [2026-05-18 21:48:52,243][ INFO][PID:4069918] Checking for cancel request [2026-05-18 21:48:57,443][ INFO][PID:4069918] Checking for cancel request [2026-05-18 21:49:02,738][ INFO][PID:4069918] Checking for cancel request [2026-05-18 21:49:07,745][ INFO][PID:4069918] Checking for cancel request [2026-05-18 21:49:12,856][ INFO][PID:4069918] Checking for cancel request [2026-05-18 21:49:17,889][ INFO][PID:4069918] Checking for cancel request [2026-05-18 21:49:23,471][ INFO][PID:4069918] Checking for cancel request [2026-05-18 21:49:28,477][ INFO][PID:4069918] Checking for cancel request [2026-05-18 21:49:33,876][ INFO][PID:4069918] Checking for cancel request [2026-05-18 21:49:38,981][ INFO][PID:4069918] Checking for cancel request [2026-05-18 21:49:44,232][ INFO][PID:4069918] Checking for cancel request [2026-05-18 21:49:49,663][ INFO][PID:4069918] Checking for cancel request [2026-05-18 21:49:54,742][ INFO][PID:4069918] Checking for cancel request [2026-05-18 21:49:59,916][ INFO][PID:4069918] Checking for cancel request [2026-05-18 21:50:05,316][ INFO][PID:4069918] Checking for cancel request [2026-05-18 21:50:10,699][ INFO][PID:4069918] Checking for cancel request [2026-05-18 21:50:16,453][ INFO][PID:4069918] Checking for cancel request [2026-05-18 21:50:21,670][ INFO][PID:4069918] Checking for cancel request [2026-05-18 21:50:26,673][ INFO][PID:4069918] Checking for cancel request [2026-05-18 21:50:31,676][ INFO][PID:4069918] Checking for cancel request [2026-05-18 21:50:36,678][ INFO][PID:4069918] Checking for cancel request [2026-05-18 21:50:41,679][ INFO][PID:4069918] Checking for cancel request [2026-05-18 21:50:46,681][ INFO][PID:4069918] Checking for cancel request [2026-05-18 21:50:51,683][ INFO][PID:4069918] Checking for cancel request [2026-05-18 21:50:56,685][ INFO][PID:4069918] Checking for cancel request [2026-05-18 21:51:01,709][ INFO][PID:4069918] Checking for cancel request [2026-05-18 21:51:06,721][ INFO][PID:4069918] Checking for cancel request [2026-05-18 21:51:11,749][ INFO][PID:4069918] Checking for cancel request [2026-05-18 21:51:16,760][ INFO][PID:4069918] Checking for cancel request [2026-05-18 21:51:21,766][ INFO][PID:4069918] Checking for cancel request [2026-05-18 21:51:26,772][ INFO][PID:4069918] Checking for cancel request [2026-05-18 21:51:31,776][ INFO][PID:4069918] Checking for cancel request [2026-05-18 21:51:36,778][ INFO][PID:4069918] Checking for cancel request [2026-05-18 21:51:41,780][ INFO][PID:4069918] Checking for cancel request [2026-05-18 21:51:46,782][ INFO][PID:4069918] Checking for cancel request [2026-05-18 21:51:51,787][ INFO][PID:4069918] Checking for cancel request [2026-05-18 21:51:56,788][ INFO][PID:4069918] Checking for cancel request [2026-05-18 21:52:01,790][ INFO][PID:4069918] Checking for cancel request [2026-05-18 21:52:06,796][ INFO][PID:4069918] Checking for cancel request [2026-05-18 21:52:11,799][ INFO][PID:4069918] Checking for cancel request [2026-05-18 21:52:16,800][ INFO][PID:4069918] Checking for cancel request [2026-05-18 21:52:21,803][ INFO][PID:4069918] Checking for cancel request [2026-05-18 21:52:26,818][ INFO][PID:4069918] Checking for cancel request [2026-05-18 21:52:31,822][ INFO][PID:4069918] Checking for cancel request [2026-05-18 21:52:36,826][ INFO][PID:4069918] Checking for cancel request [2026-05-18 21:52:41,828][ INFO][PID:4069918] Checking for cancel request [2026-05-18 21:52:46,829][ INFO][PID:4069918] Checking for cancel request [2026-05-18 21:52:51,837][ INFO][PID:4069918] Checking for cancel request [2026-05-18 21:52:56,839][ INFO][PID:4069918] Checking for cancel request [2026-05-18 21:53:01,841][ INFO][PID:4069918] Checking for cancel request [2026-05-18 21:53:06,844][ INFO][PID:4069918] Checking for cancel request [2026-05-18 21:53:11,852][ INFO][PID:4069918] Checking for cancel request [2026-05-18 21:53:16,856][ INFO][PID:4069918] Checking for cancel request [2026-05-18 21:53:21,866][ INFO][PID:4069918] Checking for cancel request [2026-05-18 21:53:26,299][ INFO][PID:4069918] Downloading results from builder [2026-05-18 21:53:26,380][ INFO][PID:4069918] rsyncing of mockbuilder@13.222.56.89:/var/lib/copr-rpmbuild/results/ to /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5138/srpm-builds/10477043 started [2026-05-18 21:53:26,600][ INFO][PID:4069918] Popen command started: /usr/bin/rsync -rltDvH --chmod=D755,F644 -e 'ssh -F /home/copr/.ssh/config' mockbuilder@13.222.56.89:/var/lib/copr-rpmbuild/results/ /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5138/srpm-builds/10477043/ &> /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5138/srpm-builds/10477043/build-10477043.rsync.log [2026-05-18 21:53:32,216][ INFO][PID:4069918] rsyncing finished. [2026-05-18 21:53:32,232][ INFO][PID:4069918] VM Release request [2026-05-18 21:53:33,544][ INFO][PID:4069918] Searching for 'success' file in resultdir [2026-05-18 21:53:33,764][ INFO][PID:4069918] Getting build details [2026-05-18 21:53:33,772][ INFO][PID:4069918] Retrieving SRPM info from /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5138/srpm-builds/10477043 [2026-05-18 21:53:34,055][ INFO][PID:4069918] SRPM URL: https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5138/srpm-builds/10477043/Sunshine-0.0.5138-1.src.rpm [2026-05-18 21:53:34,060][ INFO][PID:4069918] build details: {'srpm_url': 'https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5138/srpm-builds/10477043/Sunshine-0.0.5138-1.src.rpm', 'pkg_name': 'Sunshine', 'pkg_version': '0.0.5138-1'} [2026-05-18 21:53:34,204][ INFO][PID:4069918] Finished build: id=10477043 failed=False timeout=108000 destdir=/var/lib/copr/public_html/results/lizardbyte/pulls:pr:5138 chroot=srpm-builds [2026-05-18 21:53:34,875][ INFO][PID:4069918] Worker succeeded build, took 536.6531980037689 [2026-05-18 21:53:34,914][ INFO][PID:4069918] 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:5138", "submitter": null, "ended_on": 1779141214.8745008, "started_on": 1779140678.2213027, "submitted_on": null, "status": 1, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10477043", "build_id": 10477043, "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\": \"tmpg95mq08b\", \"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:5138/srpm-builds/10477043/Sunshine-0.0.5138-1.src.rpm", "uses_devel_repo": null, "sandbox": "lizardbyte/pulls--d1723abb-1964-4b9f-b1de-45dcade58917", "results": { "architecture_specific_tags": { "fedora-42": {}, "fedora-43": {}, "fedora-44": {}, "fedora-rawhide": {}, "opensuse-leap-15.6": {} }, "name": "Sunshine", "epoch": null, "version": "0.0.5138", "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:5138", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5138", "result_dir": "10477043", "built_packages": "", "tags": [ "arch_x86_64" ], "pkg_version": "0.0.5138-1", "id": 10477043, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2026-05-18 21:53:35,786][ INFO][PID:4069918] Sending fedora-messaging bus message in build.end [2026-05-18 21:53:36,281][ INFO][PID:4069918] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5138/srpm-builds/10477043/builder-live.log by gzip [2026-05-18 21:53:36,298][ INFO][PID:4069918] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5138/srpm-builds/10477043/builder-live.log' as PID 4136124 [2026-05-18 21:53:36,335][ INFO][PID:4069918] Finished after 0 seconds with exit code 0 (gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5138/srpm-builds/10477043/builder-live.log) [2026-05-18 21:53:36,340][ INFO][PID:4069918] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5138/srpm-builds/10477043/backend.log by gzip [2026-05-18 21:53:36,342][ INFO][PID:4069918] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5138/srpm-builds/10477043/backend.log' as PID 4136130