[2026-06-06 14:50:14,173][ INFO][PID:1378764] Marking build as starting [2026-06-06 14:50:14,217][ INFO][PID:1378764] Checking for cancel request [2026-06-06 14:50:14,219][ INFO][PID:1378764] VM allocation process starts [2026-06-06 14:50:14,232][ INFO][PID:1378764] Trying to allocate VM: ResallocHost, ticket_id=3315759, requested_tags=['arch_x86_64', 'copr_builder'] [2026-06-06 14:50:19,234][ INFO][PID:1378764] Checking for cancel request [2026-06-06 14:50:24,236][ INFO][PID:1378764] Checking for cancel request [2026-06-06 14:50:26,262][ INFO][PID:1378764] Allocated host ResallocHost, ticket_id=3315759, hostname=54.225.47.13, name=aws_x86_64_reserved_prod_10945107_20260606_144614, requested_tags=['arch_x86_64', 'copr_builder'] [2026-06-06 14:50:26,263][ INFO][PID:1378764] Allocating ssh connection to builder [2026-06-06 14:50:26,263][ INFO][PID:1378764] Checking that builder machine is OK [2026-06-06 14:50:26,605][ INFO][PID:1378764] Installed copr-rpmbuild version: 1.8 [2026-06-06 14:50:26,605][ INFO][PID:1378764] Running remote command: copr-builder-ready srpm-builds [2026-06-06 14:50:26,833][ INFO][PID:1378764] Red Hat subscription not needed for srpm-builds Builder is ready to be used [2026-06-06 14:50:26,834][ INFO][PID:1378764] Filling build.info file with builder info [2026-06-06 14:50:26,835][ INFO][PID:1378764] Checking for cancel request [2026-06-06 14:50:26,837][ INFO][PID:1378764] 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:5254", "submitter": null, "ended_on": null, "started_on": 1780757426.8375168, "submitted_on": null, "status": 3, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10573718", "build_id": 10573718, "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\": \"tmp6_ayyplo\", \"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--a7f5c051-d41f-4e6b-8d58-351a270f0d82", "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:5254", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5254", "result_dir": "10573718", "built_packages": "", "tags": [ "arch_x86_64" ], "rpmeta_prediction": null, "id": 10573718, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2026-06-06 14:50:26,879][ INFO][PID:1378764] Sending fedora-messaging bus message in build.start [2026-06-06 14:50:27,406][ INFO][PID:1378764] Sending fedora-messaging bus message in chroot.start [2026-06-06 14:50:27,436][ INFO][PID:1378764] Starting remote build: copr-rpmbuild --verbose --drop-resultdir --srpm --task-url https://copr.fedorainfracloud.org/backend/get-srpm-build-task/10573718 --detached [2026-06-06 14:50:28,024][ INFO][PID:1378764] The copr-rpmbuild seems started, per: stdout: stderr: Warning: Permanently added '54.225.47.13' (ED25519) to the list of known hosts. [2026-06-06 14:50:28,025][ INFO][PID:1378764] Downloading the builder-live.log file, attempt 1 [2026-06-06 14:50:28,027][ INFO][PID:1378764] Popen command started: ssh -F /home/copr/.ssh/config mockbuilder@54.225.47.13 copr-rpmbuild-log [2026-06-06 14:50:33,052][ INFO][PID:1378764] Periodic builder liveness probe: alive [2026-06-06 14:50:33,056][ INFO][PID:1378764] Checking for cancel request [2026-06-06 14:50:38,060][ INFO][PID:1378764] Checking for cancel request [2026-06-06 14:50:43,062][ INFO][PID:1378764] Checking for cancel request [2026-06-06 14:50:48,074][ INFO][PID:1378764] Checking for cancel request [2026-06-06 14:50:53,076][ INFO][PID:1378764] Checking for cancel request [2026-06-06 14:50:58,078][ INFO][PID:1378764] Checking for cancel request [2026-06-06 14:51:03,079][ INFO][PID:1378764] Checking for cancel request [2026-06-06 14:51:08,080][ INFO][PID:1378764] Checking for cancel request [2026-06-06 14:51:13,082][ INFO][PID:1378764] Checking for cancel request [2026-06-06 14:51:18,087][ INFO][PID:1378764] Checking for cancel request [2026-06-06 14:51:23,098][ INFO][PID:1378764] Checking for cancel request [2026-06-06 14:51:28,104][ INFO][PID:1378764] Checking for cancel request [2026-06-06 14:51:33,105][ INFO][PID:1378764] Checking for cancel request [2026-06-06 14:51:38,108][ INFO][PID:1378764] Checking for cancel request [2026-06-06 14:51:43,110][ INFO][PID:1378764] Checking for cancel request [2026-06-06 14:51:48,113][ INFO][PID:1378764] Checking for cancel request [2026-06-06 14:51:53,114][ INFO][PID:1378764] Checking for cancel request [2026-06-06 14:51:58,118][ INFO][PID:1378764] Checking for cancel request [2026-06-06 14:52:03,121][ INFO][PID:1378764] Checking for cancel request [2026-06-06 14:52:08,123][ INFO][PID:1378764] Checking for cancel request [2026-06-06 14:52:13,125][ INFO][PID:1378764] Checking for cancel request [2026-06-06 14:52:18,126][ INFO][PID:1378764] Checking for cancel request [2026-06-06 14:52:23,128][ INFO][PID:1378764] Checking for cancel request [2026-06-06 14:52:28,144][ INFO][PID:1378764] Checking for cancel request [2026-06-06 14:52:33,145][ INFO][PID:1378764] Checking for cancel request [2026-06-06 14:52:38,147][ INFO][PID:1378764] Checking for cancel request [2026-06-06 14:52:43,165][ INFO][PID:1378764] Checking for cancel request [2026-06-06 14:52:48,166][ INFO][PID:1378764] Checking for cancel request [2026-06-06 14:52:53,168][ INFO][PID:1378764] Checking for cancel request [2026-06-06 14:52:58,170][ INFO][PID:1378764] Checking for cancel request [2026-06-06 14:53:03,172][ INFO][PID:1378764] Checking for cancel request [2026-06-06 14:53:08,174][ INFO][PID:1378764] Checking for cancel request [2026-06-06 14:53:13,175][ INFO][PID:1378764] Checking for cancel request [2026-06-06 14:53:18,176][ INFO][PID:1378764] Checking for cancel request [2026-06-06 14:53:23,178][ INFO][PID:1378764] Checking for cancel request [2026-06-06 14:53:28,180][ INFO][PID:1378764] Checking for cancel request [2026-06-06 14:53:33,194][ INFO][PID:1378764] Checking for cancel request [2026-06-06 14:53:38,196][ INFO][PID:1378764] Checking for cancel request [2026-06-06 14:53:43,197][ INFO][PID:1378764] Checking for cancel request [2026-06-06 14:53:48,199][ INFO][PID:1378764] Checking for cancel request [2026-06-06 14:53:53,200][ INFO][PID:1378764] Checking for cancel request [2026-06-06 14:53:58,202][ INFO][PID:1378764] Checking for cancel request [2026-06-06 14:54:03,204][ INFO][PID:1378764] Checking for cancel request [2026-06-06 14:54:08,209][ INFO][PID:1378764] Checking for cancel request [2026-06-06 14:54:13,211][ INFO][PID:1378764] Checking for cancel request [2026-06-06 14:54:18,213][ INFO][PID:1378764] Checking for cancel request [2026-06-06 14:54:23,217][ INFO][PID:1378764] Checking for cancel request [2026-06-06 14:54:28,219][ INFO][PID:1378764] Checking for cancel request [2026-06-06 14:54:33,220][ INFO][PID:1378764] Checking for cancel request [2026-06-06 14:54:38,221][ INFO][PID:1378764] Checking for cancel request [2026-06-06 14:54:43,262][ INFO][PID:1378764] Checking for cancel request [2026-06-06 14:54:48,263][ INFO][PID:1378764] Checking for cancel request [2026-06-06 14:54:53,264][ INFO][PID:1378764] Checking for cancel request [2026-06-06 14:54:58,265][ INFO][PID:1378764] Checking for cancel request [2026-06-06 14:55:03,270][ INFO][PID:1378764] Checking for cancel request [2026-06-06 14:55:08,271][ INFO][PID:1378764] Checking for cancel request [2026-06-06 14:55:13,274][ INFO][PID:1378764] Checking for cancel request [2026-06-06 14:55:18,315][ INFO][PID:1378764] Checking for cancel request [2026-06-06 14:55:23,317][ INFO][PID:1378764] Checking for cancel request [2026-06-06 14:55:28,327][ INFO][PID:1378764] Checking for cancel request [2026-06-06 14:55:33,341][ INFO][PID:1378764] Checking for cancel request [2026-06-06 14:55:38,342][ INFO][PID:1378764] Checking for cancel request [2026-06-06 14:55:43,344][ INFO][PID:1378764] Checking for cancel request [2026-06-06 14:55:48,347][ INFO][PID:1378764] Checking for cancel request [2026-06-06 14:55:53,352][ INFO][PID:1378764] Checking for cancel request [2026-06-06 14:55:58,354][ INFO][PID:1378764] Checking for cancel request [2026-06-06 14:56:03,420][ INFO][PID:1378764] Checking for cancel request [2026-06-06 14:56:08,421][ INFO][PID:1378764] Checking for cancel request [2026-06-06 14:56:13,423][ INFO][PID:1378764] Checking for cancel request [2026-06-06 14:56:18,425][ INFO][PID:1378764] Checking for cancel request [2026-06-06 14:56:23,430][ INFO][PID:1378764] Checking for cancel request [2026-06-06 14:56:28,436][ INFO][PID:1378764] Checking for cancel request [2026-06-06 14:56:33,438][ INFO][PID:1378764] Checking for cancel request [2026-06-06 14:56:38,442][ INFO][PID:1378764] Checking for cancel request [2026-06-06 14:56:43,445][ INFO][PID:1378764] Checking for cancel request [2026-06-06 14:56:48,451][ INFO][PID:1378764] Checking for cancel request [2026-06-06 14:56:53,453][ INFO][PID:1378764] Checking for cancel request [2026-06-06 14:56:58,455][ INFO][PID:1378764] Checking for cancel request [2026-06-06 14:57:03,457][ INFO][PID:1378764] Checking for cancel request [2026-06-06 14:57:08,461][ INFO][PID:1378764] Checking for cancel request [2026-06-06 14:57:13,463][ INFO][PID:1378764] Checking for cancel request [2026-06-06 14:57:18,464][ INFO][PID:1378764] Checking for cancel request [2026-06-06 14:57:23,466][ INFO][PID:1378764] Checking for cancel request [2026-06-06 14:57:28,467][ INFO][PID:1378764] Checking for cancel request [2026-06-06 14:57:33,470][ INFO][PID:1378764] Checking for cancel request [2026-06-06 14:57:38,549][ INFO][PID:1378764] Checking for cancel request [2026-06-06 14:57:43,553][ INFO][PID:1378764] Checking for cancel request [2026-06-06 14:57:48,925][ INFO][PID:1378764] Checking for cancel request [2026-06-06 14:57:53,928][ INFO][PID:1378764] Checking for cancel request [2026-06-06 14:57:58,930][ INFO][PID:1378764] Checking for cancel request [2026-06-06 14:58:03,936][ INFO][PID:1378764] Checking for cancel request [2026-06-06 14:58:08,939][ INFO][PID:1378764] Checking for cancel request [2026-06-06 14:58:13,945][ INFO][PID:1378764] Checking for cancel request [2026-06-06 14:58:18,956][ INFO][PID:1378764] Checking for cancel request [2026-06-06 14:58:23,958][ INFO][PID:1378764] Checking for cancel request [2026-06-06 14:58:28,963][ INFO][PID:1378764] Checking for cancel request [2026-06-06 14:58:33,966][ INFO][PID:1378764] Checking for cancel request [2026-06-06 14:58:38,971][ INFO][PID:1378764] Checking for cancel request [2026-06-06 14:58:43,977][ INFO][PID:1378764] Checking for cancel request [2026-06-06 14:58:48,980][ INFO][PID:1378764] Checking for cancel request [2026-06-06 14:58:54,004][ INFO][PID:1378764] Checking for cancel request [2026-06-06 14:58:59,006][ INFO][PID:1378764] Checking for cancel request [2026-06-06 14:59:04,009][ INFO][PID:1378764] Checking for cancel request [2026-06-06 14:59:09,054][ INFO][PID:1378764] Checking for cancel request [2026-06-06 14:59:14,056][ INFO][PID:1378764] Checking for cancel request [2026-06-06 14:59:19,059][ INFO][PID:1378764] Checking for cancel request [2026-06-06 14:59:24,060][ INFO][PID:1378764] Checking for cancel request [2026-06-06 14:59:29,063][ INFO][PID:1378764] Checking for cancel request [2026-06-06 14:59:34,064][ INFO][PID:1378764] Checking for cancel request [2026-06-06 14:59:39,066][ INFO][PID:1378764] Checking for cancel request [2026-06-06 14:59:39,782][ INFO][PID:1378764] Downloading results from builder [2026-06-06 14:59:39,819][ INFO][PID:1378764] rsyncing of mockbuilder@54.225.47.13:/var/lib/copr-rpmbuild/results/ to /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5254/srpm-builds/10573718 started [2026-06-06 14:59:39,899][ INFO][PID:1378764] Popen command started: /usr/bin/rsync -rltDvH --chmod=D755,F644 -e 'ssh -F /home/copr/.ssh/config' mockbuilder@54.225.47.13:/var/lib/copr-rpmbuild/results/ /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5254/srpm-builds/10573718/ &> /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5254/srpm-builds/10573718/build-10573718.rsync.log [2026-06-06 15:02:05,474][ INFO][PID:1378764] rsyncing finished. [2026-06-06 15:02:05,510][ INFO][PID:1378764] VM Release request [2026-06-06 15:02:06,173][ INFO][PID:1378764] Searching for 'success' file in resultdir [2026-06-06 15:02:06,243][ INFO][PID:1378764] Getting build details [2026-06-06 15:02:06,246][ INFO][PID:1378764] Retrieving SRPM info from /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5254/srpm-builds/10573718 [2026-06-06 15:02:06,338][ INFO][PID:1378764] SRPM URL: https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5254/srpm-builds/10573718/Sunshine-0.0.5254-1.src.rpm [2026-06-06 15:02:06,343][ INFO][PID:1378764] build details: {'srpm_url': 'https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5254/srpm-builds/10573718/Sunshine-0.0.5254-1.src.rpm', 'pkg_name': 'Sunshine', 'pkg_version': '0.0.5254-1'} [2026-06-06 15:02:06,358][ INFO][PID:1378764] Finished build: id=10573718 failed=False timeout=108000 destdir=/var/lib/copr/public_html/results/lizardbyte/pulls:pr:5254 chroot=srpm-builds [2026-06-06 15:02:06,469][ INFO][PID:1378764] Worker succeeded build, took 699.630786895752 [2026-06-06 15:02:06,482][ INFO][PID:1378764] 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:5254", "submitter": null, "ended_on": 1780758126.4683037, "started_on": 1780757426.8375168, "submitted_on": null, "status": 1, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10573718", "build_id": 10573718, "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\": \"tmp6_ayyplo\", \"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:5254/srpm-builds/10573718/Sunshine-0.0.5254-1.src.rpm", "uses_devel_repo": null, "sandbox": "lizardbyte/pulls--a7f5c051-d41f-4e6b-8d58-351a270f0d82", "results": { "architecture_specific_tags": { "fedora-42": {}, "fedora-43": {}, "fedora-44": {}, "fedora-rawhide": {}, "opensuse-leap-15.6": {} }, "name": "Sunshine", "epoch": null, "version": "0.0.5254", "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:5254", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5254", "result_dir": "10573718", "built_packages": "", "tags": [ "arch_x86_64" ], "rpmeta_prediction": null, "pkg_version": "0.0.5254-1", "id": 10573718, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2026-06-06 15:02:07,540][ INFO][PID:1378764] Sending fedora-messaging bus message in build.end [2026-06-06 15:02:08,125][ INFO][PID:1378764] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5254/srpm-builds/10573718/builder-live.log by gzip [2026-06-06 15:02:08,160][ INFO][PID:1378764] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5254/srpm-builds/10573718/builder-live.log' as PID 1493916 [2026-06-06 15:02:08,217][ INFO][PID:1378764] Finished after 0 seconds with exit code 0 (gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5254/srpm-builds/10573718/builder-live.log) [2026-06-06 15:02:08,224][ INFO][PID:1378764] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5254/srpm-builds/10573718/backend.log by gzip [2026-06-06 15:02:08,227][ INFO][PID:1378764] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5254/srpm-builds/10573718/backend.log' as PID 1493958