[2026-06-07 00:23:49,335][ INFO][PID:1149173] Marking build as starting [2026-06-07 00:23:49,374][ INFO][PID:1149173] Checking for cancel request [2026-06-07 00:23:49,376][ INFO][PID:1149173] VM allocation process starts [2026-06-07 00:23:49,433][ INFO][PID:1149173] Trying to allocate VM: ResallocHost, ticket_id=3318394, requested_tags=['arch_x86_64', 'copr_builder'] [2026-06-07 00:23:54,435][ INFO][PID:1149173] Checking for cancel request [2026-06-07 00:23:59,436][ INFO][PID:1149173] Checking for cancel request [2026-06-07 00:24:01,464][ INFO][PID:1149173] Allocated host ResallocHost, ticket_id=3318394, hostname=54.161.81.199, name=aws_x86_64_reserved_prod_11063515_20260607_000945, requested_tags=['arch_x86_64', 'copr_builder'] [2026-06-07 00:24:01,465][ INFO][PID:1149173] Allocating ssh connection to builder [2026-06-07 00:24:01,465][ INFO][PID:1149173] Checking that builder machine is OK [2026-06-07 00:24:01,814][ INFO][PID:1149173] Installed copr-rpmbuild version: 1.8 [2026-06-07 00:24:01,816][ INFO][PID:1149173] Running remote command: copr-builder-ready srpm-builds [2026-06-07 00:24:02,048][ INFO][PID:1149173] Red Hat subscription not needed for srpm-builds Builder is ready to be used [2026-06-07 00:24:02,049][ INFO][PID:1149173] Filling build.info file with builder info [2026-06-07 00:24:02,050][ INFO][PID:1149173] Checking for cancel request [2026-06-07 00:24:02,053][ INFO][PID:1149173] 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:5260", "submitter": null, "ended_on": null, "started_on": 1780791842.0534, "submitted_on": null, "status": 3, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10574316", "build_id": 10574316, "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\": \"tmpeepa6ydz\", \"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--25d09933-6bc1-4d85-b518-6c0f77a46522", "results": null, "appstream": false, "allow_user_ssh": null, "ssh_public_keys": null, "storage": null, "repos": [], "background": true, "distributions_in_build": [ "fedora-42", "fedora-43", "fedora-44", "fedora-rawhide", "opensuse-leap-15.6" ], "distributions_in_project": [ "fedora-42", "fedora-43", "fedora-44", "fedora-rawhide", "opensuse-leap-15.6" ], "destdir": "/var/lib/copr/public_html/results/lizardbyte/pulls:pr:5260", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5260", "result_dir": "10574316", "built_packages": "", "tags": [ "arch_x86_64" ], "rpmeta_prediction": null, "id": 10574316, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2026-06-07 00:24:02,095][ INFO][PID:1149173] Sending fedora-messaging bus message in build.start [2026-06-07 00:24:02,789][ INFO][PID:1149173] Sending fedora-messaging bus message in chroot.start [2026-06-07 00:24:02,816][ INFO][PID:1149173] Starting remote build: copr-rpmbuild --verbose --drop-resultdir --srpm --task-url https://copr.fedorainfracloud.org/backend/get-srpm-build-task/10574316 --detached [2026-06-07 00:24:03,283][ INFO][PID:1149173] The copr-rpmbuild seems started, per: stdout: stderr: Warning: Permanently added '54.161.81.199' (ED25519) to the list of known hosts. [2026-06-07 00:24:03,284][ INFO][PID:1149173] Downloading the builder-live.log file, attempt 1 [2026-06-07 00:24:03,286][ INFO][PID:1149173] Popen command started: ssh -F /home/copr/.ssh/config mockbuilder@54.161.81.199 copr-rpmbuild-log [2026-06-07 00:24:08,290][ INFO][PID:1149173] Periodic builder liveness probe: alive [2026-06-07 00:24:08,291][ INFO][PID:1149173] Checking for cancel request [2026-06-07 00:24:13,292][ INFO][PID:1149173] Checking for cancel request [2026-06-07 00:24:18,293][ INFO][PID:1149173] Checking for cancel request [2026-06-07 00:24:23,295][ INFO][PID:1149173] Checking for cancel request [2026-06-07 00:24:28,312][ INFO][PID:1149173] Checking for cancel request [2026-06-07 00:24:33,314][ INFO][PID:1149173] Checking for cancel request [2026-06-07 00:24:38,315][ INFO][PID:1149173] Checking for cancel request [2026-06-07 00:24:43,317][ INFO][PID:1149173] Checking for cancel request [2026-06-07 00:24:48,318][ INFO][PID:1149173] Checking for cancel request [2026-06-07 00:24:53,319][ INFO][PID:1149173] Checking for cancel request [2026-06-07 00:24:58,321][ INFO][PID:1149173] Checking for cancel request [2026-06-07 00:25:03,322][ INFO][PID:1149173] Checking for cancel request [2026-06-07 00:25:08,323][ INFO][PID:1149173] Checking for cancel request [2026-06-07 00:25:13,325][ INFO][PID:1149173] Checking for cancel request [2026-06-07 00:25:18,326][ INFO][PID:1149173] Checking for cancel request [2026-06-07 00:25:23,328][ INFO][PID:1149173] Checking for cancel request [2026-06-07 00:25:28,329][ INFO][PID:1149173] Checking for cancel request [2026-06-07 00:25:33,330][ INFO][PID:1149173] Checking for cancel request [2026-06-07 00:25:38,331][ INFO][PID:1149173] Checking for cancel request [2026-06-07 00:25:43,333][ INFO][PID:1149173] Checking for cancel request [2026-06-07 00:25:48,334][ INFO][PID:1149173] Checking for cancel request [2026-06-07 00:25:53,335][ INFO][PID:1149173] Checking for cancel request [2026-06-07 00:25:58,337][ INFO][PID:1149173] Checking for cancel request [2026-06-07 00:26:03,338][ INFO][PID:1149173] Checking for cancel request [2026-06-07 00:26:08,339][ INFO][PID:1149173] Checking for cancel request [2026-06-07 00:26:13,341][ INFO][PID:1149173] Checking for cancel request [2026-06-07 00:26:18,342][ INFO][PID:1149173] Checking for cancel request [2026-06-07 00:26:23,343][ INFO][PID:1149173] Checking for cancel request [2026-06-07 00:26:28,345][ INFO][PID:1149173] Checking for cancel request [2026-06-07 00:26:33,346][ INFO][PID:1149173] Checking for cancel request [2026-06-07 00:26:38,348][ INFO][PID:1149173] Checking for cancel request [2026-06-07 00:26:43,349][ INFO][PID:1149173] Checking for cancel request [2026-06-07 00:26:48,350][ INFO][PID:1149173] Checking for cancel request [2026-06-07 00:26:53,352][ INFO][PID:1149173] Checking for cancel request [2026-06-07 00:26:58,353][ INFO][PID:1149173] Checking for cancel request [2026-06-07 00:27:03,354][ INFO][PID:1149173] Checking for cancel request [2026-06-07 00:27:08,356][ INFO][PID:1149173] Checking for cancel request [2026-06-07 00:27:13,357][ INFO][PID:1149173] Checking for cancel request [2026-06-07 00:27:18,358][ INFO][PID:1149173] Checking for cancel request [2026-06-07 00:27:23,360][ INFO][PID:1149173] Checking for cancel request [2026-06-07 00:27:28,362][ INFO][PID:1149173] Checking for cancel request [2026-06-07 00:27:33,363][ INFO][PID:1149173] Checking for cancel request [2026-06-07 00:27:38,365][ INFO][PID:1149173] Checking for cancel request [2026-06-07 00:27:43,366][ INFO][PID:1149173] Checking for cancel request [2026-06-07 00:27:48,367][ INFO][PID:1149173] Checking for cancel request [2026-06-07 00:27:53,369][ INFO][PID:1149173] Checking for cancel request [2026-06-07 00:27:58,370][ INFO][PID:1149173] Checking for cancel request [2026-06-07 00:28:03,371][ INFO][PID:1149173] Checking for cancel request [2026-06-07 00:28:08,373][ INFO][PID:1149173] Checking for cancel request [2026-06-07 00:28:13,374][ INFO][PID:1149173] Checking for cancel request [2026-06-07 00:28:18,375][ INFO][PID:1149173] Checking for cancel request [2026-06-07 00:28:23,377][ INFO][PID:1149173] Checking for cancel request [2026-06-07 00:28:28,378][ INFO][PID:1149173] Checking for cancel request [2026-06-07 00:28:33,380][ INFO][PID:1149173] Checking for cancel request [2026-06-07 00:28:38,381][ INFO][PID:1149173] Checking for cancel request [2026-06-07 00:28:43,382][ INFO][PID:1149173] Checking for cancel request [2026-06-07 00:28:48,384][ INFO][PID:1149173] Checking for cancel request [2026-06-07 00:28:53,385][ INFO][PID:1149173] Checking for cancel request [2026-06-07 00:28:58,386][ INFO][PID:1149173] Checking for cancel request [2026-06-07 00:29:03,387][ INFO][PID:1149173] Checking for cancel request [2026-06-07 00:29:08,390][ INFO][PID:1149173] Checking for cancel request [2026-06-07 00:29:13,391][ INFO][PID:1149173] Checking for cancel request [2026-06-07 00:29:18,392][ INFO][PID:1149173] Checking for cancel request [2026-06-07 00:29:23,394][ INFO][PID:1149173] Checking for cancel request [2026-06-07 00:29:28,395][ INFO][PID:1149173] Checking for cancel request [2026-06-07 00:29:33,396][ INFO][PID:1149173] Checking for cancel request [2026-06-07 00:29:38,398][ INFO][PID:1149173] Checking for cancel request [2026-06-07 00:29:43,399][ INFO][PID:1149173] Checking for cancel request [2026-06-07 00:29:48,400][ INFO][PID:1149173] Checking for cancel request [2026-06-07 00:29:53,401][ INFO][PID:1149173] Checking for cancel request [2026-06-07 00:29:58,403][ INFO][PID:1149173] Checking for cancel request [2026-06-07 00:30:03,404][ INFO][PID:1149173] Checking for cancel request [2026-06-07 00:30:08,405][ INFO][PID:1149173] Checking for cancel request [2026-06-07 00:30:13,406][ INFO][PID:1149173] Checking for cancel request [2026-06-07 00:30:18,408][ INFO][PID:1149173] Checking for cancel request [2026-06-07 00:30:23,409][ INFO][PID:1149173] Checking for cancel request [2026-06-07 00:30:28,411][ INFO][PID:1149173] Checking for cancel request [2026-06-07 00:30:33,412][ INFO][PID:1149173] Checking for cancel request [2026-06-07 00:30:38,414][ INFO][PID:1149173] Checking for cancel request [2026-06-07 00:30:43,415][ INFO][PID:1149173] Checking for cancel request [2026-06-07 00:30:48,416][ INFO][PID:1149173] Checking for cancel request [2026-06-07 00:30:53,417][ INFO][PID:1149173] Checking for cancel request [2026-06-07 00:30:58,418][ INFO][PID:1149173] Checking for cancel request [2026-06-07 00:31:03,420][ INFO][PID:1149173] Checking for cancel request [2026-06-07 00:31:08,421][ INFO][PID:1149173] Checking for cancel request [2026-06-07 00:31:13,422][ INFO][PID:1149173] Checking for cancel request [2026-06-07 00:31:18,424][ INFO][PID:1149173] Checking for cancel request [2026-06-07 00:31:23,439][ INFO][PID:1149173] Checking for cancel request [2026-06-07 00:31:28,440][ INFO][PID:1149173] Checking for cancel request [2026-06-07 00:31:33,472][ INFO][PID:1149173] Checking for cancel request [2026-06-07 00:31:38,473][ INFO][PID:1149173] Checking for cancel request [2026-06-07 00:31:43,474][ INFO][PID:1149173] Checking for cancel request [2026-06-07 00:31:48,475][ INFO][PID:1149173] Checking for cancel request [2026-06-07 00:31:53,477][ INFO][PID:1149173] Checking for cancel request [2026-06-07 00:31:58,478][ INFO][PID:1149173] Checking for cancel request [2026-06-07 00:32:03,480][ INFO][PID:1149173] Checking for cancel request [2026-06-07 00:32:08,481][ INFO][PID:1149173] Checking for cancel request [2026-06-07 00:32:13,482][ INFO][PID:1149173] Checking for cancel request [2026-06-07 00:32:18,484][ INFO][PID:1149173] Checking for cancel request [2026-06-07 00:32:23,485][ INFO][PID:1149173] Checking for cancel request [2026-06-07 00:32:28,486][ INFO][PID:1149173] Checking for cancel request [2026-06-07 00:32:33,488][ INFO][PID:1149173] Checking for cancel request [2026-06-07 00:32:38,489][ INFO][PID:1149173] Checking for cancel request [2026-06-07 00:32:43,491][ INFO][PID:1149173] Downloading results from builder [2026-06-07 00:32:43,492][ INFO][PID:1149173] rsyncing of mockbuilder@54.161.81.199:/var/lib/copr-rpmbuild/results/ to /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5260/srpm-builds/10574316 started [2026-06-07 00:32:43,493][ INFO][PID:1149173] Popen command started: /usr/bin/rsync -rltDvH --chmod=D755,F644 -e 'ssh -F /home/copr/.ssh/config' mockbuilder@54.161.81.199:/var/lib/copr-rpmbuild/results/ /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5260/srpm-builds/10574316/ &> /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5260/srpm-builds/10574316/build-10574316.rsync.log [2026-06-07 00:32:47,851][ INFO][PID:1149173] rsyncing finished. [2026-06-07 00:32:47,852][ INFO][PID:1149173] VM Release request [2026-06-07 00:32:47,870][ INFO][PID:1149173] Searching for 'success' file in resultdir [2026-06-07 00:32:47,872][ INFO][PID:1149173] Getting build details [2026-06-07 00:32:47,873][ INFO][PID:1149173] Retrieving SRPM info from /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5260/srpm-builds/10574316 [2026-06-07 00:32:47,876][ INFO][PID:1149173] SRPM URL: https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5260/srpm-builds/10574316/Sunshine-0.0.5260-1.src.rpm [2026-06-07 00:32:47,877][ INFO][PID:1149173] build details: {'srpm_url': 'https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5260/srpm-builds/10574316/Sunshine-0.0.5260-1.src.rpm', 'pkg_name': 'Sunshine', 'pkg_version': '0.0.5260-1'} [2026-06-07 00:32:47,879][ INFO][PID:1149173] Finished build: id=10574316 failed=False timeout=108000 destdir=/var/lib/copr/public_html/results/lizardbyte/pulls:pr:5260 chroot=srpm-builds [2026-06-07 00:32:47,882][ INFO][PID:1149173] Worker succeeded build, took 525.8293263912201 [2026-06-07 00:32:47,883][ INFO][PID:1149173] 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:5260", "submitter": null, "ended_on": 1780792367.8827264, "started_on": 1780791842.0534, "submitted_on": null, "status": 1, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10574316", "build_id": 10574316, "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\": \"tmpeepa6ydz\", \"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:5260/srpm-builds/10574316/Sunshine-0.0.5260-1.src.rpm", "uses_devel_repo": null, "sandbox": "lizardbyte/pulls--25d09933-6bc1-4d85-b518-6c0f77a46522", "results": { "architecture_specific_tags": { "fedora-42": {}, "fedora-43": {}, "fedora-44": {}, "fedora-rawhide": {}, "opensuse-leap-15.6": {} }, "name": "Sunshine", "epoch": null, "version": "0.0.5260", "release": "1" }, "appstream": false, "allow_user_ssh": null, "ssh_public_keys": null, "storage": null, "repos": [], "background": true, "distributions_in_build": [ "fedora-42", "fedora-43", "fedora-44", "fedora-rawhide", "opensuse-leap-15.6" ], "distributions_in_project": [ "fedora-42", "fedora-43", "fedora-44", "fedora-rawhide", "opensuse-leap-15.6" ], "destdir": "/var/lib/copr/public_html/results/lizardbyte/pulls:pr:5260", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5260", "result_dir": "10574316", "built_packages": "", "tags": [ "arch_x86_64" ], "rpmeta_prediction": null, "pkg_version": "0.0.5260-1", "id": 10574316, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2026-06-07 00:32:47,942][ INFO][PID:1149173] Sending fedora-messaging bus message in build.end [2026-06-07 00:32:47,975][ INFO][PID:1149173] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5260/srpm-builds/10574316/builder-live.log by gzip [2026-06-07 00:32:47,978][ INFO][PID:1149173] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5260/srpm-builds/10574316/builder-live.log' as PID 1196196 [2026-06-07 00:32:48,009][ INFO][PID:1149173] Finished after 0 seconds with exit code 0 (gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5260/srpm-builds/10574316/builder-live.log) [2026-06-07 00:32:48,010][ INFO][PID:1149173] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5260/srpm-builds/10574316/backend.log by gzip [2026-06-07 00:32:48,013][ INFO][PID:1149173] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5260/srpm-builds/10574316/backend.log' as PID 1196206