[2026-09-15 05:03:24,481][ INFO][PID:2661896] Marking build as starting [2026-09-15 05:03:24,512][ INFO][PID:2661896] Checking for cancel request [2026-09-15 05:03:24,512][ INFO][PID:2661896] VM allocation process starts [2026-09-15 05:03:24,522][ INFO][PID:2661896] Trying to allocate VM: ResallocHost, ticket_id=5029216, requested_tags=['arch_x86_64', 'copr_builder'] [2026-09-15 05:03:27,533][ INFO][PID:2661896] Allocated host ResallocHost, ticket_id=5029216, hostname=18.232.165.216, name=aws_x86_64_reserved_prod_37574291_20260915_045813, requested_tags=['arch_x86_64', 'copr_builder'] [2026-09-15 05:03:27,533][ INFO][PID:2661896] Allocating ssh connection to builder [2026-09-15 05:03:27,534][ INFO][PID:2661896] Checking that builder machine is OK [2026-09-15 05:03:27,833][ INFO][PID:2661896] Installed copr-rpmbuild version: 1.9 [2026-09-15 05:03:27,834][ INFO][PID:2661896] Running remote command: copr-builder-ready srpm-builds [2026-09-15 05:03:27,988][ INFO][PID:2661896] Red Hat subscription not needed for srpm-builds Builder is ready to be used [2026-09-15 05:03:27,988][ INFO][PID:2661896] Filling build.info file with builder info [2026-09-15 05:03:27,988][ INFO][PID:2661896] Checking for cancel request [2026-09-15 05:03:27,989][ INFO][PID:2661896] 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:5724", "submitter": null, "ended_on": null, "started_on": 1789448607.9895353, "submitted_on": null, "status": 3, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10986647", "build_id": 10986647, "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\": \"tmptb820nf9\", \"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--fabaa138-c283-49d4-841b-7f900da1ba8b", "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:5724", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5724", "result_dir": "10986647", "built_packages": "", "tags": [ "arch_x86_64" ], "rpmeta_prediction": null, "id": 10986647, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2026-09-15 05:03:28,020][ INFO][PID:2661896] Sending fedora-messaging bus message in build.start [2026-09-15 05:03:28,393][ INFO][PID:2661896] Sending fedora-messaging bus message in chroot.start [2026-09-15 05:03:28,411][ INFO][PID:2661896] Starting remote build: copr-rpmbuild --verbose --drop-resultdir --srpm --task-url https://copr.fedorainfracloud.org/backend/get-srpm-build-task/10986647 --detached [2026-09-15 05:03:28,840][ INFO][PID:2661896] The copr-rpmbuild seems started, per: stdout: stderr: Warning: Permanently added '18.232.165.216' (ED25519) to the list of known hosts. [2026-09-15 05:03:28,841][ INFO][PID:2661896] Downloading the builder-live.log file, attempt 1 [2026-09-15 05:03:28,842][ INFO][PID:2661896] Popen command started: ssh -F /home/copr/.ssh/config mockbuilder@18.232.165.216 copr-rpmbuild-log [2026-09-15 05:03:33,846][ INFO][PID:2661896] Periodic builder liveness probe: alive [2026-09-15 05:03:33,846][ INFO][PID:2661896] Checking for cancel request [2026-09-15 05:03:38,847][ INFO][PID:2661896] Checking for cancel request [2026-09-15 05:03:43,848][ INFO][PID:2661896] Checking for cancel request [2026-09-15 05:03:48,849][ INFO][PID:2661896] Checking for cancel request [2026-09-15 05:03:53,850][ INFO][PID:2661896] Checking for cancel request [2026-09-15 05:03:58,851][ INFO][PID:2661896] Checking for cancel request [2026-09-15 05:04:03,852][ INFO][PID:2661896] Checking for cancel request [2026-09-15 05:04:08,853][ INFO][PID:2661896] Checking for cancel request [2026-09-15 05:04:13,853][ INFO][PID:2661896] Checking for cancel request [2026-09-15 05:04:18,855][ INFO][PID:2661896] Checking for cancel request [2026-09-15 05:04:23,857][ INFO][PID:2661896] Checking for cancel request [2026-09-15 05:04:28,857][ INFO][PID:2661896] Checking for cancel request [2026-09-15 05:04:33,858][ INFO][PID:2661896] Checking for cancel request [2026-09-15 05:04:38,859][ INFO][PID:2661896] Checking for cancel request [2026-09-15 05:04:43,860][ INFO][PID:2661896] Checking for cancel request [2026-09-15 05:04:48,862][ INFO][PID:2661896] Checking for cancel request [2026-09-15 05:04:53,863][ INFO][PID:2661896] Checking for cancel request [2026-09-15 05:04:58,864][ INFO][PID:2661896] Checking for cancel request [2026-09-15 05:05:03,864][ INFO][PID:2661896] Checking for cancel request [2026-09-15 05:05:08,865][ INFO][PID:2661896] Checking for cancel request [2026-09-15 05:05:13,866][ INFO][PID:2661896] Checking for cancel request [2026-09-15 05:05:18,867][ INFO][PID:2661896] Checking for cancel request [2026-09-15 05:05:23,868][ INFO][PID:2661896] Checking for cancel request [2026-09-15 05:05:28,869][ INFO][PID:2661896] Checking for cancel request [2026-09-15 05:05:33,870][ INFO][PID:2661896] Checking for cancel request [2026-09-15 05:05:38,871][ INFO][PID:2661896] Checking for cancel request [2026-09-15 05:05:43,872][ INFO][PID:2661896] Checking for cancel request [2026-09-15 05:05:48,873][ INFO][PID:2661896] Checking for cancel request [2026-09-15 05:05:53,873][ INFO][PID:2661896] Checking for cancel request [2026-09-15 05:05:58,874][ INFO][PID:2661896] Checking for cancel request [2026-09-15 05:06:03,875][ INFO][PID:2661896] Checking for cancel request [2026-09-15 05:06:08,876][ INFO][PID:2661896] Checking for cancel request [2026-09-15 05:06:13,877][ INFO][PID:2661896] Checking for cancel request [2026-09-15 05:06:18,877][ INFO][PID:2661896] Checking for cancel request [2026-09-15 05:06:24,017][ INFO][PID:2661896] Checking for cancel request [2026-09-15 05:06:29,018][ INFO][PID:2661896] Checking for cancel request [2026-09-15 05:06:34,019][ INFO][PID:2661896] Checking for cancel request [2026-09-15 05:06:39,109][ INFO][PID:2661896] Checking for cancel request [2026-09-15 05:06:44,110][ INFO][PID:2661896] Checking for cancel request [2026-09-15 05:06:49,111][ INFO][PID:2661896] Checking for cancel request [2026-09-15 05:06:54,112][ INFO][PID:2661896] Checking for cancel request [2026-09-15 05:06:59,112][ INFO][PID:2661896] Checking for cancel request [2026-09-15 05:07:04,113][ INFO][PID:2661896] Checking for cancel request [2026-09-15 05:07:09,114][ INFO][PID:2661896] Checking for cancel request [2026-09-15 05:07:14,115][ INFO][PID:2661896] Checking for cancel request [2026-09-15 05:07:19,397][ INFO][PID:2661896] Checking for cancel request [2026-09-15 05:07:24,398][ INFO][PID:2661896] Checking for cancel request [2026-09-15 05:07:29,399][ INFO][PID:2661896] Checking for cancel request [2026-09-15 05:07:34,622][ INFO][PID:2661896] Checking for cancel request [2026-09-15 05:07:39,840][ INFO][PID:2661896] Checking for cancel request [2026-09-15 05:07:44,841][ INFO][PID:2661896] Checking for cancel request [2026-09-15 05:07:49,842][ INFO][PID:2661896] Checking for cancel request [2026-09-15 05:07:54,845][ INFO][PID:2661896] Checking for cancel request [2026-09-15 05:08:00,523][ INFO][PID:2661896] Checking for cancel request [2026-09-15 05:08:05,524][ INFO][PID:2661896] Checking for cancel request [2026-09-15 05:08:10,525][ INFO][PID:2661896] Checking for cancel request [2026-09-15 05:08:15,526][ INFO][PID:2661896] Checking for cancel request [2026-09-15 05:08:20,528][ INFO][PID:2661896] Checking for cancel request [2026-09-15 05:08:25,529][ INFO][PID:2661896] Checking for cancel request [2026-09-15 05:08:30,531][ INFO][PID:2661896] Checking for cancel request [2026-09-15 05:08:35,532][ INFO][PID:2661896] Checking for cancel request [2026-09-15 05:08:40,532][ INFO][PID:2661896] Checking for cancel request [2026-09-15 05:08:45,534][ INFO][PID:2661896] Checking for cancel request [2026-09-15 05:08:50,534][ INFO][PID:2661896] Checking for cancel request [2026-09-15 05:08:55,535][ INFO][PID:2661896] Checking for cancel request [2026-09-15 05:09:00,536][ INFO][PID:2661896] Checking for cancel request [2026-09-15 05:09:05,537][ INFO][PID:2661896] Checking for cancel request [2026-09-15 05:09:10,538][ INFO][PID:2661896] Checking for cancel request [2026-09-15 05:09:15,539][ INFO][PID:2661896] Checking for cancel request [2026-09-15 05:09:20,651][ INFO][PID:2661896] Checking for cancel request [2026-09-15 05:09:25,653][ INFO][PID:2661896] Checking for cancel request [2026-09-15 05:09:30,657][ INFO][PID:2661896] Checking for cancel request [2026-09-15 05:09:35,861][ INFO][PID:2661896] Checking for cancel request [2026-09-15 05:09:40,862][ INFO][PID:2661896] Checking for cancel request [2026-09-15 05:09:45,862][ INFO][PID:2661896] Checking for cancel request [2026-09-15 05:09:50,863][ INFO][PID:2661896] Checking for cancel request [2026-09-15 05:09:55,895][ INFO][PID:2661896] Checking for cancel request [2026-09-15 05:10:00,896][ INFO][PID:2661896] Checking for cancel request [2026-09-15 05:10:05,897][ INFO][PID:2661896] Checking for cancel request [2026-09-15 05:10:10,898][ INFO][PID:2661896] Checking for cancel request [2026-09-15 05:10:15,900][ INFO][PID:2661896] Checking for cancel request [2026-09-15 05:10:20,901][ INFO][PID:2661896] Checking for cancel request [2026-09-15 05:10:25,903][ INFO][PID:2661896] Checking for cancel request [2026-09-15 05:10:31,057][ INFO][PID:2661896] Checking for cancel request [2026-09-15 05:10:36,058][ INFO][PID:2661896] Checking for cancel request [2026-09-15 05:10:41,261][ INFO][PID:2661896] Checking for cancel request [2026-09-15 05:10:46,484][ INFO][PID:2661896] Checking for cancel request [2026-09-15 05:10:51,485][ INFO][PID:2661896] Checking for cancel request [2026-09-15 05:10:56,486][ INFO][PID:2661896] Checking for cancel request [2026-09-15 05:11:01,486][ INFO][PID:2661896] Checking for cancel request [2026-09-15 05:11:06,487][ INFO][PID:2661896] Checking for cancel request [2026-09-15 05:11:11,488][ INFO][PID:2661896] Checking for cancel request [2026-09-15 05:11:16,489][ INFO][PID:2661896] Checking for cancel request [2026-09-15 05:11:21,733][ INFO][PID:2661896] Checking for cancel request [2026-09-15 05:11:26,733][ INFO][PID:2661896] Checking for cancel request [2026-09-15 05:11:31,734][ INFO][PID:2661896] Checking for cancel request [2026-09-15 05:11:36,735][ INFO][PID:2661896] Checking for cancel request [2026-09-15 05:11:41,736][ INFO][PID:2661896] Checking for cancel request [2026-09-15 05:11:46,737][ INFO][PID:2661896] Checking for cancel request [2026-09-15 05:11:51,737][ INFO][PID:2661896] Checking for cancel request [2026-09-15 05:11:56,738][ INFO][PID:2661896] Checking for cancel request [2026-09-15 05:12:01,739][ INFO][PID:2661896] Checking for cancel request [2026-09-15 05:12:06,740][ INFO][PID:2661896] Checking for cancel request [2026-09-15 05:12:11,740][ INFO][PID:2661896] Checking for cancel request [2026-09-15 05:12:16,741][ INFO][PID:2661896] Checking for cancel request [2026-09-15 05:12:21,742][ INFO][PID:2661896] Checking for cancel request [2026-09-15 05:12:26,743][ INFO][PID:2661896] Checking for cancel request [2026-09-15 05:12:31,743][ INFO][PID:2661896] Checking for cancel request [2026-09-15 05:12:36,744][ INFO][PID:2661896] Checking for cancel request [2026-09-15 05:12:41,745][ INFO][PID:2661896] Checking for cancel request [2026-09-15 05:12:46,746][ INFO][PID:2661896] Checking for cancel request [2026-09-15 05:12:51,811][ INFO][PID:2661896] Checking for cancel request [2026-09-15 05:12:56,812][ INFO][PID:2661896] Checking for cancel request [2026-09-15 05:13:01,813][ INFO][PID:2661896] Checking for cancel request [2026-09-15 05:13:06,813][ INFO][PID:2661896] Checking for cancel request [2026-09-15 05:13:11,814][ INFO][PID:2661896] Checking for cancel request [2026-09-15 05:13:16,977][ INFO][PID:2661896] Checking for cancel request [2026-09-15 05:13:21,978][ INFO][PID:2661896] Checking for cancel request [2026-09-15 05:13:27,082][ INFO][PID:2661896] Checking for cancel request [2026-09-15 05:13:32,083][ INFO][PID:2661896] Checking for cancel request [2026-09-15 05:13:36,387][ INFO][PID:2661896] Downloading results from builder [2026-09-15 05:13:36,387][ INFO][PID:2661896] rsyncing of mockbuilder@18.232.165.216:/var/lib/copr-rpmbuild/results/ to /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5724/srpm-builds/10986647 started [2026-09-15 05:13:36,388][ INFO][PID:2661896] Popen command started: /usr/bin/rsync -rltDvH --chmod=D755,F644 -e 'ssh -F /home/copr/.ssh/config' mockbuilder@18.232.165.216:/var/lib/copr-rpmbuild/results/ /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5724/srpm-builds/10986647/ &> /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5724/srpm-builds/10986647/build-10986647.rsync.log [2026-09-15 05:13:40,076][ INFO][PID:2661896] rsyncing finished. [2026-09-15 05:13:40,076][ INFO][PID:2661896] VM Release request [2026-09-15 05:13:40,081][ INFO][PID:2661896] Searching for 'success' file in resultdir [2026-09-15 05:13:40,082][ INFO][PID:2661896] Getting build details [2026-09-15 05:13:40,082][ INFO][PID:2661896] Retrieving SRPM info from /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5724/srpm-builds/10986647 [2026-09-15 05:13:40,082][ INFO][PID:2661896] SRPM URL: https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5724/srpm-builds/10986647/Sunshine-0.0.5724-1.src.rpm [2026-09-15 05:13:40,083][ INFO][PID:2661896] build details: {'srpm_url': 'https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5724/srpm-builds/10986647/Sunshine-0.0.5724-1.src.rpm', 'pkg_name': 'Sunshine', 'pkg_version': '0.0.5724-1'} [2026-09-15 05:13:40,083][ INFO][PID:2661896] Finished build: id=10986647 failed=False timeout=108000 destdir=/var/lib/copr/public_html/results/lizardbyte/pulls:pr:5724 chroot=srpm-builds [2026-09-15 05:13:40,083][ INFO][PID:2661896] Worker succeeded build, took 612.0942144393921 [2026-09-15 05:13:40,084][ INFO][PID:2661896] 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:5724", "submitter": null, "ended_on": 1789449220.0837498, "started_on": 1789448607.9895353, "submitted_on": null, "status": 1, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10986647", "build_id": 10986647, "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\": \"tmptb820nf9\", \"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:5724/srpm-builds/10986647/Sunshine-0.0.5724-1.src.rpm", "uses_devel_repo": null, "sandbox": "lizardbyte/pulls--fabaa138-c283-49d4-841b-7f900da1ba8b", "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.5724", "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:5724", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5724", "result_dir": "10986647", "built_packages": "", "tags": [ "arch_x86_64" ], "rpmeta_prediction": null, "pkg_version": "0.0.5724-1", "id": 10986647, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2026-09-15 05:13:40,131][ INFO][PID:2661896] Sending fedora-messaging bus message in build.end [2026-09-15 05:13:40,150][ INFO][PID:2661896] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5724/srpm-builds/10986647/builder-live.log by gzip [2026-09-15 05:13:40,150][ INFO][PID:2661896] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5724/srpm-builds/10986647/builder-live.log' as PID 2788475 [2026-09-15 05:13:40,155][ INFO][PID:2661896] Finished after 0 seconds with exit code 0 (gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5724/srpm-builds/10986647/builder-live.log) [2026-09-15 05:13:40,155][ INFO][PID:2661896] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5724/srpm-builds/10986647/backend.log by gzip [2026-09-15 05:13:40,155][ INFO][PID:2661896] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5724/srpm-builds/10986647/backend.log' as PID 2788484