[2026-09-17 17:35:12,385][ INFO][PID:291115] Marking build as starting [2026-09-17 17:35:12,411][ INFO][PID:291115] Checking for cancel request [2026-09-17 17:35:12,411][ INFO][PID:291115] VM allocation process starts [2026-09-17 17:35:12,420][ INFO][PID:291115] Trying to allocate VM: ResallocHost, ticket_id=5087617, requested_tags=['arch_x86_64', 'copr_builder'] [2026-09-17 17:35:15,428][ INFO][PID:291115] Allocated host ResallocHost, ticket_id=5087617, hostname=44.211.26.166, name=aws_x86_64_reserved_prod_39748566_20260917_173023, requested_tags=['arch_x86_64', 'copr_builder'] [2026-09-17 17:35:15,429][ INFO][PID:291115] Allocating ssh connection to builder [2026-09-17 17:35:15,429][ INFO][PID:291115] Checking that builder machine is OK [2026-09-17 17:35:15,725][ INFO][PID:291115] Installed copr-rpmbuild version: 1.9 [2026-09-17 17:35:15,725][ INFO][PID:291115] Running remote command: copr-builder-ready srpm-builds [2026-09-17 17:35:15,891][ INFO][PID:291115] Red Hat subscription not needed for srpm-builds Builder is ready to be used [2026-09-17 17:35:15,892][ INFO][PID:291115] Filling build.info file with builder info [2026-09-17 17:35:15,892][ INFO][PID:291115] Checking for cancel request [2026-09-17 17:35:15,892][ INFO][PID:291115] 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:5744", "submitter": null, "ended_on": null, "started_on": 1789666515.8928971, "submitted_on": null, "status": 3, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10997360", "build_id": 10997360, "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-45-x86_64\", \"builddeps\": \"git jq python3 rpmlint\", \"resultdir\": \"\", \"repos\": \"\", \"tmp\": \"tmpk4q26vv0\", \"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--474f4adc-132a-4da3-8fd6-43d193515f72", "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-45", "fedora-rawhide", "opensuse-leap-16.0", "opensuse-tumbleweed" ], "distributions_in_project": [ "fedora-43", "fedora-44", "fedora-45", "fedora-rawhide", "opensuse-leap-16.0", "opensuse-tumbleweed" ], "destdir": "/var/lib/copr/public_html/results/lizardbyte/pulls:pr:5744", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5744", "result_dir": "10997360", "built_packages": "", "tags": [ "arch_x86_64" ], "rpmeta_prediction": null, "id": 10997360, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2026-09-17 17:35:15,920][ INFO][PID:291115] Sending fedora-messaging bus message in build.start [2026-09-17 17:35:16,276][ INFO][PID:291115] Sending fedora-messaging bus message in chroot.start [2026-09-17 17:35:16,294][ INFO][PID:291115] Starting remote build: copr-rpmbuild --verbose --drop-resultdir --srpm --task-url https://copr.fedorainfracloud.org/backend/get-srpm-build-task/10997360 --detached [2026-09-17 17:35:16,755][ INFO][PID:291115] The copr-rpmbuild seems started, per: stdout: stderr: Warning: Permanently added '44.211.26.166' (ED25519) to the list of known hosts. [2026-09-17 17:35:16,755][ INFO][PID:291115] Downloading the builder-live.log file, attempt 1 [2026-09-17 17:35:16,757][ INFO][PID:291115] Popen command started: ssh -F /home/copr/.ssh/config mockbuilder@44.211.26.166 copr-rpmbuild-log [2026-09-17 17:35:21,760][ INFO][PID:291115] Periodic builder liveness probe: alive [2026-09-17 17:35:21,760][ INFO][PID:291115] Checking for cancel request [2026-09-17 17:35:26,761][ INFO][PID:291115] Checking for cancel request [2026-09-17 17:35:31,762][ INFO][PID:291115] Checking for cancel request [2026-09-17 17:35:36,763][ INFO][PID:291115] Checking for cancel request [2026-09-17 17:35:41,763][ INFO][PID:291115] Checking for cancel request [2026-09-17 17:35:46,764][ INFO][PID:291115] Checking for cancel request [2026-09-17 17:35:51,765][ INFO][PID:291115] Checking for cancel request [2026-09-17 17:35:56,766][ INFO][PID:291115] Checking for cancel request [2026-09-17 17:36:01,767][ INFO][PID:291115] Checking for cancel request [2026-09-17 17:36:06,768][ INFO][PID:291115] Checking for cancel request [2026-09-17 17:36:11,769][ INFO][PID:291115] Checking for cancel request [2026-09-17 17:36:16,770][ INFO][PID:291115] Checking for cancel request [2026-09-17 17:36:21,771][ INFO][PID:291115] Checking for cancel request [2026-09-17 17:36:26,771][ INFO][PID:291115] Checking for cancel request [2026-09-17 17:36:31,773][ INFO][PID:291115] Checking for cancel request [2026-09-17 17:36:36,774][ INFO][PID:291115] Checking for cancel request [2026-09-17 17:36:41,775][ INFO][PID:291115] Checking for cancel request [2026-09-17 17:36:46,776][ INFO][PID:291115] Checking for cancel request [2026-09-17 17:36:51,777][ INFO][PID:291115] Checking for cancel request [2026-09-17 17:36:56,778][ INFO][PID:291115] Checking for cancel request [2026-09-17 17:37:01,779][ INFO][PID:291115] Checking for cancel request [2026-09-17 17:37:06,780][ INFO][PID:291115] Checking for cancel request [2026-09-17 17:37:11,781][ INFO][PID:291115] Checking for cancel request [2026-09-17 17:37:16,782][ INFO][PID:291115] Checking for cancel request [2026-09-17 17:37:21,783][ INFO][PID:291115] Checking for cancel request [2026-09-17 17:37:26,784][ INFO][PID:291115] Checking for cancel request [2026-09-17 17:37:31,784][ INFO][PID:291115] Checking for cancel request [2026-09-17 17:37:36,786][ INFO][PID:291115] Checking for cancel request [2026-09-17 17:37:41,786][ INFO][PID:291115] Checking for cancel request [2026-09-17 17:37:46,787][ INFO][PID:291115] Checking for cancel request [2026-09-17 17:37:51,788][ INFO][PID:291115] Checking for cancel request [2026-09-17 17:37:56,789][ INFO][PID:291115] Checking for cancel request [2026-09-17 17:38:01,790][ INFO][PID:291115] Checking for cancel request [2026-09-17 17:38:06,791][ INFO][PID:291115] Checking for cancel request [2026-09-17 17:38:11,907][ INFO][PID:291115] Checking for cancel request [2026-09-17 17:38:16,908][ INFO][PID:291115] Checking for cancel request [2026-09-17 17:38:22,296][ INFO][PID:291115] Checking for cancel request [2026-09-17 17:38:27,560][ INFO][PID:291115] Checking for cancel request [2026-09-17 17:38:32,561][ INFO][PID:291115] Checking for cancel request [2026-09-17 17:38:37,562][ INFO][PID:291115] Checking for cancel request [2026-09-17 17:38:42,563][ INFO][PID:291115] Checking for cancel request [2026-09-17 17:38:47,564][ INFO][PID:291115] Checking for cancel request [2026-09-17 17:38:52,565][ INFO][PID:291115] Checking for cancel request [2026-09-17 17:38:57,566][ INFO][PID:291115] Checking for cancel request [2026-09-17 17:39:02,566][ INFO][PID:291115] Checking for cancel request [2026-09-17 17:39:07,567][ INFO][PID:291115] Checking for cancel request [2026-09-17 17:39:12,568][ INFO][PID:291115] Checking for cancel request [2026-09-17 17:39:17,569][ INFO][PID:291115] Checking for cancel request [2026-09-17 17:39:22,570][ INFO][PID:291115] Checking for cancel request [2026-09-17 17:39:27,571][ INFO][PID:291115] Checking for cancel request [2026-09-17 17:39:32,571][ INFO][PID:291115] Checking for cancel request [2026-09-17 17:39:37,572][ INFO][PID:291115] Checking for cancel request [2026-09-17 17:39:42,573][ INFO][PID:291115] Checking for cancel request [2026-09-17 17:39:47,574][ INFO][PID:291115] Checking for cancel request [2026-09-17 17:39:52,575][ INFO][PID:291115] Checking for cancel request [2026-09-17 17:39:57,576][ INFO][PID:291115] Checking for cancel request [2026-09-17 17:40:02,576][ INFO][PID:291115] Checking for cancel request [2026-09-17 17:40:07,577][ INFO][PID:291115] Checking for cancel request [2026-09-17 17:40:12,579][ INFO][PID:291115] Checking for cancel request [2026-09-17 17:40:17,580][ INFO][PID:291115] Checking for cancel request [2026-09-17 17:40:22,601][ INFO][PID:291115] Checking for cancel request [2026-09-17 17:40:27,607][ INFO][PID:291115] Checking for cancel request [2026-09-17 17:40:32,656][ INFO][PID:291115] Checking for cancel request [2026-09-17 17:40:37,751][ INFO][PID:291115] Checking for cancel request [2026-09-17 17:40:42,960][ INFO][PID:291115] Checking for cancel request [2026-09-17 17:40:47,998][ INFO][PID:291115] Checking for cancel request [2026-09-17 17:40:53,038][ INFO][PID:291115] Checking for cancel request [2026-09-17 17:40:58,122][ INFO][PID:291115] Checking for cancel request [2026-09-17 17:41:03,131][ INFO][PID:291115] Checking for cancel request [2026-09-17 17:41:08,309][ INFO][PID:291115] Checking for cancel request [2026-09-17 17:41:13,310][ INFO][PID:291115] Checking for cancel request [2026-09-17 17:41:18,311][ INFO][PID:291115] Checking for cancel request [2026-09-17 17:41:23,312][ INFO][PID:291115] Checking for cancel request [2026-09-17 17:41:28,313][ INFO][PID:291115] Checking for cancel request [2026-09-17 17:41:33,314][ INFO][PID:291115] Checking for cancel request [2026-09-17 17:41:38,315][ INFO][PID:291115] Checking for cancel request [2026-09-17 17:41:43,316][ INFO][PID:291115] Checking for cancel request [2026-09-17 17:41:48,317][ INFO][PID:291115] Checking for cancel request [2026-09-17 17:41:53,317][ INFO][PID:291115] Checking for cancel request [2026-09-17 17:41:58,318][ INFO][PID:291115] Checking for cancel request [2026-09-17 17:42:03,319][ INFO][PID:291115] Checking for cancel request [2026-09-17 17:42:08,320][ INFO][PID:291115] Checking for cancel request [2026-09-17 17:42:13,321][ INFO][PID:291115] Checking for cancel request [2026-09-17 17:42:18,322][ INFO][PID:291115] Checking for cancel request [2026-09-17 17:42:23,323][ INFO][PID:291115] Checking for cancel request [2026-09-17 17:42:28,324][ INFO][PID:291115] Checking for cancel request [2026-09-17 17:42:33,324][ INFO][PID:291115] Checking for cancel request [2026-09-17 17:42:38,325][ INFO][PID:291115] Checking for cancel request [2026-09-17 17:42:43,326][ INFO][PID:291115] Checking for cancel request [2026-09-17 17:42:48,327][ INFO][PID:291115] Checking for cancel request [2026-09-17 17:42:53,328][ INFO][PID:291115] Checking for cancel request [2026-09-17 17:42:58,329][ INFO][PID:291115] Checking for cancel request [2026-09-17 17:43:03,329][ INFO][PID:291115] Checking for cancel request [2026-09-17 17:43:08,330][ INFO][PID:291115] Checking for cancel request [2026-09-17 17:43:13,331][ INFO][PID:291115] Checking for cancel request [2026-09-17 17:43:18,332][ INFO][PID:291115] Checking for cancel request [2026-09-17 17:43:23,333][ INFO][PID:291115] Checking for cancel request [2026-09-17 17:43:28,334][ INFO][PID:291115] Checking for cancel request [2026-09-17 17:43:33,334][ INFO][PID:291115] Checking for cancel request [2026-09-17 17:43:38,335][ INFO][PID:291115] Checking for cancel request [2026-09-17 17:43:43,336][ INFO][PID:291115] Checking for cancel request [2026-09-17 17:43:48,337][ INFO][PID:291115] Checking for cancel request [2026-09-17 17:43:53,338][ INFO][PID:291115] Checking for cancel request [2026-09-17 17:43:58,339][ INFO][PID:291115] Checking for cancel request [2026-09-17 17:44:03,340][ INFO][PID:291115] Checking for cancel request [2026-09-17 17:44:08,341][ INFO][PID:291115] Checking for cancel request [2026-09-17 17:44:13,341][ INFO][PID:291115] Checking for cancel request [2026-09-17 17:44:18,342][ INFO][PID:291115] Checking for cancel request [2026-09-17 17:44:23,343][ INFO][PID:291115] Checking for cancel request [2026-09-17 17:44:28,344][ INFO][PID:291115] Checking for cancel request [2026-09-17 17:44:33,345][ INFO][PID:291115] Checking for cancel request [2026-09-17 17:44:38,346][ INFO][PID:291115] Checking for cancel request [2026-09-17 17:44:43,347][ INFO][PID:291115] Checking for cancel request [2026-09-17 17:44:48,347][ INFO][PID:291115] Checking for cancel request [2026-09-17 17:44:53,348][ INFO][PID:291115] Checking for cancel request [2026-09-17 17:44:58,349][ INFO][PID:291115] Checking for cancel request [2026-09-17 17:45:03,350][ INFO][PID:291115] Checking for cancel request [2026-09-17 17:45:08,351][ INFO][PID:291115] Checking for cancel request [2026-09-17 17:45:13,352][ INFO][PID:291115] Checking for cancel request [2026-09-17 17:45:18,353][ INFO][PID:291115] Checking for cancel request [2026-09-17 17:45:23,358][ INFO][PID:291115] Periodic builder liveness probe: alive [2026-09-17 17:45:23,359][ INFO][PID:291115] Checking for cancel request [2026-09-17 17:45:28,360][ INFO][PID:291115] Checking for cancel request [2026-09-17 17:45:33,360][ INFO][PID:291115] Checking for cancel request [2026-09-17 17:45:38,361][ INFO][PID:291115] Checking for cancel request [2026-09-17 17:45:43,362][ INFO][PID:291115] Checking for cancel request [2026-09-17 17:45:48,363][ INFO][PID:291115] Checking for cancel request [2026-09-17 17:45:53,364][ INFO][PID:291115] Checking for cancel request [2026-09-17 17:45:58,365][ INFO][PID:291115] Checking for cancel request [2026-09-17 17:46:03,366][ INFO][PID:291115] Checking for cancel request [2026-09-17 17:46:04,958][ INFO][PID:291115] Downloading results from builder [2026-09-17 17:46:04,958][ INFO][PID:291115] rsyncing of mockbuilder@44.211.26.166:/var/lib/copr-rpmbuild/results/ to /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5744/srpm-builds/10997360 started [2026-09-17 17:46:04,959][ INFO][PID:291115] Popen command started: /usr/bin/rsync -rltDvH --chmod=D755,F644 -e 'ssh -F /home/copr/.ssh/config' mockbuilder@44.211.26.166:/var/lib/copr-rpmbuild/results/ /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5744/srpm-builds/10997360/ &> /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5744/srpm-builds/10997360/build-10997360.rsync.log [2026-09-17 17:46:06,940][ INFO][PID:291115] rsyncing finished. [2026-09-17 17:46:06,941][ INFO][PID:291115] VM Release request [2026-09-17 17:46:06,947][ INFO][PID:291115] Searching for 'success' file in resultdir [2026-09-17 17:46:06,948][ INFO][PID:291115] Getting build details [2026-09-17 17:46:06,948][ INFO][PID:291115] Retrieving SRPM info from /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5744/srpm-builds/10997360 [2026-09-17 17:46:06,948][ INFO][PID:291115] SRPM URL: https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5744/srpm-builds/10997360/Sunshine-0.0.5744-1.src.rpm [2026-09-17 17:46:06,948][ INFO][PID:291115] build details: {'srpm_url': 'https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5744/srpm-builds/10997360/Sunshine-0.0.5744-1.src.rpm', 'pkg_name': 'Sunshine', 'pkg_version': '0.0.5744-1'} [2026-09-17 17:46:06,949][ INFO][PID:291115] Finished build: id=10997360 failed=False timeout=108000 destdir=/var/lib/copr/public_html/results/lizardbyte/pulls:pr:5744 chroot=srpm-builds [2026-09-17 17:46:06,949][ INFO][PID:291115] Worker succeeded build, took 651.0566265583038 [2026-09-17 17:46:06,949][ INFO][PID:291115] 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:5744", "submitter": null, "ended_on": 1789667166.9495237, "started_on": 1789666515.8928971, "submitted_on": null, "status": 1, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10997360", "build_id": 10997360, "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-45-x86_64\", \"builddeps\": \"git jq python3 rpmlint\", \"resultdir\": \"\", \"repos\": \"\", \"tmp\": \"tmpk4q26vv0\", \"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:5744/srpm-builds/10997360/Sunshine-0.0.5744-1.src.rpm", "uses_devel_repo": null, "sandbox": "lizardbyte/pulls--474f4adc-132a-4da3-8fd6-43d193515f72", "results": { "architecture_specific_tags": { "fedora-43": {}, "fedora-44": {}, "fedora-45": {}, "fedora-rawhide": {}, "opensuse-leap-16.0": {}, "opensuse-tumbleweed": {} }, "name": "Sunshine", "epoch": null, "version": "0.0.5744", "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-45", "fedora-rawhide", "opensuse-leap-16.0", "opensuse-tumbleweed" ], "distributions_in_project": [ "fedora-43", "fedora-44", "fedora-45", "fedora-rawhide", "opensuse-leap-16.0", "opensuse-tumbleweed" ], "destdir": "/var/lib/copr/public_html/results/lizardbyte/pulls:pr:5744", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5744", "result_dir": "10997360", "built_packages": "", "tags": [ "arch_x86_64" ], "rpmeta_prediction": null, "pkg_version": "0.0.5744-1", "id": 10997360, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2026-09-17 17:46:06,997][ INFO][PID:291115] Sending fedora-messaging bus message in build.end [2026-09-17 17:46:07,015][ INFO][PID:291115] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5744/srpm-builds/10997360/builder-live.log by gzip [2026-09-17 17:46:07,016][ INFO][PID:291115] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5744/srpm-builds/10997360/builder-live.log' as PID 394816 [2026-09-17 17:46:07,022][ INFO][PID:291115] Finished after 0 seconds with exit code 0 (gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5744/srpm-builds/10997360/builder-live.log) [2026-09-17 17:46:07,022][ INFO][PID:291115] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5744/srpm-builds/10997360/backend.log by gzip [2026-09-17 17:46:07,023][ INFO][PID:291115] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5744/srpm-builds/10997360/backend.log' as PID 394817