[2026-05-15 21:27:01,897][ INFO][PID:1705182] Marking build as starting [2026-05-15 21:27:01,940][ INFO][PID:1705182] Checking for cancel request [2026-05-15 21:27:01,942][ INFO][PID:1705182] VM allocation process starts [2026-05-15 21:27:01,958][ INFO][PID:1705182] Trying to allocate VM: ResallocHost, ticket_id=2911837, requested_tags=['arch_x86_64', 'copr_builder'] [2026-05-15 21:27:04,977][ INFO][PID:1705182] Allocated host ResallocHost, ticket_id=2911837, hostname=35.173.35.228, name=aws_x86_64_reserved_prod_08872310_20260515_212342, requested_tags=['arch_x86_64', 'copr_builder'] [2026-05-15 21:27:04,979][ INFO][PID:1705182] Allocating ssh connection to builder [2026-05-15 21:27:04,981][ INFO][PID:1705182] Checking that builder machine is OK [2026-05-15 21:27:05,323][ INFO][PID:1705182] Installed copr-rpmbuild version: 1.8 [2026-05-15 21:27:05,324][ INFO][PID:1705182] Running remote command: copr-builder-ready srpm-builds [2026-05-15 21:27:05,559][ INFO][PID:1705182] Red Hat subscription not needed for srpm-builds Builder is ready to be used [2026-05-15 21:27:05,562][ INFO][PID:1705182] Filling build.info file with builder info [2026-05-15 21:27:05,566][ INFO][PID:1705182] Checking for cancel request [2026-05-15 21:27:05,569][ INFO][PID:1705182] 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:5126", "submitter": null, "ended_on": null, "started_on": 1778880425.569259, "submitted_on": null, "status": 3, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10464458", "build_id": 10464458, "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\": \"tmpdz_uzli1\", \"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--5394c21d-77ae-4c98-9123-f6e50daafc7d", "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:5126", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5126", "result_dir": "10464458", "built_packages": "", "tags": [ "arch_x86_64" ], "id": 10464458, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2026-05-15 21:27:05,627][ INFO][PID:1705182] Sending fedora-messaging bus message in build.start [2026-05-15 21:27:06,161][ INFO][PID:1705182] Sending fedora-messaging bus message in chroot.start [2026-05-15 21:27:06,193][ INFO][PID:1705182] Starting remote build: copr-rpmbuild --verbose --drop-resultdir --srpm --task-url https://copr.fedorainfracloud.org/backend/get-srpm-build-task/10464458 --detached [2026-05-15 21:27:06,626][ INFO][PID:1705182] The copr-rpmbuild seems started, per: stdout: stderr: Warning: Permanently added '35.173.35.228' (ED25519) to the list of known hosts. [2026-05-15 21:27:06,627][ INFO][PID:1705182] Downloading the builder-live.log file, attempt 1 [2026-05-15 21:27:06,629][ INFO][PID:1705182] Popen command started: ssh -F /home/copr/.ssh/config mockbuilder@35.173.35.228 copr-rpmbuild-log [2026-05-15 21:27:11,636][ INFO][PID:1705182] Periodic builder liveness probe: alive [2026-05-15 21:27:11,637][ INFO][PID:1705182] Checking for cancel request [2026-05-15 21:27:16,638][ INFO][PID:1705182] Checking for cancel request [2026-05-15 21:27:21,641][ INFO][PID:1705182] Checking for cancel request [2026-05-15 21:27:26,645][ INFO][PID:1705182] Checking for cancel request [2026-05-15 21:27:31,646][ INFO][PID:1705182] Checking for cancel request [2026-05-15 21:27:36,648][ INFO][PID:1705182] Checking for cancel request [2026-05-15 21:27:41,650][ INFO][PID:1705182] Checking for cancel request [2026-05-15 21:27:46,656][ INFO][PID:1705182] Checking for cancel request [2026-05-15 21:27:51,658][ INFO][PID:1705182] Checking for cancel request [2026-05-15 21:27:56,659][ INFO][PID:1705182] Checking for cancel request [2026-05-15 21:28:01,662][ INFO][PID:1705182] Checking for cancel request [2026-05-15 21:28:06,669][ INFO][PID:1705182] Checking for cancel request [2026-05-15 21:28:11,671][ INFO][PID:1705182] Checking for cancel request [2026-05-15 21:28:16,672][ INFO][PID:1705182] Checking for cancel request [2026-05-15 21:28:21,674][ INFO][PID:1705182] Checking for cancel request [2026-05-15 21:28:26,676][ INFO][PID:1705182] Checking for cancel request [2026-05-15 21:28:31,677][ INFO][PID:1705182] Checking for cancel request [2026-05-15 21:28:36,680][ INFO][PID:1705182] Checking for cancel request [2026-05-15 21:28:41,681][ INFO][PID:1705182] Checking for cancel request [2026-05-15 21:28:46,682][ INFO][PID:1705182] Checking for cancel request [2026-05-15 21:28:51,684][ INFO][PID:1705182] Checking for cancel request [2026-05-15 21:28:56,685][ INFO][PID:1705182] Checking for cancel request [2026-05-15 21:29:01,686][ INFO][PID:1705182] Checking for cancel request [2026-05-15 21:29:06,688][ INFO][PID:1705182] Checking for cancel request [2026-05-15 21:29:11,689][ INFO][PID:1705182] Checking for cancel request [2026-05-15 21:29:16,690][ INFO][PID:1705182] Checking for cancel request [2026-05-15 21:29:21,692][ INFO][PID:1705182] Checking for cancel request [2026-05-15 21:29:26,693][ INFO][PID:1705182] Checking for cancel request [2026-05-15 21:29:31,694][ INFO][PID:1705182] Checking for cancel request [2026-05-15 21:29:36,696][ INFO][PID:1705182] Checking for cancel request [2026-05-15 21:29:41,697][ INFO][PID:1705182] Checking for cancel request [2026-05-15 21:29:46,699][ INFO][PID:1705182] Checking for cancel request [2026-05-15 21:29:51,700][ INFO][PID:1705182] Checking for cancel request [2026-05-15 21:29:56,701][ INFO][PID:1705182] Checking for cancel request [2026-05-15 21:30:01,703][ INFO][PID:1705182] Checking for cancel request [2026-05-15 21:30:06,704][ INFO][PID:1705182] Checking for cancel request [2026-05-15 21:30:11,705][ INFO][PID:1705182] Checking for cancel request [2026-05-15 21:30:16,707][ INFO][PID:1705182] Checking for cancel request [2026-05-15 21:30:21,708][ INFO][PID:1705182] Checking for cancel request [2026-05-15 21:30:26,717][ INFO][PID:1705182] Checking for cancel request [2026-05-15 21:30:31,719][ INFO][PID:1705182] Checking for cancel request [2026-05-15 21:30:36,720][ INFO][PID:1705182] Checking for cancel request [2026-05-15 21:30:41,722][ INFO][PID:1705182] Checking for cancel request [2026-05-15 21:30:46,723][ INFO][PID:1705182] Checking for cancel request [2026-05-15 21:30:51,724][ INFO][PID:1705182] Checking for cancel request [2026-05-15 21:30:56,726][ INFO][PID:1705182] Checking for cancel request [2026-05-15 21:31:01,728][ INFO][PID:1705182] Checking for cancel request [2026-05-15 21:31:06,730][ INFO][PID:1705182] Checking for cancel request [2026-05-15 21:31:11,731][ INFO][PID:1705182] Checking for cancel request [2026-05-15 21:31:16,732][ INFO][PID:1705182] Checking for cancel request [2026-05-15 21:31:21,734][ INFO][PID:1705182] Checking for cancel request [2026-05-15 21:31:26,735][ INFO][PID:1705182] Checking for cancel request [2026-05-15 21:31:31,737][ INFO][PID:1705182] Checking for cancel request [2026-05-15 21:31:36,739][ INFO][PID:1705182] Checking for cancel request [2026-05-15 21:31:41,741][ INFO][PID:1705182] Checking for cancel request [2026-05-15 21:31:46,743][ INFO][PID:1705182] Checking for cancel request [2026-05-15 21:31:51,744][ INFO][PID:1705182] Checking for cancel request [2026-05-15 21:31:56,746][ INFO][PID:1705182] Checking for cancel request [2026-05-15 21:32:01,747][ INFO][PID:1705182] Checking for cancel request [2026-05-15 21:32:06,778][ INFO][PID:1705182] Checking for cancel request [2026-05-15 21:32:11,779][ INFO][PID:1705182] Checking for cancel request [2026-05-15 21:32:16,781][ INFO][PID:1705182] Checking for cancel request [2026-05-15 21:32:21,783][ INFO][PID:1705182] Checking for cancel request [2026-05-15 21:32:26,784][ INFO][PID:1705182] Checking for cancel request [2026-05-15 21:32:31,786][ INFO][PID:1705182] Checking for cancel request [2026-05-15 21:32:36,787][ INFO][PID:1705182] Checking for cancel request [2026-05-15 21:32:41,789][ INFO][PID:1705182] Checking for cancel request [2026-05-15 21:32:46,790][ INFO][PID:1705182] Checking for cancel request [2026-05-15 21:32:51,792][ INFO][PID:1705182] Checking for cancel request [2026-05-15 21:32:56,794][ INFO][PID:1705182] Checking for cancel request [2026-05-15 21:33:01,796][ INFO][PID:1705182] Checking for cancel request [2026-05-15 21:33:06,797][ INFO][PID:1705182] Checking for cancel request [2026-05-15 21:33:11,798][ INFO][PID:1705182] Checking for cancel request [2026-05-15 21:33:16,800][ INFO][PID:1705182] Checking for cancel request [2026-05-15 21:33:21,801][ INFO][PID:1705182] Checking for cancel request [2026-05-15 21:33:26,803][ INFO][PID:1705182] Checking for cancel request [2026-05-15 21:33:31,804][ INFO][PID:1705182] Checking for cancel request [2026-05-15 21:33:36,847][ INFO][PID:1705182] Checking for cancel request [2026-05-15 21:33:41,848][ INFO][PID:1705182] Checking for cancel request [2026-05-15 21:33:46,850][ INFO][PID:1705182] Checking for cancel request [2026-05-15 21:33:51,852][ INFO][PID:1705182] Checking for cancel request [2026-05-15 21:33:56,853][ INFO][PID:1705182] Checking for cancel request [2026-05-15 21:34:01,919][ INFO][PID:1705182] Checking for cancel request [2026-05-15 21:34:06,920][ INFO][PID:1705182] Checking for cancel request [2026-05-15 21:34:11,922][ INFO][PID:1705182] Checking for cancel request [2026-05-15 21:34:16,924][ INFO][PID:1705182] Checking for cancel request [2026-05-15 21:34:21,925][ INFO][PID:1705182] Checking for cancel request [2026-05-15 21:34:26,927][ INFO][PID:1705182] Checking for cancel request [2026-05-15 21:34:31,929][ INFO][PID:1705182] Checking for cancel request [2026-05-15 21:34:36,930][ INFO][PID:1705182] Checking for cancel request [2026-05-15 21:34:42,009][ INFO][PID:1705182] Checking for cancel request [2026-05-15 21:34:47,010][ INFO][PID:1705182] Checking for cancel request [2026-05-15 21:34:52,012][ INFO][PID:1705182] Checking for cancel request [2026-05-15 21:34:57,014][ INFO][PID:1705182] Checking for cancel request [2026-05-15 21:35:02,015][ INFO][PID:1705182] Checking for cancel request [2026-05-15 21:35:07,024][ INFO][PID:1705182] Checking for cancel request [2026-05-15 21:35:12,031][ INFO][PID:1705182] Checking for cancel request [2026-05-15 21:35:17,039][ INFO][PID:1705182] Checking for cancel request [2026-05-15 21:35:22,071][ INFO][PID:1705182] Checking for cancel request [2026-05-15 21:35:27,072][ INFO][PID:1705182] Checking for cancel request [2026-05-15 21:35:32,075][ INFO][PID:1705182] Checking for cancel request [2026-05-15 21:35:33,526][ INFO][PID:1705182] Downloading results from builder [2026-05-15 21:35:33,625][ INFO][PID:1705182] rsyncing of mockbuilder@35.173.35.228:/var/lib/copr-rpmbuild/results/ to /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5126/srpm-builds/10464458 started [2026-05-15 21:35:33,755][ INFO][PID:1705182] Popen command started: /usr/bin/rsync -rltDvH --chmod=D755,F644 -e 'ssh -F /home/copr/.ssh/config' mockbuilder@35.173.35.228:/var/lib/copr-rpmbuild/results/ /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5126/srpm-builds/10464458/ &> /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5126/srpm-builds/10464458/build-10464458.rsync.log [2026-05-15 21:35:38,100][ INFO][PID:1705182] rsyncing finished. [2026-05-15 21:35:38,201][ INFO][PID:1705182] VM Release request [2026-05-15 21:35:38,838][ INFO][PID:1705182] Searching for 'success' file in resultdir [2026-05-15 21:35:39,291][ INFO][PID:1705182] Getting build details [2026-05-15 21:35:39,312][ INFO][PID:1705182] Retrieving SRPM info from /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5126/srpm-builds/10464458 [2026-05-15 21:35:40,031][ INFO][PID:1705182] SRPM URL: https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5126/srpm-builds/10464458/Sunshine-0.0.5126-1.src.rpm [2026-05-15 21:35:40,054][ INFO][PID:1705182] build details: {'srpm_url': 'https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5126/srpm-builds/10464458/Sunshine-0.0.5126-1.src.rpm', 'pkg_name': 'Sunshine', 'pkg_version': '0.0.5126-1'} [2026-05-15 21:35:40,223][ INFO][PID:1705182] Finished build: id=10464458 failed=False timeout=108000 destdir=/var/lib/copr/public_html/results/lizardbyte/pulls:pr:5126 chroot=srpm-builds [2026-05-15 21:35:41,320][ INFO][PID:1705182] Worker succeeded build, took 515.7448034286499 [2026-05-15 21:35:41,402][ INFO][PID:1705182] 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:5126", "submitter": null, "ended_on": 1778880941.3140624, "started_on": 1778880425.569259, "submitted_on": null, "status": 1, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10464458", "build_id": 10464458, "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\": \"tmpdz_uzli1\", \"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:5126/srpm-builds/10464458/Sunshine-0.0.5126-1.src.rpm", "uses_devel_repo": null, "sandbox": "lizardbyte/pulls--5394c21d-77ae-4c98-9123-f6e50daafc7d", "results": { "architecture_specific_tags": { "fedora-42": {}, "fedora-43": {}, "fedora-44": {}, "fedora-rawhide": {}, "opensuse-leap-15.6": {} }, "name": "Sunshine", "epoch": null, "version": "0.0.5126", "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:5126", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5126", "result_dir": "10464458", "built_packages": "", "tags": [ "arch_x86_64" ], "pkg_version": "0.0.5126-1", "id": 10464458, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2026-05-15 21:35:46,445][ INFO][PID:1705182] Sending fedora-messaging bus message in build.end [2026-05-15 21:35:50,849][ INFO][PID:1705182] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5126/srpm-builds/10464458/builder-live.log by gzip [2026-05-15 21:35:51,186][ INFO][PID:1705182] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5126/srpm-builds/10464458/builder-live.log' as PID 1750956 [2026-05-15 21:35:51,338][ INFO][PID:1705182] Finished after 0 seconds with exit code 0 (gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5126/srpm-builds/10464458/builder-live.log) [2026-05-15 21:35:51,358][ INFO][PID:1705182] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5126/srpm-builds/10464458/backend.log by gzip [2026-05-15 21:35:51,368][ INFO][PID:1705182] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5126/srpm-builds/10464458/backend.log' as PID 1750987