[2026-08-07 23:51:17,871][ INFO][PID:35220] Marking build as starting [2026-08-07 23:51:17,905][ INFO][PID:35220] Checking for cancel request [2026-08-07 23:51:17,907][ INFO][PID:35220] VM allocation process starts [2026-08-07 23:51:17,915][ INFO][PID:35220] Trying to allocate VM: ResallocHost, ticket_id=4351584, requested_tags=['arch_x86_64', 'copr_builder'] [2026-08-07 23:51:20,969][ INFO][PID:35220] Allocated host ResallocHost, ticket_id=4351584, hostname=54.80.93.150, name=aws_x86_64_reserved_prod_17048229_20260807_233746, requested_tags=['arch_x86_64', 'copr_builder'] [2026-08-07 23:51:20,969][ INFO][PID:35220] Allocating ssh connection to builder [2026-08-07 23:51:20,970][ INFO][PID:35220] Checking that builder machine is OK [2026-08-07 23:51:21,289][ INFO][PID:35220] Installed copr-rpmbuild version: 1.8 [2026-08-07 23:51:21,290][ INFO][PID:35220] Running remote command: copr-builder-ready srpm-builds [2026-08-07 23:51:21,484][ INFO][PID:35220] Red Hat subscription not needed for srpm-builds Builder is ready to be used [2026-08-07 23:51:21,485][ INFO][PID:35220] Filling build.info file with builder info [2026-08-07 23:51:21,486][ INFO][PID:35220] Checking for cancel request [2026-08-07 23:51:21,487][ INFO][PID:35220] 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:5485", "submitter": null, "ended_on": null, "started_on": 1786146681.4873092, "submitted_on": null, "status": 3, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10837228", "build_id": 10837228, "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\": \"tmp3rumfd3j\", \"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--eb2dbb00-a35a-47cd-86b3-97c24ea3ad06", "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:5485", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5485", "result_dir": "10837228", "built_packages": "", "tags": [ "arch_x86_64" ], "rpmeta_prediction": null, "id": 10837228, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2026-08-07 23:51:21,523][ INFO][PID:35220] Sending fedora-messaging bus message in build.start [2026-08-07 23:51:21,947][ INFO][PID:35220] Sending fedora-messaging bus message in chroot.start [2026-08-07 23:51:21,973][ INFO][PID:35220] Starting remote build: copr-rpmbuild --verbose --drop-resultdir --srpm --task-url https://copr.fedorainfracloud.org/backend/get-srpm-build-task/10837228 --detached [2026-08-07 23:51:22,474][ INFO][PID:35220] The copr-rpmbuild seems started, per: stdout: stderr: Warning: Permanently added '54.80.93.150' (ED25519) to the list of known hosts. [2026-08-07 23:51:22,475][ INFO][PID:35220] Downloading the builder-live.log file, attempt 1 [2026-08-07 23:51:22,477][ INFO][PID:35220] Popen command started: ssh -F /home/copr/.ssh/config mockbuilder@54.80.93.150 copr-rpmbuild-log [2026-08-07 23:51:27,483][ INFO][PID:35220] Periodic builder liveness probe: alive [2026-08-07 23:51:27,484][ INFO][PID:35220] Checking for cancel request [2026-08-07 23:51:32,486][ INFO][PID:35220] Checking for cancel request [2026-08-07 23:51:37,487][ INFO][PID:35220] Checking for cancel request [2026-08-07 23:51:42,488][ INFO][PID:35220] Checking for cancel request [2026-08-07 23:51:47,490][ INFO][PID:35220] Checking for cancel request [2026-08-07 23:51:52,491][ INFO][PID:35220] Checking for cancel request [2026-08-07 23:51:57,493][ INFO][PID:35220] Checking for cancel request [2026-08-07 23:52:02,496][ INFO][PID:35220] Checking for cancel request [2026-08-07 23:52:07,502][ INFO][PID:35220] Checking for cancel request [2026-08-07 23:52:12,505][ INFO][PID:35220] Checking for cancel request [2026-08-07 23:52:17,506][ INFO][PID:35220] Checking for cancel request [2026-08-07 23:52:22,508][ INFO][PID:35220] Checking for cancel request [2026-08-07 23:52:27,509][ INFO][PID:35220] Checking for cancel request [2026-08-07 23:52:32,510][ INFO][PID:35220] Checking for cancel request [2026-08-07 23:52:37,512][ INFO][PID:35220] Checking for cancel request [2026-08-07 23:52:42,513][ INFO][PID:35220] Checking for cancel request [2026-08-07 23:52:47,515][ INFO][PID:35220] Checking for cancel request [2026-08-07 23:52:52,516][ INFO][PID:35220] Checking for cancel request [2026-08-07 23:52:57,518][ INFO][PID:35220] Checking for cancel request [2026-08-07 23:53:02,527][ INFO][PID:35220] Checking for cancel request [2026-08-07 23:53:07,528][ INFO][PID:35220] Checking for cancel request [2026-08-07 23:53:12,530][ INFO][PID:35220] Checking for cancel request [2026-08-07 23:53:17,531][ INFO][PID:35220] Checking for cancel request [2026-08-07 23:53:22,533][ INFO][PID:35220] Checking for cancel request [2026-08-07 23:53:27,536][ INFO][PID:35220] Checking for cancel request [2026-08-07 23:53:32,537][ INFO][PID:35220] Checking for cancel request [2026-08-07 23:53:37,539][ INFO][PID:35220] Checking for cancel request [2026-08-07 23:53:42,541][ INFO][PID:35220] Checking for cancel request [2026-08-07 23:53:47,542][ INFO][PID:35220] Checking for cancel request [2026-08-07 23:53:52,543][ INFO][PID:35220] Checking for cancel request [2026-08-07 23:53:57,545][ INFO][PID:35220] Checking for cancel request [2026-08-07 23:54:02,546][ INFO][PID:35220] Checking for cancel request [2026-08-07 23:54:07,547][ INFO][PID:35220] Checking for cancel request [2026-08-07 23:54:12,549][ INFO][PID:35220] Checking for cancel request [2026-08-07 23:54:17,550][ INFO][PID:35220] Checking for cancel request [2026-08-07 23:54:22,553][ INFO][PID:35220] Checking for cancel request [2026-08-07 23:54:27,554][ INFO][PID:35220] Checking for cancel request [2026-08-07 23:54:32,555][ INFO][PID:35220] Checking for cancel request [2026-08-07 23:54:37,557][ INFO][PID:35220] Checking for cancel request [2026-08-07 23:54:42,558][ INFO][PID:35220] Checking for cancel request [2026-08-07 23:54:47,559][ INFO][PID:35220] Checking for cancel request [2026-08-07 23:54:52,561][ INFO][PID:35220] Checking for cancel request [2026-08-07 23:54:57,562][ INFO][PID:35220] Checking for cancel request [2026-08-07 23:55:02,563][ INFO][PID:35220] Checking for cancel request [2026-08-07 23:55:07,565][ INFO][PID:35220] Checking for cancel request [2026-08-07 23:55:12,566][ INFO][PID:35220] Checking for cancel request [2026-08-07 23:55:17,567][ INFO][PID:35220] Checking for cancel request [2026-08-07 23:55:22,570][ INFO][PID:35220] Checking for cancel request [2026-08-07 23:55:27,571][ INFO][PID:35220] Checking for cancel request [2026-08-07 23:55:32,572][ INFO][PID:35220] Checking for cancel request [2026-08-07 23:55:37,574][ INFO][PID:35220] Checking for cancel request [2026-08-07 23:55:42,575][ INFO][PID:35220] Checking for cancel request [2026-08-07 23:55:47,576][ INFO][PID:35220] Checking for cancel request [2026-08-07 23:55:52,578][ INFO][PID:35220] Checking for cancel request [2026-08-07 23:55:57,579][ INFO][PID:35220] Checking for cancel request [2026-08-07 23:56:02,582][ INFO][PID:35220] Checking for cancel request [2026-08-07 23:56:07,585][ INFO][PID:35220] Checking for cancel request [2026-08-07 23:56:12,586][ INFO][PID:35220] Checking for cancel request [2026-08-07 23:56:17,587][ INFO][PID:35220] Checking for cancel request [2026-08-07 23:56:22,589][ INFO][PID:35220] Checking for cancel request [2026-08-07 23:56:27,590][ INFO][PID:35220] Checking for cancel request [2026-08-07 23:56:32,591][ INFO][PID:35220] Checking for cancel request [2026-08-07 23:56:37,593][ INFO][PID:35220] Checking for cancel request [2026-08-07 23:56:42,594][ INFO][PID:35220] Checking for cancel request [2026-08-07 23:56:47,596][ INFO][PID:35220] Checking for cancel request [2026-08-07 23:56:52,597][ INFO][PID:35220] Checking for cancel request [2026-08-07 23:56:57,598][ INFO][PID:35220] Checking for cancel request [2026-08-07 23:57:02,600][ INFO][PID:35220] Checking for cancel request [2026-08-07 23:57:07,601][ INFO][PID:35220] Checking for cancel request [2026-08-07 23:57:12,602][ INFO][PID:35220] Checking for cancel request [2026-08-07 23:57:17,603][ INFO][PID:35220] Checking for cancel request [2026-08-07 23:57:22,611][ INFO][PID:35220] Checking for cancel request [2026-08-07 23:57:27,612][ INFO][PID:35220] Checking for cancel request [2026-08-07 23:57:32,613][ INFO][PID:35220] Checking for cancel request [2026-08-07 23:57:37,614][ INFO][PID:35220] Checking for cancel request [2026-08-07 23:57:42,616][ INFO][PID:35220] Checking for cancel request [2026-08-07 23:57:47,617][ INFO][PID:35220] Checking for cancel request [2026-08-07 23:57:52,618][ INFO][PID:35220] Checking for cancel request [2026-08-07 23:57:57,620][ INFO][PID:35220] Checking for cancel request [2026-08-07 23:58:02,621][ INFO][PID:35220] Checking for cancel request [2026-08-07 23:58:07,622][ INFO][PID:35220] Checking for cancel request [2026-08-07 23:58:12,624][ INFO][PID:35220] Checking for cancel request [2026-08-07 23:58:17,625][ INFO][PID:35220] Checking for cancel request [2026-08-07 23:58:22,627][ INFO][PID:35220] Checking for cancel request [2026-08-07 23:58:27,628][ INFO][PID:35220] Checking for cancel request [2026-08-07 23:58:32,629][ INFO][PID:35220] Checking for cancel request [2026-08-07 23:58:37,630][ INFO][PID:35220] Checking for cancel request [2026-08-07 23:58:42,631][ INFO][PID:35220] Checking for cancel request [2026-08-07 23:58:47,633][ INFO][PID:35220] Checking for cancel request [2026-08-07 23:58:52,634][ INFO][PID:35220] Checking for cancel request [2026-08-07 23:58:57,635][ INFO][PID:35220] Checking for cancel request [2026-08-07 23:59:02,637][ INFO][PID:35220] Checking for cancel request [2026-08-07 23:59:07,638][ INFO][PID:35220] Checking for cancel request [2026-08-07 23:59:12,639][ INFO][PID:35220] Checking for cancel request [2026-08-07 23:59:17,640][ INFO][PID:35220] Checking for cancel request [2026-08-07 23:59:22,642][ INFO][PID:35220] Checking for cancel request [2026-08-07 23:59:27,643][ INFO][PID:35220] Checking for cancel request [2026-08-07 23:59:32,644][ INFO][PID:35220] Checking for cancel request [2026-08-07 23:59:37,646][ INFO][PID:35220] Checking for cancel request [2026-08-07 23:59:42,647][ INFO][PID:35220] Checking for cancel request [2026-08-07 23:59:47,649][ INFO][PID:35220] Checking for cancel request [2026-08-07 23:59:53,075][ INFO][PID:35220] Checking for cancel request [2026-08-07 23:59:58,077][ INFO][PID:35220] Checking for cancel request [2026-08-08 00:00:03,078][ INFO][PID:35220] Checking for cancel request [2026-08-08 00:00:08,080][ INFO][PID:35220] Checking for cancel request [2026-08-08 00:00:13,081][ INFO][PID:35220] Checking for cancel request [2026-08-08 00:00:18,083][ INFO][PID:35220] Checking for cancel request [2026-08-08 00:00:23,084][ INFO][PID:35220] Checking for cancel request [2026-08-08 00:00:28,085][ INFO][PID:35220] Checking for cancel request [2026-08-08 00:00:33,091][ INFO][PID:35220] Checking for cancel request [2026-08-08 00:00:38,093][ INFO][PID:35220] Checking for cancel request [2026-08-08 00:00:43,094][ INFO][PID:35220] Checking for cancel request [2026-08-08 00:00:48,096][ INFO][PID:35220] Checking for cancel request [2026-08-08 00:00:53,097][ INFO][PID:35220] Checking for cancel request [2026-08-08 00:00:58,098][ INFO][PID:35220] Checking for cancel request [2026-08-08 00:01:03,100][ INFO][PID:35220] Checking for cancel request [2026-08-08 00:01:08,101][ INFO][PID:35220] Checking for cancel request [2026-08-08 00:01:13,102][ INFO][PID:35220] Checking for cancel request [2026-08-08 00:01:18,104][ INFO][PID:35220] Checking for cancel request [2026-08-08 00:01:23,105][ INFO][PID:35220] Checking for cancel request [2026-08-08 00:01:28,113][ INFO][PID:35220] Periodic builder liveness probe: alive [2026-08-08 00:01:28,114][ INFO][PID:35220] Checking for cancel request [2026-08-08 00:01:33,115][ INFO][PID:35220] Checking for cancel request [2026-08-08 00:01:34,443][ INFO][PID:35220] Downloading results from builder [2026-08-08 00:01:34,444][ INFO][PID:35220] rsyncing of mockbuilder@54.80.93.150:/var/lib/copr-rpmbuild/results/ to /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5485/srpm-builds/10837228 started [2026-08-08 00:01:34,445][ INFO][PID:35220] Popen command started: /usr/bin/rsync -rltDvH --chmod=D755,F644 -e 'ssh -F /home/copr/.ssh/config' mockbuilder@54.80.93.150:/var/lib/copr-rpmbuild/results/ /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5485/srpm-builds/10837228/ &> /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5485/srpm-builds/10837228/build-10837228.rsync.log [2026-08-08 00:01:39,402][ INFO][PID:35220] rsyncing finished. [2026-08-08 00:01:39,403][ INFO][PID:35220] VM Release request [2026-08-08 00:01:39,414][ INFO][PID:35220] Searching for 'success' file in resultdir [2026-08-08 00:01:39,415][ INFO][PID:35220] Getting build details [2026-08-08 00:01:39,416][ INFO][PID:35220] Retrieving SRPM info from /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5485/srpm-builds/10837228 [2026-08-08 00:01:39,417][ INFO][PID:35220] SRPM URL: https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5485/srpm-builds/10837228/Sunshine-0.0.5485-1.src.rpm [2026-08-08 00:01:39,418][ INFO][PID:35220] build details: {'srpm_url': 'https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5485/srpm-builds/10837228/Sunshine-0.0.5485-1.src.rpm', 'pkg_name': 'Sunshine', 'pkg_version': '0.0.5485-1'} [2026-08-08 00:01:39,419][ INFO][PID:35220] Finished build: id=10837228 failed=False timeout=108000 destdir=/var/lib/copr/public_html/results/lizardbyte/pulls:pr:5485 chroot=srpm-builds [2026-08-08 00:01:39,421][ INFO][PID:35220] Worker succeeded build, took 617.933712720871 [2026-08-08 00:01:39,421][ INFO][PID:35220] 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:5485", "submitter": null, "ended_on": 1786147299.421022, "started_on": 1786146681.4873092, "submitted_on": null, "status": 1, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10837228", "build_id": 10837228, "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\": \"tmp3rumfd3j\", \"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:5485/srpm-builds/10837228/Sunshine-0.0.5485-1.src.rpm", "uses_devel_repo": null, "sandbox": "lizardbyte/pulls--eb2dbb00-a35a-47cd-86b3-97c24ea3ad06", "results": { "architecture_specific_tags": { "fedora-43": {}, "fedora-44": {}, "fedora-rawhide": {} }, "name": "Sunshine", "epoch": null, "version": "0.0.5485", "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:5485", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5485", "result_dir": "10837228", "built_packages": "", "tags": [ "arch_x86_64" ], "rpmeta_prediction": null, "pkg_version": "0.0.5485-1", "id": 10837228, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2026-08-08 00:01:39,474][ INFO][PID:35220] Sending fedora-messaging bus message in build.end [2026-08-08 00:01:39,507][ INFO][PID:35220] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5485/srpm-builds/10837228/builder-live.log by gzip [2026-08-08 00:01:39,509][ INFO][PID:35220] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5485/srpm-builds/10837228/builder-live.log' as PID 104024 [2026-08-08 00:01:39,685][ INFO][PID:35220] Finished after 0 seconds with exit code 0 (gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5485/srpm-builds/10837228/builder-live.log) [2026-08-08 00:01:39,686][ INFO][PID:35220] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5485/srpm-builds/10837228/backend.log by gzip [2026-08-08 00:01:39,687][ INFO][PID:35220] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5485/srpm-builds/10837228/backend.log' as PID 104124