[2026-08-10 04:42:11,933][ INFO][PID:3678424] Marking build as starting [2026-08-10 04:42:11,986][ INFO][PID:3678424] Checking for cancel request [2026-08-10 04:42:11,989][ INFO][PID:3678424] VM allocation process starts [2026-08-10 04:42:12,000][ INFO][PID:3678424] Trying to allocate VM: ResallocHost, ticket_id=4371341, requested_tags=['arch_x86_64', 'copr_builder'] [2026-08-10 04:42:15,058][ INFO][PID:3678424] Allocated host ResallocHost, ticket_id=4371341, hostname=44.203.81.13, name=aws_x86_64_reserved_prod_17561881_20260810_042153, requested_tags=['arch_x86_64', 'copr_builder'] [2026-08-10 04:42:15,059][ INFO][PID:3678424] Allocating ssh connection to builder [2026-08-10 04:42:15,060][ INFO][PID:3678424] Checking that builder machine is OK [2026-08-10 04:42:15,368][ INFO][PID:3678424] Installed copr-rpmbuild version: 1.8 [2026-08-10 04:42:15,368][ INFO][PID:3678424] Running remote command: copr-builder-ready srpm-builds [2026-08-10 04:42:15,551][ INFO][PID:3678424] Red Hat subscription not needed for srpm-builds Builder is ready to be used [2026-08-10 04:42:15,552][ INFO][PID:3678424] Filling build.info file with builder info [2026-08-10 04:42:15,553][ INFO][PID:3678424] Checking for cancel request [2026-08-10 04:42:15,554][ INFO][PID:3678424] 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:5492", "submitter": null, "ended_on": null, "started_on": 1786336935.5544024, "submitted_on": null, "status": 3, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10841504", "build_id": 10841504, "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\": \"tmpgbiyms9y\", \"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--c4d9c33e-e362-4557-a63e-1c3847dc32f0", "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:5492", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5492", "result_dir": "10841504", "built_packages": "", "tags": [ "arch_x86_64" ], "rpmeta_prediction": null, "id": 10841504, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2026-08-10 04:42:15,591][ INFO][PID:3678424] Sending fedora-messaging bus message in build.start [2026-08-10 04:42:16,213][ INFO][PID:3678424] Sending fedora-messaging bus message in chroot.start [2026-08-10 04:42:16,240][ INFO][PID:3678424] Starting remote build: copr-rpmbuild --verbose --drop-resultdir --srpm --task-url https://copr.fedorainfracloud.org/backend/get-srpm-build-task/10841504 --detached [2026-08-10 04:42:16,705][ INFO][PID:3678424] The copr-rpmbuild seems started, per: stdout: stderr: Warning: Permanently added '44.203.81.13' (ED25519) to the list of known hosts. [2026-08-10 04:42:16,706][ INFO][PID:3678424] Downloading the builder-live.log file, attempt 1 [2026-08-10 04:42:16,707][ INFO][PID:3678424] Popen command started: ssh -F /home/copr/.ssh/config mockbuilder@44.203.81.13 copr-rpmbuild-log [2026-08-10 04:42:21,743][ INFO][PID:3678424] Periodic builder liveness probe: alive [2026-08-10 04:42:21,744][ INFO][PID:3678424] Checking for cancel request [2026-08-10 04:42:26,745][ INFO][PID:3678424] Checking for cancel request [2026-08-10 04:42:31,746][ INFO][PID:3678424] Checking for cancel request [2026-08-10 04:42:36,748][ INFO][PID:3678424] Checking for cancel request [2026-08-10 04:42:41,750][ INFO][PID:3678424] Checking for cancel request [2026-08-10 04:42:46,751][ INFO][PID:3678424] Checking for cancel request [2026-08-10 04:42:51,753][ INFO][PID:3678424] Checking for cancel request [2026-08-10 04:42:56,755][ INFO][PID:3678424] Checking for cancel request [2026-08-10 04:43:01,758][ INFO][PID:3678424] Checking for cancel request [2026-08-10 04:43:06,759][ INFO][PID:3678424] Checking for cancel request [2026-08-10 04:43:11,761][ INFO][PID:3678424] Checking for cancel request [2026-08-10 04:43:16,762][ INFO][PID:3678424] Checking for cancel request [2026-08-10 04:43:21,763][ INFO][PID:3678424] Checking for cancel request [2026-08-10 04:43:26,765][ INFO][PID:3678424] Checking for cancel request [2026-08-10 04:43:31,766][ INFO][PID:3678424] Checking for cancel request [2026-08-10 04:43:36,768][ INFO][PID:3678424] Checking for cancel request [2026-08-10 04:43:41,770][ INFO][PID:3678424] Checking for cancel request [2026-08-10 04:43:46,772][ INFO][PID:3678424] Checking for cancel request [2026-08-10 04:43:51,774][ INFO][PID:3678424] Checking for cancel request [2026-08-10 04:43:56,775][ INFO][PID:3678424] Checking for cancel request [2026-08-10 04:44:01,777][ INFO][PID:3678424] Checking for cancel request [2026-08-10 04:44:06,778][ INFO][PID:3678424] Checking for cancel request [2026-08-10 04:44:11,780][ INFO][PID:3678424] Checking for cancel request [2026-08-10 04:44:16,782][ INFO][PID:3678424] Checking for cancel request [2026-08-10 04:44:21,783][ INFO][PID:3678424] Checking for cancel request [2026-08-10 04:44:26,784][ INFO][PID:3678424] Checking for cancel request [2026-08-10 04:44:31,786][ INFO][PID:3678424] Checking for cancel request [2026-08-10 04:44:36,788][ INFO][PID:3678424] Checking for cancel request [2026-08-10 04:44:41,789][ INFO][PID:3678424] Checking for cancel request [2026-08-10 04:44:46,791][ INFO][PID:3678424] Checking for cancel request [2026-08-10 04:44:51,792][ INFO][PID:3678424] Checking for cancel request [2026-08-10 04:44:56,793][ INFO][PID:3678424] Checking for cancel request [2026-08-10 04:45:01,795][ INFO][PID:3678424] Checking for cancel request [2026-08-10 04:45:06,796][ INFO][PID:3678424] Checking for cancel request [2026-08-10 04:45:11,798][ INFO][PID:3678424] Checking for cancel request [2026-08-10 04:45:16,799][ INFO][PID:3678424] Checking for cancel request [2026-08-10 04:45:21,800][ INFO][PID:3678424] Checking for cancel request [2026-08-10 04:45:26,801][ INFO][PID:3678424] Checking for cancel request [2026-08-10 04:45:31,803][ INFO][PID:3678424] Checking for cancel request [2026-08-10 04:45:36,804][ INFO][PID:3678424] Checking for cancel request [2026-08-10 04:45:41,805][ INFO][PID:3678424] Checking for cancel request [2026-08-10 04:45:46,806][ INFO][PID:3678424] Checking for cancel request [2026-08-10 04:45:51,808][ INFO][PID:3678424] Checking for cancel request [2026-08-10 04:45:56,809][ INFO][PID:3678424] Checking for cancel request [2026-08-10 04:46:01,811][ INFO][PID:3678424] Checking for cancel request [2026-08-10 04:46:06,812][ INFO][PID:3678424] Checking for cancel request [2026-08-10 04:46:11,814][ INFO][PID:3678424] Checking for cancel request [2026-08-10 04:46:16,815][ INFO][PID:3678424] Checking for cancel request [2026-08-10 04:46:21,816][ INFO][PID:3678424] Checking for cancel request [2026-08-10 04:46:26,817][ INFO][PID:3678424] Checking for cancel request [2026-08-10 04:46:31,819][ INFO][PID:3678424] Checking for cancel request [2026-08-10 04:46:36,820][ INFO][PID:3678424] Checking for cancel request [2026-08-10 04:46:41,821][ INFO][PID:3678424] Checking for cancel request [2026-08-10 04:46:46,823][ INFO][PID:3678424] Checking for cancel request [2026-08-10 04:46:51,824][ INFO][PID:3678424] Checking for cancel request [2026-08-10 04:46:56,826][ INFO][PID:3678424] Checking for cancel request [2026-08-10 04:47:01,827][ INFO][PID:3678424] Checking for cancel request [2026-08-10 04:47:06,828][ INFO][PID:3678424] Checking for cancel request [2026-08-10 04:47:11,830][ INFO][PID:3678424] Checking for cancel request [2026-08-10 04:47:16,831][ INFO][PID:3678424] Checking for cancel request [2026-08-10 04:47:21,833][ INFO][PID:3678424] Checking for cancel request [2026-08-10 04:47:26,835][ INFO][PID:3678424] Checking for cancel request [2026-08-10 04:47:31,837][ INFO][PID:3678424] Checking for cancel request [2026-08-10 04:47:36,838][ INFO][PID:3678424] Checking for cancel request [2026-08-10 04:47:41,840][ INFO][PID:3678424] Checking for cancel request [2026-08-10 04:47:46,841][ INFO][PID:3678424] Checking for cancel request [2026-08-10 04:47:51,842][ INFO][PID:3678424] Checking for cancel request [2026-08-10 04:47:56,844][ INFO][PID:3678424] Checking for cancel request [2026-08-10 04:48:01,845][ INFO][PID:3678424] Checking for cancel request [2026-08-10 04:48:06,847][ INFO][PID:3678424] Checking for cancel request [2026-08-10 04:48:11,848][ INFO][PID:3678424] Checking for cancel request [2026-08-10 04:48:16,850][ INFO][PID:3678424] Checking for cancel request [2026-08-10 04:48:21,851][ INFO][PID:3678424] Checking for cancel request [2026-08-10 04:48:26,853][ INFO][PID:3678424] Checking for cancel request [2026-08-10 04:48:31,854][ INFO][PID:3678424] Checking for cancel request [2026-08-10 04:48:36,855][ INFO][PID:3678424] Checking for cancel request [2026-08-10 04:48:41,856][ INFO][PID:3678424] Checking for cancel request [2026-08-10 04:48:46,858][ INFO][PID:3678424] Checking for cancel request [2026-08-10 04:48:51,862][ INFO][PID:3678424] Checking for cancel request [2026-08-10 04:48:56,866][ INFO][PID:3678424] Checking for cancel request [2026-08-10 04:49:01,880][ INFO][PID:3678424] Checking for cancel request [2026-08-10 04:49:06,881][ INFO][PID:3678424] Checking for cancel request [2026-08-10 04:49:11,882][ INFO][PID:3678424] Checking for cancel request [2026-08-10 04:49:16,884][ INFO][PID:3678424] Checking for cancel request [2026-08-10 04:49:21,885][ INFO][PID:3678424] Checking for cancel request [2026-08-10 04:49:26,886][ INFO][PID:3678424] Checking for cancel request [2026-08-10 04:49:31,888][ INFO][PID:3678424] Checking for cancel request [2026-08-10 04:49:36,894][ INFO][PID:3678424] Checking for cancel request [2026-08-10 04:49:41,895][ INFO][PID:3678424] Checking for cancel request [2026-08-10 04:49:46,896][ INFO][PID:3678424] Checking for cancel request [2026-08-10 04:49:51,898][ INFO][PID:3678424] Checking for cancel request [2026-08-10 04:49:56,899][ INFO][PID:3678424] Checking for cancel request [2026-08-10 04:50:01,900][ INFO][PID:3678424] Checking for cancel request [2026-08-10 04:50:06,902][ INFO][PID:3678424] Checking for cancel request [2026-08-10 04:50:11,903][ INFO][PID:3678424] Checking for cancel request [2026-08-10 04:50:16,905][ INFO][PID:3678424] Checking for cancel request [2026-08-10 04:50:21,906][ INFO][PID:3678424] Checking for cancel request [2026-08-10 04:50:26,908][ INFO][PID:3678424] Checking for cancel request [2026-08-10 04:50:31,909][ INFO][PID:3678424] Checking for cancel request [2026-08-10 04:50:36,911][ INFO][PID:3678424] Checking for cancel request [2026-08-10 04:50:41,912][ INFO][PID:3678424] Checking for cancel request [2026-08-10 04:50:46,914][ INFO][PID:3678424] Checking for cancel request [2026-08-10 04:50:51,916][ INFO][PID:3678424] Checking for cancel request [2026-08-10 04:50:56,917][ INFO][PID:3678424] Checking for cancel request [2026-08-10 04:51:01,919][ INFO][PID:3678424] Checking for cancel request [2026-08-10 04:51:06,920][ INFO][PID:3678424] Checking for cancel request [2026-08-10 04:51:11,922][ INFO][PID:3678424] Checking for cancel request [2026-08-10 04:51:16,923][ INFO][PID:3678424] Checking for cancel request [2026-08-10 04:51:21,925][ INFO][PID:3678424] Checking for cancel request [2026-08-10 04:51:26,926][ INFO][PID:3678424] Checking for cancel request [2026-08-10 04:51:32,027][ INFO][PID:3678424] Checking for cancel request [2026-08-10 04:51:37,028][ INFO][PID:3678424] Checking for cancel request [2026-08-10 04:51:42,030][ INFO][PID:3678424] Checking for cancel request [2026-08-10 04:51:47,031][ INFO][PID:3678424] Checking for cancel request [2026-08-10 04:51:52,034][ INFO][PID:3678424] Checking for cancel request [2026-08-10 04:51:57,035][ INFO][PID:3678424] Checking for cancel request [2026-08-10 04:52:02,036][ INFO][PID:3678424] Checking for cancel request [2026-08-10 04:52:05,795][ INFO][PID:3678424] Downloading results from builder [2026-08-10 04:52:05,795][ INFO][PID:3678424] rsyncing of mockbuilder@44.203.81.13:/var/lib/copr-rpmbuild/results/ to /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5492/srpm-builds/10841504 started [2026-08-10 04:52:05,797][ INFO][PID:3678424] Popen command started: /usr/bin/rsync -rltDvH --chmod=D755,F644 -e 'ssh -F /home/copr/.ssh/config' mockbuilder@44.203.81.13:/var/lib/copr-rpmbuild/results/ /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5492/srpm-builds/10841504/ &> /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5492/srpm-builds/10841504/build-10841504.rsync.log [2026-08-10 04:52:10,007][ INFO][PID:3678424] rsyncing finished. [2026-08-10 04:52:10,008][ INFO][PID:3678424] VM Release request [2026-08-10 04:52:10,031][ INFO][PID:3678424] Searching for 'success' file in resultdir [2026-08-10 04:52:10,032][ INFO][PID:3678424] Getting build details [2026-08-10 04:52:10,033][ INFO][PID:3678424] Retrieving SRPM info from /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5492/srpm-builds/10841504 [2026-08-10 04:52:10,034][ INFO][PID:3678424] SRPM URL: https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5492/srpm-builds/10841504/Sunshine-0.0.5492-1.src.rpm [2026-08-10 04:52:10,034][ INFO][PID:3678424] build details: {'srpm_url': 'https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5492/srpm-builds/10841504/Sunshine-0.0.5492-1.src.rpm', 'pkg_name': 'Sunshine', 'pkg_version': '0.0.5492-1'} [2026-08-10 04:52:10,035][ INFO][PID:3678424] Finished build: id=10841504 failed=False timeout=108000 destdir=/var/lib/copr/public_html/results/lizardbyte/pulls:pr:5492 chroot=srpm-builds [2026-08-10 04:52:10,037][ INFO][PID:3678424] Worker succeeded build, took 594.4826536178589 [2026-08-10 04:52:10,037][ INFO][PID:3678424] 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:5492", "submitter": null, "ended_on": 1786337530.037056, "started_on": 1786336935.5544024, "submitted_on": null, "status": 1, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10841504", "build_id": 10841504, "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\": \"tmpgbiyms9y\", \"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:5492/srpm-builds/10841504/Sunshine-0.0.5492-1.src.rpm", "uses_devel_repo": null, "sandbox": "lizardbyte/pulls--c4d9c33e-e362-4557-a63e-1c3847dc32f0", "results": { "architecture_specific_tags": { "fedora-43": {}, "fedora-44": {}, "fedora-rawhide": {} }, "name": "Sunshine", "epoch": null, "version": "0.0.5492", "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:5492", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5492", "result_dir": "10841504", "built_packages": "", "tags": [ "arch_x86_64" ], "rpmeta_prediction": null, "pkg_version": "0.0.5492-1", "id": 10841504, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2026-08-10 04:52:10,089][ INFO][PID:3678424] Sending fedora-messaging bus message in build.end [2026-08-10 04:52:10,116][ INFO][PID:3678424] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5492/srpm-builds/10841504/builder-live.log by gzip [2026-08-10 04:52:10,118][ INFO][PID:3678424] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5492/srpm-builds/10841504/builder-live.log' as PID 3754032 [2026-08-10 04:52:10,142][ INFO][PID:3678424] Finished after 0 seconds with exit code 0 (gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5492/srpm-builds/10841504/builder-live.log) [2026-08-10 04:52:10,143][ INFO][PID:3678424] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5492/srpm-builds/10841504/backend.log by gzip [2026-08-10 04:52:10,144][ INFO][PID:3678424] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5492/srpm-builds/10841504/backend.log' as PID 3754049