[2026-06-29 07:49:48,074][ INFO][PID:2825914] Marking build as starting [2026-06-29 07:49:48,113][ INFO][PID:2825914] Checking for cancel request [2026-06-29 07:49:48,114][ INFO][PID:2825914] VM allocation process starts [2026-06-29 07:49:48,125][ INFO][PID:2825914] Trying to allocate VM: ResallocHost, ticket_id=3659820, requested_tags=['arch_x86_64', 'copr_builder'] [2026-06-29 07:49:51,139][ INFO][PID:2825914] Allocated host ResallocHost, ticket_id=3659820, hostname=34.230.23.233, name=aws_x86_64_reserved_prod_12769069_20260629_073942, requested_tags=['arch_x86_64', 'copr_builder'] [2026-06-29 07:49:51,140][ INFO][PID:2825914] Allocating ssh connection to builder [2026-06-29 07:49:51,140][ INFO][PID:2825914] Checking that builder machine is OK [2026-06-29 07:49:51,459][ INFO][PID:2825914] Installed copr-rpmbuild version: 1.8 [2026-06-29 07:49:51,460][ INFO][PID:2825914] Running remote command: copr-builder-ready srpm-builds [2026-06-29 07:49:51,632][ INFO][PID:2825914] Red Hat subscription not needed for srpm-builds Builder is ready to be used [2026-06-29 07:49:51,632][ INFO][PID:2825914] Filling build.info file with builder info [2026-06-29 07:49:51,633][ INFO][PID:2825914] Checking for cancel request [2026-06-29 07:49:51,634][ INFO][PID:2825914] 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:5359", "submitter": null, "ended_on": null, "started_on": 1782719391.634177, "submitted_on": null, "status": 3, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10658505", "build_id": 10658505, "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\": \"tmpv2ddyc1a\", \"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--9705f2be-aaf0-40d7-aa0a-fdad5f754205", "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", "opensuse-leap-15.6" ], "distributions_in_project": [ "fedora-43", "fedora-44", "fedora-rawhide", "opensuse-leap-15.6" ], "destdir": "/var/lib/copr/public_html/results/lizardbyte/pulls:pr:5359", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5359", "result_dir": "10658505", "built_packages": "", "tags": [ "arch_x86_64" ], "rpmeta_prediction": null, "id": 10658505, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2026-06-29 07:49:51,670][ INFO][PID:2825914] Sending fedora-messaging bus message in build.start [2026-06-29 07:49:52,311][ INFO][PID:2825914] Sending fedora-messaging bus message in chroot.start [2026-06-29 07:49:52,358][ INFO][PID:2825914] Starting remote build: copr-rpmbuild --verbose --drop-resultdir --srpm --task-url https://copr.fedorainfracloud.org/backend/get-srpm-build-task/10658505 --detached [2026-06-29 07:49:53,096][ INFO][PID:2825914] The copr-rpmbuild seems started, per: stdout: stderr: Warning: Permanently added '34.230.23.233' (ED25519) to the list of known hosts. [2026-06-29 07:49:53,097][ INFO][PID:2825914] Downloading the builder-live.log file, attempt 1 [2026-06-29 07:49:53,113][ INFO][PID:2825914] Popen command started: ssh -F /home/copr/.ssh/config mockbuilder@34.230.23.233 copr-rpmbuild-log [2026-06-29 07:49:58,103][ INFO][PID:2825914] Periodic builder liveness probe: alive [2026-06-29 07:49:58,103][ INFO][PID:2825914] Checking for cancel request [2026-06-29 07:50:03,105][ INFO][PID:2825914] Checking for cancel request [2026-06-29 07:50:08,106][ INFO][PID:2825914] Checking for cancel request [2026-06-29 07:50:13,162][ INFO][PID:2825914] Checking for cancel request [2026-06-29 07:50:18,164][ INFO][PID:2825914] Checking for cancel request [2026-06-29 07:50:23,165][ INFO][PID:2825914] Checking for cancel request [2026-06-29 07:50:28,468][ INFO][PID:2825914] Checking for cancel request [2026-06-29 07:50:33,469][ INFO][PID:2825914] Checking for cancel request [2026-06-29 07:50:38,496][ INFO][PID:2825914] Checking for cancel request [2026-06-29 07:50:43,498][ INFO][PID:2825914] Checking for cancel request [2026-06-29 07:50:48,499][ INFO][PID:2825914] Checking for cancel request [2026-06-29 07:50:53,505][ INFO][PID:2825914] Checking for cancel request [2026-06-29 07:50:58,510][ INFO][PID:2825914] Checking for cancel request [2026-06-29 07:51:03,511][ INFO][PID:2825914] Checking for cancel request [2026-06-29 07:51:08,516][ INFO][PID:2825914] Checking for cancel request [2026-06-29 07:51:13,518][ INFO][PID:2825914] Checking for cancel request [2026-06-29 07:51:18,520][ INFO][PID:2825914] Checking for cancel request [2026-06-29 07:51:23,522][ INFO][PID:2825914] Checking for cancel request [2026-06-29 07:51:28,527][ INFO][PID:2825914] Checking for cancel request [2026-06-29 07:51:33,529][ INFO][PID:2825914] Checking for cancel request [2026-06-29 07:51:38,531][ INFO][PID:2825914] Checking for cancel request [2026-06-29 07:51:43,532][ INFO][PID:2825914] Checking for cancel request [2026-06-29 07:51:48,537][ INFO][PID:2825914] Checking for cancel request [2026-06-29 07:51:53,538][ INFO][PID:2825914] Checking for cancel request [2026-06-29 07:51:58,540][ INFO][PID:2825914] Checking for cancel request [2026-06-29 07:52:03,542][ INFO][PID:2825914] Checking for cancel request [2026-06-29 07:52:08,544][ INFO][PID:2825914] Checking for cancel request [2026-06-29 07:52:13,555][ INFO][PID:2825914] Checking for cancel request [2026-06-29 07:52:18,557][ INFO][PID:2825914] Checking for cancel request [2026-06-29 07:52:23,558][ INFO][PID:2825914] Checking for cancel request [2026-06-29 07:52:28,559][ INFO][PID:2825914] Checking for cancel request [2026-06-29 07:52:33,561][ INFO][PID:2825914] Checking for cancel request [2026-06-29 07:52:38,563][ INFO][PID:2825914] Checking for cancel request [2026-06-29 07:52:43,573][ INFO][PID:2825914] Checking for cancel request [2026-06-29 07:52:48,575][ INFO][PID:2825914] Checking for cancel request [2026-06-29 07:52:53,577][ INFO][PID:2825914] Checking for cancel request [2026-06-29 07:52:58,610][ INFO][PID:2825914] Checking for cancel request [2026-06-29 07:53:03,611][ INFO][PID:2825914] Checking for cancel request [2026-06-29 07:53:08,613][ INFO][PID:2825914] Checking for cancel request [2026-06-29 07:53:13,614][ INFO][PID:2825914] Checking for cancel request [2026-06-29 07:53:18,615][ INFO][PID:2825914] Checking for cancel request [2026-06-29 07:53:23,617][ INFO][PID:2825914] Checking for cancel request [2026-06-29 07:53:28,618][ INFO][PID:2825914] Checking for cancel request [2026-06-29 07:53:33,620][ INFO][PID:2825914] Checking for cancel request [2026-06-29 07:53:38,622][ INFO][PID:2825914] Checking for cancel request [2026-06-29 07:53:43,624][ INFO][PID:2825914] Checking for cancel request [2026-06-29 07:53:48,626][ INFO][PID:2825914] Checking for cancel request [2026-06-29 07:53:53,627][ INFO][PID:2825914] Checking for cancel request [2026-06-29 07:53:58,630][ INFO][PID:2825914] Checking for cancel request [2026-06-29 07:54:03,631][ INFO][PID:2825914] Checking for cancel request [2026-06-29 07:54:08,635][ INFO][PID:2825914] Checking for cancel request [2026-06-29 07:54:13,637][ INFO][PID:2825914] Checking for cancel request [2026-06-29 07:54:18,640][ INFO][PID:2825914] Checking for cancel request [2026-06-29 07:54:23,641][ INFO][PID:2825914] Checking for cancel request [2026-06-29 07:54:28,643][ INFO][PID:2825914] Checking for cancel request [2026-06-29 07:54:33,645][ INFO][PID:2825914] Checking for cancel request [2026-06-29 07:54:38,646][ INFO][PID:2825914] Checking for cancel request [2026-06-29 07:54:43,648][ INFO][PID:2825914] Checking for cancel request [2026-06-29 07:54:48,649][ INFO][PID:2825914] Checking for cancel request [2026-06-29 07:54:53,652][ INFO][PID:2825914] Checking for cancel request [2026-06-29 07:54:58,658][ INFO][PID:2825914] Checking for cancel request [2026-06-29 07:55:03,660][ INFO][PID:2825914] Checking for cancel request [2026-06-29 07:55:08,661][ INFO][PID:2825914] Checking for cancel request [2026-06-29 07:55:13,663][ INFO][PID:2825914] Checking for cancel request [2026-06-29 07:55:18,664][ INFO][PID:2825914] Checking for cancel request [2026-06-29 07:55:23,665][ INFO][PID:2825914] Checking for cancel request [2026-06-29 07:55:28,667][ INFO][PID:2825914] Checking for cancel request [2026-06-29 07:55:33,670][ INFO][PID:2825914] Checking for cancel request [2026-06-29 07:55:38,671][ INFO][PID:2825914] Checking for cancel request [2026-06-29 07:55:43,673][ INFO][PID:2825914] Checking for cancel request [2026-06-29 07:55:48,674][ INFO][PID:2825914] Checking for cancel request [2026-06-29 07:55:53,676][ INFO][PID:2825914] Checking for cancel request [2026-06-29 07:55:58,677][ INFO][PID:2825914] Checking for cancel request [2026-06-29 07:56:03,679][ INFO][PID:2825914] Checking for cancel request [2026-06-29 07:56:08,680][ INFO][PID:2825914] Checking for cancel request [2026-06-29 07:56:13,682][ INFO][PID:2825914] Checking for cancel request [2026-06-29 07:56:18,683][ INFO][PID:2825914] Checking for cancel request [2026-06-29 07:56:23,685][ INFO][PID:2825914] Checking for cancel request [2026-06-29 07:56:28,686][ INFO][PID:2825914] Checking for cancel request [2026-06-29 07:56:33,688][ INFO][PID:2825914] Checking for cancel request [2026-06-29 07:56:38,704][ INFO][PID:2825914] Checking for cancel request [2026-06-29 07:56:43,705][ INFO][PID:2825914] Checking for cancel request [2026-06-29 07:56:48,706][ INFO][PID:2825914] Checking for cancel request [2026-06-29 07:56:53,708][ INFO][PID:2825914] Checking for cancel request [2026-06-29 07:56:58,710][ INFO][PID:2825914] Checking for cancel request [2026-06-29 07:57:03,713][ INFO][PID:2825914] Checking for cancel request [2026-06-29 07:57:08,714][ INFO][PID:2825914] Checking for cancel request [2026-06-29 07:57:13,716][ INFO][PID:2825914] Checking for cancel request [2026-06-29 07:57:18,717][ INFO][PID:2825914] Checking for cancel request [2026-06-29 07:57:23,718][ INFO][PID:2825914] Checking for cancel request [2026-06-29 07:57:28,719][ INFO][PID:2825914] Checking for cancel request [2026-06-29 07:57:33,721][ INFO][PID:2825914] Checking for cancel request [2026-06-29 07:57:38,723][ INFO][PID:2825914] Checking for cancel request [2026-06-29 07:57:43,724][ INFO][PID:2825914] Checking for cancel request [2026-06-29 07:57:48,726][ INFO][PID:2825914] Checking for cancel request [2026-06-29 07:57:53,727][ INFO][PID:2825914] Checking for cancel request [2026-06-29 07:57:58,732][ INFO][PID:2825914] Checking for cancel request [2026-06-29 07:58:03,736][ INFO][PID:2825914] Checking for cancel request [2026-06-29 07:58:08,737][ INFO][PID:2825914] Checking for cancel request [2026-06-29 07:58:13,740][ INFO][PID:2825914] Checking for cancel request [2026-06-29 07:58:18,745][ INFO][PID:2825914] Checking for cancel request [2026-06-29 07:58:23,748][ INFO][PID:2825914] Checking for cancel request [2026-06-29 07:58:28,752][ INFO][PID:2825914] Checking for cancel request [2026-06-29 07:58:33,754][ INFO][PID:2825914] Checking for cancel request [2026-06-29 07:58:38,755][ INFO][PID:2825914] Checking for cancel request [2026-06-29 07:58:43,758][ INFO][PID:2825914] Checking for cancel request [2026-06-29 07:58:48,760][ INFO][PID:2825914] Checking for cancel request [2026-06-29 07:58:53,761][ INFO][PID:2825914] Checking for cancel request [2026-06-29 07:58:58,764][ INFO][PID:2825914] Checking for cancel request [2026-06-29 07:58:59,322][ INFO][PID:2825914] Downloading results from builder [2026-06-29 07:58:59,350][ INFO][PID:2825914] rsyncing of mockbuilder@34.230.23.233:/var/lib/copr-rpmbuild/results/ to /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5359/srpm-builds/10658505 started [2026-06-29 07:58:59,430][ INFO][PID:2825914] Popen command started: /usr/bin/rsync -rltDvH --chmod=D755,F644 -e 'ssh -F /home/copr/.ssh/config' mockbuilder@34.230.23.233:/var/lib/copr-rpmbuild/results/ /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5359/srpm-builds/10658505/ &> /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5359/srpm-builds/10658505/build-10658505.rsync.log [2026-06-29 07:59:06,802][ INFO][PID:2825914] rsyncing finished. [2026-06-29 07:59:06,808][ INFO][PID:2825914] VM Release request [2026-06-29 07:59:07,060][ INFO][PID:2825914] Searching for 'success' file in resultdir [2026-06-29 07:59:07,131][ INFO][PID:2825914] Getting build details [2026-06-29 07:59:07,135][ INFO][PID:2825914] Retrieving SRPM info from /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5359/srpm-builds/10658505 [2026-06-29 07:59:07,213][ INFO][PID:2825914] SRPM URL: https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5359/srpm-builds/10658505/Sunshine-0.0.5359-1.src.rpm [2026-06-29 07:59:07,217][ INFO][PID:2825914] build details: {'srpm_url': 'https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5359/srpm-builds/10658505/Sunshine-0.0.5359-1.src.rpm', 'pkg_name': 'Sunshine', 'pkg_version': '0.0.5359-1'} [2026-06-29 07:59:07,240][ INFO][PID:2825914] Finished build: id=10658505 failed=False timeout=108000 destdir=/var/lib/copr/public_html/results/lizardbyte/pulls:pr:5359 chroot=srpm-builds [2026-06-29 07:59:07,364][ INFO][PID:2825914] Worker succeeded build, took 555.7297797203064 [2026-06-29 07:59:07,381][ INFO][PID:2825914] 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:5359", "submitter": null, "ended_on": 1782719947.3639567, "started_on": 1782719391.634177, "submitted_on": null, "status": 1, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10658505", "build_id": 10658505, "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\": \"tmpv2ddyc1a\", \"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:5359/srpm-builds/10658505/Sunshine-0.0.5359-1.src.rpm", "uses_devel_repo": null, "sandbox": "lizardbyte/pulls--9705f2be-aaf0-40d7-aa0a-fdad5f754205", "results": { "architecture_specific_tags": { "fedora-43": {}, "fedora-44": {}, "fedora-rawhide": {}, "opensuse-leap-15.6": {} }, "name": "Sunshine", "epoch": null, "version": "0.0.5359", "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", "opensuse-leap-15.6" ], "distributions_in_project": [ "fedora-43", "fedora-44", "fedora-rawhide", "opensuse-leap-15.6" ], "destdir": "/var/lib/copr/public_html/results/lizardbyte/pulls:pr:5359", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5359", "result_dir": "10658505", "built_packages": "", "tags": [ "arch_x86_64" ], "rpmeta_prediction": null, "pkg_version": "0.0.5359-1", "id": 10658505, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2026-06-29 07:59:08,291][ INFO][PID:2825914] Sending fedora-messaging bus message in build.end [2026-06-29 07:59:08,699][ INFO][PID:2825914] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5359/srpm-builds/10658505/builder-live.log by gzip [2026-06-29 07:59:08,723][ INFO][PID:2825914] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5359/srpm-builds/10658505/builder-live.log' as PID 2888665 [2026-06-29 07:59:08,755][ INFO][PID:2825914] Finished after 0 seconds with exit code 0 (gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5359/srpm-builds/10658505/builder-live.log) [2026-06-29 07:59:08,761][ INFO][PID:2825914] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5359/srpm-builds/10658505/backend.log by gzip [2026-06-29 07:59:08,764][ INFO][PID:2825914] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5359/srpm-builds/10658505/backend.log' as PID 2888678