[2026-08-10 08:52:04,261][ INFO][PID:1285083] Marking build as starting [2026-08-10 08:52:04,370][ INFO][PID:1285083] Checking for cancel request [2026-08-10 08:52:04,376][ INFO][PID:1285083] VM allocation process starts [2026-08-10 08:52:04,410][ INFO][PID:1285083] Trying to allocate VM: ResallocHost, ticket_id=4373309, requested_tags=['arch_x86_64', 'copr_builder'] [2026-08-10 08:52:07,444][ INFO][PID:1285083] Allocated host ResallocHost, ticket_id=4373309, hostname=54.209.7.48, name=aws_x86_64_reserved_prod_17603228_20260810_084743, requested_tags=['arch_x86_64', 'copr_builder'] [2026-08-10 08:52:07,449][ INFO][PID:1285083] Allocating ssh connection to builder [2026-08-10 08:52:07,452][ INFO][PID:1285083] Checking that builder machine is OK [2026-08-10 08:52:07,786][ INFO][PID:1285083] Installed copr-rpmbuild version: 1.8 [2026-08-10 08:52:07,790][ INFO][PID:1285083] Running remote command: copr-builder-ready srpm-builds [2026-08-10 08:52:07,987][ INFO][PID:1285083] Red Hat subscription not needed for srpm-builds Builder is ready to be used [2026-08-10 08:52:07,988][ INFO][PID:1285083] Filling build.info file with builder info [2026-08-10 08:52:08,045][ INFO][PID:1285083] Checking for cancel request [2026-08-10 08:52:08,049][ INFO][PID:1285083] 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:5493", "submitter": null, "ended_on": null, "started_on": 1786351928.048808, "submitted_on": null, "status": 3, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10841898", "build_id": 10841898, "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\": \"tmplsb03gte\", \"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--676ab13b-c089-4c99-873f-36bf111fa190", "results": null, "appstream": false, "allow_user_ssh": null, "ssh_public_keys": null, "storage": null, "repos": [], "background": true, "distributions_in_build": [ "fedora-43", "fedora-44", "fedora-rawhide" ], "distributions_in_project": [ "fedora-43", "fedora-44", "fedora-rawhide" ], "destdir": "/var/lib/copr/public_html/results/lizardbyte/pulls:pr:5493", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5493", "result_dir": "10841898", "built_packages": "", "tags": [ "arch_x86_64" ], "rpmeta_prediction": null, "id": 10841898, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2026-08-10 08:52:08,108][ INFO][PID:1285083] Sending fedora-messaging bus message in build.start [2026-08-10 08:52:09,014][ INFO][PID:1285083] Sending fedora-messaging bus message in chroot.start [2026-08-10 08:52:09,068][ INFO][PID:1285083] Starting remote build: copr-rpmbuild --verbose --drop-resultdir --srpm --task-url https://copr.fedorainfracloud.org/backend/get-srpm-build-task/10841898 --detached [2026-08-10 08:52:09,765][ INFO][PID:1285083] The copr-rpmbuild seems started, per: stdout: stderr: Warning: Permanently added '54.209.7.48' (ED25519) to the list of known hosts. [2026-08-10 08:52:09,767][ INFO][PID:1285083] Downloading the builder-live.log file, attempt 1 [2026-08-10 08:52:09,769][ INFO][PID:1285083] Popen command started: ssh -F /home/copr/.ssh/config mockbuilder@54.209.7.48 copr-rpmbuild-log [2026-08-10 08:52:14,778][ INFO][PID:1285083] Periodic builder liveness probe: alive [2026-08-10 08:52:14,787][ INFO][PID:1285083] Checking for cancel request [2026-08-10 08:52:19,789][ INFO][PID:1285083] Checking for cancel request [2026-08-10 08:52:24,790][ INFO][PID:1285083] Checking for cancel request [2026-08-10 08:52:29,808][ INFO][PID:1285083] Checking for cancel request [2026-08-10 08:52:34,810][ INFO][PID:1285083] Checking for cancel request [2026-08-10 08:52:39,811][ INFO][PID:1285083] Checking for cancel request [2026-08-10 08:52:44,812][ INFO][PID:1285083] Checking for cancel request [2026-08-10 08:52:49,814][ INFO][PID:1285083] Checking for cancel request [2026-08-10 08:52:54,815][ INFO][PID:1285083] Checking for cancel request [2026-08-10 08:52:59,817][ INFO][PID:1285083] Checking for cancel request [2026-08-10 08:53:04,905][ INFO][PID:1285083] Checking for cancel request [2026-08-10 08:53:09,907][ INFO][PID:1285083] Checking for cancel request [2026-08-10 08:53:14,909][ INFO][PID:1285083] Checking for cancel request [2026-08-10 08:53:19,911][ INFO][PID:1285083] Checking for cancel request [2026-08-10 08:53:24,912][ INFO][PID:1285083] Checking for cancel request [2026-08-10 08:53:29,914][ INFO][PID:1285083] Checking for cancel request [2026-08-10 08:53:34,920][ INFO][PID:1285083] Checking for cancel request [2026-08-10 08:53:39,921][ INFO][PID:1285083] Checking for cancel request [2026-08-10 08:53:44,923][ INFO][PID:1285083] Checking for cancel request [2026-08-10 08:53:49,927][ INFO][PID:1285083] Checking for cancel request [2026-08-10 08:53:54,942][ INFO][PID:1285083] Checking for cancel request [2026-08-10 08:53:59,947][ INFO][PID:1285083] Checking for cancel request [2026-08-10 08:54:05,399][ INFO][PID:1285083] Checking for cancel request [2026-08-10 08:54:10,404][ INFO][PID:1285083] Checking for cancel request [2026-08-10 08:54:15,436][ INFO][PID:1285083] Checking for cancel request [2026-08-10 08:54:20,501][ INFO][PID:1285083] Checking for cancel request [2026-08-10 08:54:25,522][ INFO][PID:1285083] Checking for cancel request [2026-08-10 08:54:30,525][ INFO][PID:1285083] Checking for cancel request [2026-08-10 08:54:35,661][ INFO][PID:1285083] Checking for cancel request [2026-08-10 08:54:40,663][ INFO][PID:1285083] Checking for cancel request [2026-08-10 08:54:45,669][ INFO][PID:1285083] Checking for cancel request [2026-08-10 08:54:50,738][ INFO][PID:1285083] Checking for cancel request [2026-08-10 08:54:55,846][ INFO][PID:1285083] Checking for cancel request [2026-08-10 08:55:00,849][ INFO][PID:1285083] Checking for cancel request [2026-08-10 08:55:05,854][ INFO][PID:1285083] Checking for cancel request [2026-08-10 08:55:10,858][ INFO][PID:1285083] Checking for cancel request [2026-08-10 08:55:15,909][ INFO][PID:1285083] Checking for cancel request [2026-08-10 08:55:21,142][ INFO][PID:1285083] Checking for cancel request [2026-08-10 08:55:26,224][ INFO][PID:1285083] Checking for cancel request [2026-08-10 08:55:31,515][ INFO][PID:1285083] Checking for cancel request [2026-08-10 08:55:36,669][ INFO][PID:1285083] Checking for cancel request [2026-08-10 08:55:41,801][ INFO][PID:1285083] Checking for cancel request [2026-08-10 08:55:46,822][ INFO][PID:1285083] Checking for cancel request [2026-08-10 08:55:51,851][ INFO][PID:1285083] Checking for cancel request [2026-08-10 08:55:56,877][ INFO][PID:1285083] Checking for cancel request [2026-08-10 08:56:01,903][ INFO][PID:1285083] Checking for cancel request [2026-08-10 08:56:06,941][ INFO][PID:1285083] Checking for cancel request [2026-08-10 08:56:11,949][ INFO][PID:1285083] Checking for cancel request [2026-08-10 08:56:16,972][ INFO][PID:1285083] Checking for cancel request [2026-08-10 08:56:21,990][ INFO][PID:1285083] Checking for cancel request [2026-08-10 08:56:27,007][ INFO][PID:1285083] Checking for cancel request [2026-08-10 08:56:32,008][ INFO][PID:1285083] Checking for cancel request [2026-08-10 08:56:37,010][ INFO][PID:1285083] Checking for cancel request [2026-08-10 08:56:42,018][ INFO][PID:1285083] Checking for cancel request [2026-08-10 08:56:47,033][ INFO][PID:1285083] Checking for cancel request [2026-08-10 08:56:52,054][ INFO][PID:1285083] Checking for cancel request [2026-08-10 08:56:57,055][ INFO][PID:1285083] Checking for cancel request [2026-08-10 08:57:02,266][ INFO][PID:1285083] Checking for cancel request [2026-08-10 08:57:07,270][ INFO][PID:1285083] Checking for cancel request [2026-08-10 08:57:12,274][ INFO][PID:1285083] Checking for cancel request [2026-08-10 08:57:17,281][ INFO][PID:1285083] Checking for cancel request [2026-08-10 08:57:22,286][ INFO][PID:1285083] Checking for cancel request [2026-08-10 08:57:27,289][ INFO][PID:1285083] Checking for cancel request [2026-08-10 08:57:32,290][ INFO][PID:1285083] Checking for cancel request [2026-08-10 08:57:37,292][ INFO][PID:1285083] Checking for cancel request [2026-08-10 08:57:42,294][ INFO][PID:1285083] Checking for cancel request [2026-08-10 08:57:47,500][ INFO][PID:1285083] Checking for cancel request [2026-08-10 08:57:52,645][ INFO][PID:1285083] Checking for cancel request [2026-08-10 08:57:57,651][ INFO][PID:1285083] Checking for cancel request [2026-08-10 08:58:02,653][ INFO][PID:1285083] Checking for cancel request [2026-08-10 08:58:07,655][ INFO][PID:1285083] Checking for cancel request [2026-08-10 08:58:12,657][ INFO][PID:1285083] Checking for cancel request [2026-08-10 08:58:17,658][ INFO][PID:1285083] Checking for cancel request [2026-08-10 08:58:22,660][ INFO][PID:1285083] Checking for cancel request [2026-08-10 08:58:27,661][ INFO][PID:1285083] Checking for cancel request [2026-08-10 08:58:32,663][ INFO][PID:1285083] Checking for cancel request [2026-08-10 08:58:37,665][ INFO][PID:1285083] Checking for cancel request [2026-08-10 08:58:42,667][ INFO][PID:1285083] Checking for cancel request [2026-08-10 08:58:47,668][ INFO][PID:1285083] Checking for cancel request [2026-08-10 08:58:52,670][ INFO][PID:1285083] Checking for cancel request [2026-08-10 08:58:57,675][ INFO][PID:1285083] Checking for cancel request [2026-08-10 08:59:02,676][ INFO][PID:1285083] Checking for cancel request [2026-08-10 08:59:07,678][ INFO][PID:1285083] Checking for cancel request [2026-08-10 08:59:12,721][ INFO][PID:1285083] Checking for cancel request [2026-08-10 08:59:17,736][ INFO][PID:1285083] Checking for cancel request [2026-08-10 08:59:22,738][ INFO][PID:1285083] Checking for cancel request [2026-08-10 08:59:27,741][ INFO][PID:1285083] Checking for cancel request [2026-08-10 08:59:32,743][ INFO][PID:1285083] Checking for cancel request [2026-08-10 08:59:37,744][ INFO][PID:1285083] Checking for cancel request [2026-08-10 08:59:42,745][ INFO][PID:1285083] Checking for cancel request [2026-08-10 08:59:47,747][ INFO][PID:1285083] Checking for cancel request [2026-08-10 08:59:52,750][ INFO][PID:1285083] Checking for cancel request [2026-08-10 08:59:57,753][ INFO][PID:1285083] Checking for cancel request [2026-08-10 09:00:02,755][ INFO][PID:1285083] Checking for cancel request [2026-08-10 09:00:07,756][ INFO][PID:1285083] Checking for cancel request [2026-08-10 09:00:12,761][ INFO][PID:1285083] Checking for cancel request [2026-08-10 09:00:17,767][ INFO][PID:1285083] Checking for cancel request [2026-08-10 09:00:22,768][ INFO][PID:1285083] Checking for cancel request [2026-08-10 09:00:27,825][ INFO][PID:1285083] Checking for cancel request [2026-08-10 09:00:32,830][ INFO][PID:1285083] Checking for cancel request [2026-08-10 09:00:37,834][ INFO][PID:1285083] Checking for cancel request [2026-08-10 09:00:42,835][ INFO][PID:1285083] Checking for cancel request [2026-08-10 09:00:47,837][ INFO][PID:1285083] Checking for cancel request [2026-08-10 09:00:52,838][ INFO][PID:1285083] Checking for cancel request [2026-08-10 09:00:57,840][ INFO][PID:1285083] Checking for cancel request [2026-08-10 09:01:02,842][ INFO][PID:1285083] Checking for cancel request [2026-08-10 09:01:07,750][ INFO][PID:1285083] Downloading results from builder [2026-08-10 09:01:07,751][ INFO][PID:1285083] rsyncing of mockbuilder@54.209.7.48:/var/lib/copr-rpmbuild/results/ to /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5493/srpm-builds/10841898 started [2026-08-10 09:01:07,752][ INFO][PID:1285083] Popen command started: /usr/bin/rsync -rltDvH --chmod=D755,F644 -e 'ssh -F /home/copr/.ssh/config' mockbuilder@54.209.7.48:/var/lib/copr-rpmbuild/results/ /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5493/srpm-builds/10841898/ &> /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5493/srpm-builds/10841898/build-10841898.rsync.log [2026-08-10 09:01:13,077][ INFO][PID:1285083] rsyncing finished. [2026-08-10 09:01:13,079][ INFO][PID:1285083] VM Release request [2026-08-10 09:01:13,090][ INFO][PID:1285083] Searching for 'success' file in resultdir [2026-08-10 09:01:13,092][ INFO][PID:1285083] Getting build details [2026-08-10 09:01:13,092][ INFO][PID:1285083] Retrieving SRPM info from /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5493/srpm-builds/10841898 [2026-08-10 09:01:13,093][ INFO][PID:1285083] SRPM URL: https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5493/srpm-builds/10841898/Sunshine-0.0.5493-1.src.rpm [2026-08-10 09:01:13,095][ INFO][PID:1285083] build details: {'srpm_url': 'https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5493/srpm-builds/10841898/Sunshine-0.0.5493-1.src.rpm', 'pkg_name': 'Sunshine', 'pkg_version': '0.0.5493-1'} [2026-08-10 09:01:13,095][ INFO][PID:1285083] Finished build: id=10841898 failed=False timeout=108000 destdir=/var/lib/copr/public_html/results/lizardbyte/pulls:pr:5493 chroot=srpm-builds [2026-08-10 09:01:13,097][ INFO][PID:1285083] Worker succeeded build, took 545.0488271713257 [2026-08-10 09:01:13,098][ INFO][PID:1285083] 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:5493", "submitter": null, "ended_on": 1786352473.0976353, "started_on": 1786351928.048808, "submitted_on": null, "status": 1, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10841898", "build_id": 10841898, "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\": \"tmplsb03gte\", \"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:5493/srpm-builds/10841898/Sunshine-0.0.5493-1.src.rpm", "uses_devel_repo": null, "sandbox": "lizardbyte/pulls--676ab13b-c089-4c99-873f-36bf111fa190", "results": { "architecture_specific_tags": { "fedora-43": {}, "fedora-44": {}, "fedora-rawhide": {} }, "name": "Sunshine", "epoch": null, "version": "0.0.5493", "release": "1" }, "appstream": false, "allow_user_ssh": null, "ssh_public_keys": null, "storage": null, "repos": [], "background": true, "distributions_in_build": [ "fedora-43", "fedora-44", "fedora-rawhide" ], "distributions_in_project": [ "fedora-43", "fedora-44", "fedora-rawhide" ], "destdir": "/var/lib/copr/public_html/results/lizardbyte/pulls:pr:5493", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5493", "result_dir": "10841898", "built_packages": "", "tags": [ "arch_x86_64" ], "rpmeta_prediction": null, "pkg_version": "0.0.5493-1", "id": 10841898, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2026-08-10 09:01:13,154][ INFO][PID:1285083] Sending fedora-messaging bus message in build.end [2026-08-10 09:01:13,185][ INFO][PID:1285083] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5493/srpm-builds/10841898/builder-live.log by gzip [2026-08-10 09:01:13,187][ INFO][PID:1285083] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5493/srpm-builds/10841898/builder-live.log' as PID 1359332 [2026-08-10 09:01:13,264][ INFO][PID:1285083] Finished after 0 seconds with exit code 0 (gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5493/srpm-builds/10841898/builder-live.log) [2026-08-10 09:01:13,265][ INFO][PID:1285083] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5493/srpm-builds/10841898/backend.log by gzip [2026-08-10 09:01:13,267][ INFO][PID:1285083] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5493/srpm-builds/10841898/backend.log' as PID 1359386