[2026-07-08 07:24:51,457][ INFO][PID:4151121] Marking build as starting [2026-07-08 07:24:51,500][ INFO][PID:4151121] Checking for cancel request [2026-07-08 07:24:51,502][ INFO][PID:4151121] VM allocation process starts [2026-07-08 07:24:51,514][ INFO][PID:4151121] Trying to allocate VM: ResallocHost, ticket_id=3805538, requested_tags=['arch_x86_64', 'copr_builder'] [2026-07-08 07:24:54,529][ INFO][PID:4151121] Allocated host ResallocHost, ticket_id=3805538, hostname=3.83.216.30, name=aws_x86_64_reserved_prod_12959357_20260708_072153, requested_tags=['arch_x86_64', 'copr_builder'] [2026-07-08 07:24:54,530][ INFO][PID:4151121] Allocating ssh connection to builder [2026-07-08 07:24:54,530][ INFO][PID:4151121] Checking that builder machine is OK [2026-07-08 07:24:54,828][ INFO][PID:4151121] Installed copr-rpmbuild version: 1.8 [2026-07-08 07:24:54,829][ INFO][PID:4151121] Running remote command: copr-builder-ready srpm-builds [2026-07-08 07:24:55,007][ INFO][PID:4151121] Red Hat subscription not needed for srpm-builds Builder is ready to be used [2026-07-08 07:24:55,008][ INFO][PID:4151121] Filling build.info file with builder info [2026-07-08 07:24:55,009][ INFO][PID:4151121] Checking for cancel request [2026-07-08 07:24:55,010][ INFO][PID:4151121] 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:5362", "submitter": null, "ended_on": null, "started_on": 1783495495.010019, "submitted_on": null, "status": 3, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10695943", "build_id": 10695943, "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\": \"tmp0etizoka\", \"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--e785ee93-1380-48d2-8845-09043102b07a", "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:5362", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5362", "result_dir": "10695943", "built_packages": "", "tags": [ "arch_x86_64" ], "rpmeta_prediction": null, "id": 10695943, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2026-07-08 07:24:55,050][ INFO][PID:4151121] Sending fedora-messaging bus message in build.start [2026-07-08 07:24:55,498][ INFO][PID:4151121] Sending fedora-messaging bus message in chroot.start [2026-07-08 07:24:55,526][ INFO][PID:4151121] Starting remote build: copr-rpmbuild --verbose --drop-resultdir --srpm --task-url https://copr.fedorainfracloud.org/backend/get-srpm-build-task/10695943 --detached [2026-07-08 07:24:55,967][ INFO][PID:4151121] The copr-rpmbuild seems started, per: stdout: stderr: Warning: Permanently added '3.83.216.30' (ED25519) to the list of known hosts. [2026-07-08 07:24:55,968][ INFO][PID:4151121] Downloading the builder-live.log file, attempt 1 [2026-07-08 07:24:55,970][ INFO][PID:4151121] Popen command started: ssh -F /home/copr/.ssh/config mockbuilder@3.83.216.30 copr-rpmbuild-log [2026-07-08 07:25:00,976][ INFO][PID:4151121] Periodic builder liveness probe: alive [2026-07-08 07:25:01,384][ INFO][PID:4151121] Checking for cancel request [2026-07-08 07:25:06,386][ INFO][PID:4151121] Checking for cancel request [2026-07-08 07:25:11,387][ INFO][PID:4151121] Checking for cancel request [2026-07-08 07:25:16,388][ INFO][PID:4151121] Checking for cancel request [2026-07-08 07:25:21,390][ INFO][PID:4151121] Checking for cancel request [2026-07-08 07:25:26,391][ INFO][PID:4151121] Checking for cancel request [2026-07-08 07:25:31,393][ INFO][PID:4151121] Checking for cancel request [2026-07-08 07:25:36,394][ INFO][PID:4151121] Checking for cancel request [2026-07-08 07:25:41,396][ INFO][PID:4151121] Checking for cancel request [2026-07-08 07:25:46,397][ INFO][PID:4151121] Checking for cancel request [2026-07-08 07:25:51,561][ INFO][PID:4151121] Checking for cancel request [2026-07-08 07:25:56,563][ INFO][PID:4151121] Checking for cancel request [2026-07-08 07:26:01,564][ INFO][PID:4151121] Checking for cancel request [2026-07-08 07:26:06,565][ INFO][PID:4151121] Checking for cancel request [2026-07-08 07:26:11,567][ INFO][PID:4151121] Checking for cancel request [2026-07-08 07:26:16,568][ INFO][PID:4151121] Checking for cancel request [2026-07-08 07:26:21,569][ INFO][PID:4151121] Checking for cancel request [2026-07-08 07:26:26,571][ INFO][PID:4151121] Checking for cancel request [2026-07-08 07:26:31,572][ INFO][PID:4151121] Checking for cancel request [2026-07-08 07:26:36,574][ INFO][PID:4151121] Checking for cancel request [2026-07-08 07:26:41,575][ INFO][PID:4151121] Checking for cancel request [2026-07-08 07:26:46,576][ INFO][PID:4151121] Checking for cancel request [2026-07-08 07:26:51,577][ INFO][PID:4151121] Checking for cancel request [2026-07-08 07:26:56,579][ INFO][PID:4151121] Checking for cancel request [2026-07-08 07:27:01,580][ INFO][PID:4151121] Checking for cancel request [2026-07-08 07:27:06,582][ INFO][PID:4151121] Checking for cancel request [2026-07-08 07:27:11,583][ INFO][PID:4151121] Checking for cancel request [2026-07-08 07:27:16,590][ INFO][PID:4151121] Checking for cancel request [2026-07-08 07:27:21,593][ INFO][PID:4151121] Checking for cancel request [2026-07-08 07:27:26,596][ INFO][PID:4151121] Checking for cancel request [2026-07-08 07:27:31,598][ INFO][PID:4151121] Checking for cancel request [2026-07-08 07:27:36,599][ INFO][PID:4151121] Checking for cancel request [2026-07-08 07:27:41,601][ INFO][PID:4151121] Checking for cancel request [2026-07-08 07:27:46,602][ INFO][PID:4151121] Checking for cancel request [2026-07-08 07:27:51,603][ INFO][PID:4151121] Checking for cancel request [2026-07-08 07:27:56,605][ INFO][PID:4151121] Checking for cancel request [2026-07-08 07:28:01,606][ INFO][PID:4151121] Checking for cancel request [2026-07-08 07:28:06,607][ INFO][PID:4151121] Checking for cancel request [2026-07-08 07:28:11,608][ INFO][PID:4151121] Checking for cancel request [2026-07-08 07:28:16,610][ INFO][PID:4151121] Checking for cancel request [2026-07-08 07:28:21,611][ INFO][PID:4151121] Checking for cancel request [2026-07-08 07:28:26,613][ INFO][PID:4151121] Checking for cancel request [2026-07-08 07:28:31,615][ INFO][PID:4151121] Checking for cancel request [2026-07-08 07:28:36,624][ INFO][PID:4151121] Checking for cancel request [2026-07-08 07:28:41,633][ INFO][PID:4151121] Checking for cancel request [2026-07-08 07:28:47,155][ INFO][PID:4151121] Checking for cancel request [2026-07-08 07:28:52,159][ INFO][PID:4151121] Checking for cancel request [2026-07-08 07:28:57,164][ INFO][PID:4151121] Checking for cancel request [2026-07-08 07:29:02,696][ INFO][PID:4151121] Checking for cancel request [2026-07-08 07:29:07,757][ INFO][PID:4151121] Checking for cancel request [2026-07-08 07:29:12,954][ INFO][PID:4151121] Checking for cancel request [2026-07-08 07:29:18,541][ INFO][PID:4151121] Checking for cancel request [2026-07-08 07:29:23,674][ INFO][PID:4151121] Checking for cancel request [2026-07-08 07:29:28,676][ INFO][PID:4151121] Checking for cancel request [2026-07-08 07:29:33,679][ INFO][PID:4151121] Checking for cancel request [2026-07-08 07:29:38,681][ INFO][PID:4151121] Checking for cancel request [2026-07-08 07:29:43,683][ INFO][PID:4151121] Checking for cancel request [2026-07-08 07:29:48,870][ INFO][PID:4151121] Checking for cancel request [2026-07-08 07:29:53,946][ INFO][PID:4151121] Checking for cancel request [2026-07-08 07:29:58,947][ INFO][PID:4151121] Checking for cancel request [2026-07-08 07:30:03,948][ INFO][PID:4151121] Checking for cancel request [2026-07-08 07:30:08,950][ INFO][PID:4151121] Checking for cancel request [2026-07-08 07:30:13,951][ INFO][PID:4151121] Checking for cancel request [2026-07-08 07:30:18,954][ INFO][PID:4151121] Checking for cancel request [2026-07-08 07:30:23,957][ INFO][PID:4151121] Checking for cancel request [2026-07-08 07:30:28,958][ INFO][PID:4151121] Checking for cancel request [2026-07-08 07:30:33,960][ INFO][PID:4151121] Checking for cancel request [2026-07-08 07:30:38,962][ INFO][PID:4151121] Checking for cancel request [2026-07-08 07:30:43,964][ INFO][PID:4151121] Checking for cancel request [2026-07-08 07:30:48,967][ INFO][PID:4151121] Checking for cancel request [2026-07-08 07:30:53,968][ INFO][PID:4151121] Checking for cancel request [2026-07-08 07:30:58,970][ INFO][PID:4151121] Checking for cancel request [2026-07-08 07:31:03,996][ INFO][PID:4151121] Checking for cancel request [2026-07-08 07:31:08,999][ INFO][PID:4151121] Checking for cancel request [2026-07-08 07:31:14,000][ INFO][PID:4151121] Checking for cancel request [2026-07-08 07:31:19,002][ INFO][PID:4151121] Checking for cancel request [2026-07-08 07:31:24,003][ INFO][PID:4151121] Checking for cancel request [2026-07-08 07:31:29,088][ INFO][PID:4151121] Checking for cancel request [2026-07-08 07:31:34,092][ INFO][PID:4151121] Checking for cancel request [2026-07-08 07:31:39,094][ INFO][PID:4151121] Checking for cancel request [2026-07-08 07:31:44,299][ INFO][PID:4151121] Checking for cancel request [2026-07-08 07:31:49,302][ INFO][PID:4151121] Checking for cancel request [2026-07-08 07:31:54,304][ INFO][PID:4151121] Checking for cancel request [2026-07-08 07:31:59,444][ INFO][PID:4151121] Checking for cancel request [2026-07-08 07:32:04,563][ INFO][PID:4151121] Checking for cancel request [2026-07-08 07:32:09,595][ INFO][PID:4151121] Checking for cancel request [2026-07-08 07:32:14,597][ INFO][PID:4151121] Checking for cancel request [2026-07-08 07:32:19,599][ INFO][PID:4151121] Checking for cancel request [2026-07-08 07:32:24,650][ INFO][PID:4151121] Checking for cancel request [2026-07-08 07:32:29,653][ INFO][PID:4151121] Checking for cancel request [2026-07-08 07:32:34,655][ INFO][PID:4151121] Checking for cancel request [2026-07-08 07:32:39,656][ INFO][PID:4151121] Checking for cancel request [2026-07-08 07:32:44,658][ INFO][PID:4151121] Checking for cancel request [2026-07-08 07:32:49,660][ INFO][PID:4151121] Checking for cancel request [2026-07-08 07:32:54,662][ INFO][PID:4151121] Checking for cancel request [2026-07-08 07:32:59,664][ INFO][PID:4151121] Checking for cancel request [2026-07-08 07:33:04,665][ INFO][PID:4151121] Checking for cancel request [2026-07-08 07:33:09,668][ INFO][PID:4151121] Checking for cancel request [2026-07-08 07:33:14,729][ INFO][PID:4151121] Checking for cancel request [2026-07-08 07:33:19,730][ INFO][PID:4151121] Checking for cancel request [2026-07-08 07:33:24,732][ INFO][PID:4151121] Checking for cancel request [2026-07-08 07:33:29,734][ INFO][PID:4151121] Checking for cancel request [2026-07-08 07:33:34,735][ INFO][PID:4151121] Checking for cancel request [2026-07-08 07:33:39,738][ INFO][PID:4151121] Checking for cancel request [2026-07-08 07:33:44,790][ INFO][PID:4151121] Checking for cancel request [2026-07-08 07:33:49,798][ INFO][PID:4151121] Checking for cancel request [2026-07-08 07:33:54,802][ INFO][PID:4151121] Checking for cancel request [2026-07-08 07:33:59,829][ INFO][PID:4151121] Checking for cancel request [2026-07-08 07:34:04,834][ INFO][PID:4151121] Checking for cancel request [2026-07-08 07:34:09,841][ INFO][PID:4151121] Checking for cancel request [2026-07-08 07:34:14,842][ INFO][PID:4151121] Checking for cancel request [2026-07-08 07:34:19,940][ INFO][PID:4151121] Checking for cancel request [2026-07-08 07:34:23,707][ INFO][PID:4151121] Downloading results from builder [2026-07-08 07:34:23,708][ INFO][PID:4151121] rsyncing of mockbuilder@3.83.216.30:/var/lib/copr-rpmbuild/results/ to /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5362/srpm-builds/10695943 started [2026-07-08 07:34:23,709][ INFO][PID:4151121] Popen command started: /usr/bin/rsync -rltDvH --chmod=D755,F644 -e 'ssh -F /home/copr/.ssh/config' mockbuilder@3.83.216.30:/var/lib/copr-rpmbuild/results/ /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5362/srpm-builds/10695943/ &> /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5362/srpm-builds/10695943/build-10695943.rsync.log [2026-07-08 07:34:29,378][ INFO][PID:4151121] rsyncing finished. [2026-07-08 07:34:29,378][ INFO][PID:4151121] VM Release request [2026-07-08 07:34:29,430][ INFO][PID:4151121] Searching for 'success' file in resultdir [2026-07-08 07:34:29,431][ INFO][PID:4151121] Getting build details [2026-07-08 07:34:29,431][ INFO][PID:4151121] Retrieving SRPM info from /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5362/srpm-builds/10695943 [2026-07-08 07:34:29,432][ INFO][PID:4151121] SRPM URL: https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5362/srpm-builds/10695943/Sunshine-0.0.5362-1.src.rpm [2026-07-08 07:34:29,433][ INFO][PID:4151121] build details: {'srpm_url': 'https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5362/srpm-builds/10695943/Sunshine-0.0.5362-1.src.rpm', 'pkg_name': 'Sunshine', 'pkg_version': '0.0.5362-1'} [2026-07-08 07:34:29,434][ INFO][PID:4151121] Finished build: id=10695943 failed=False timeout=108000 destdir=/var/lib/copr/public_html/results/lizardbyte/pulls:pr:5362 chroot=srpm-builds [2026-07-08 07:34:29,436][ INFO][PID:4151121] Worker succeeded build, took 574.4262487888336 [2026-07-08 07:34:29,437][ INFO][PID:4151121] 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:5362", "submitter": null, "ended_on": 1783496069.4362679, "started_on": 1783495495.010019, "submitted_on": null, "status": 1, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10695943", "build_id": 10695943, "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\": \"tmp0etizoka\", \"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:5362/srpm-builds/10695943/Sunshine-0.0.5362-1.src.rpm", "uses_devel_repo": null, "sandbox": "lizardbyte/pulls--e785ee93-1380-48d2-8845-09043102b07a", "results": { "architecture_specific_tags": { "fedora-43": {}, "fedora-44": {}, "fedora-rawhide": {}, "opensuse-leap-15.6": {} }, "name": "Sunshine", "epoch": null, "version": "0.0.5362", "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:5362", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5362", "result_dir": "10695943", "built_packages": "", "tags": [ "arch_x86_64" ], "rpmeta_prediction": null, "pkg_version": "0.0.5362-1", "id": 10695943, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2026-07-08 07:34:29,490][ INFO][PID:4151121] Sending fedora-messaging bus message in build.end [2026-07-08 07:34:29,517][ INFO][PID:4151121] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5362/srpm-builds/10695943/builder-live.log by gzip [2026-07-08 07:34:29,519][ INFO][PID:4151121] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5362/srpm-builds/10695943/builder-live.log' as PID 10418 [2026-07-08 07:34:29,562][ INFO][PID:4151121] Finished after 0 seconds with exit code 0 (gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5362/srpm-builds/10695943/builder-live.log) [2026-07-08 07:34:29,563][ INFO][PID:4151121] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5362/srpm-builds/10695943/backend.log by gzip [2026-07-08 07:34:29,564][ INFO][PID:4151121] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5362/srpm-builds/10695943/backend.log' as PID 10425