[2026-07-14 02:23:55,472][ INFO][PID:3314530] Marking build as starting [2026-07-14 02:23:55,522][ INFO][PID:3314530] Checking for cancel request [2026-07-14 02:23:55,524][ INFO][PID:3314530] VM allocation process starts [2026-07-14 02:23:55,534][ INFO][PID:3314530] Trying to allocate VM: ResallocHost, ticket_id=3887176, requested_tags=['arch_x86_64', 'copr_builder'] [2026-07-14 02:23:58,579][ INFO][PID:3314530] Allocated host ResallocHost, ticket_id=3887176, hostname=54.174.240.206, name=aws_x86_64_reserved_prod_13063092_20260714_021807, requested_tags=['arch_x86_64', 'copr_builder'] [2026-07-14 02:23:58,580][ INFO][PID:3314530] Allocating ssh connection to builder [2026-07-14 02:23:58,581][ INFO][PID:3314530] Checking that builder machine is OK [2026-07-14 02:23:58,904][ INFO][PID:3314530] Installed copr-rpmbuild version: 1.8 [2026-07-14 02:23:58,905][ INFO][PID:3314530] Running remote command: copr-builder-ready srpm-builds [2026-07-14 02:23:59,131][ INFO][PID:3314530] Red Hat subscription not needed for srpm-builds Builder is ready to be used [2026-07-14 02:23:59,132][ INFO][PID:3314530] Filling build.info file with builder info [2026-07-14 02:23:59,133][ INFO][PID:3314530] Checking for cancel request [2026-07-14 02:23:59,134][ INFO][PID:3314530] 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:5368", "submitter": null, "ended_on": null, "started_on": 1783995839.13442, "submitted_on": null, "status": 3, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10715196", "build_id": 10715196, "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\": \"tmpzazku9ql\", \"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--e3804a6c-3927-4e1e-bdbe-51133d78abb1", "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:5368", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5368", "result_dir": "10715196", "built_packages": "", "tags": [ "arch_x86_64" ], "rpmeta_prediction": null, "id": 10715196, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2026-07-14 02:23:59,180][ INFO][PID:3314530] Sending fedora-messaging bus message in build.start [2026-07-14 02:23:59,667][ INFO][PID:3314530] Sending fedora-messaging bus message in chroot.start [2026-07-14 02:23:59,698][ INFO][PID:3314530] Starting remote build: copr-rpmbuild --verbose --drop-resultdir --srpm --task-url https://copr.fedorainfracloud.org/backend/get-srpm-build-task/10715196 --detached [2026-07-14 02:24:00,213][ INFO][PID:3314530] The copr-rpmbuild seems started, per: stdout: stderr: Warning: Permanently added '54.174.240.206' (ED25519) to the list of known hosts. [2026-07-14 02:24:00,215][ INFO][PID:3314530] Downloading the builder-live.log file, attempt 1 [2026-07-14 02:24:00,217][ INFO][PID:3314530] Popen command started: ssh -F /home/copr/.ssh/config mockbuilder@54.174.240.206 copr-rpmbuild-log [2026-07-14 02:24:05,223][ INFO][PID:3314530] Periodic builder liveness probe: alive [2026-07-14 02:24:05,224][ INFO][PID:3314530] Checking for cancel request [2026-07-14 02:24:10,225][ INFO][PID:3314530] Checking for cancel request [2026-07-14 02:24:15,226][ INFO][PID:3314530] Checking for cancel request [2026-07-14 02:24:20,229][ INFO][PID:3314530] Checking for cancel request [2026-07-14 02:24:25,230][ INFO][PID:3314530] Checking for cancel request [2026-07-14 02:24:30,231][ INFO][PID:3314530] Checking for cancel request [2026-07-14 02:24:35,233][ INFO][PID:3314530] Checking for cancel request [2026-07-14 02:24:40,234][ INFO][PID:3314530] Checking for cancel request [2026-07-14 02:24:45,235][ INFO][PID:3314530] Checking for cancel request [2026-07-14 02:24:50,236][ INFO][PID:3314530] Checking for cancel request [2026-07-14 02:24:55,238][ INFO][PID:3314530] Checking for cancel request [2026-07-14 02:25:00,240][ INFO][PID:3314530] Checking for cancel request [2026-07-14 02:25:05,241][ INFO][PID:3314530] Checking for cancel request [2026-07-14 02:25:10,242][ INFO][PID:3314530] Checking for cancel request [2026-07-14 02:25:15,244][ INFO][PID:3314530] Checking for cancel request [2026-07-14 02:25:20,247][ INFO][PID:3314530] Checking for cancel request [2026-07-14 02:25:25,248][ INFO][PID:3314530] Checking for cancel request [2026-07-14 02:25:30,249][ INFO][PID:3314530] Checking for cancel request [2026-07-14 02:25:35,251][ INFO][PID:3314530] Checking for cancel request [2026-07-14 02:25:40,253][ INFO][PID:3314530] Checking for cancel request [2026-07-14 02:25:45,256][ INFO][PID:3314530] Checking for cancel request [2026-07-14 02:25:50,258][ INFO][PID:3314530] Checking for cancel request [2026-07-14 02:25:55,259][ INFO][PID:3314530] Checking for cancel request [2026-07-14 02:26:00,264][ INFO][PID:3314530] Checking for cancel request [2026-07-14 02:26:05,265][ INFO][PID:3314530] Checking for cancel request [2026-07-14 02:26:10,266][ INFO][PID:3314530] Checking for cancel request [2026-07-14 02:26:15,267][ INFO][PID:3314530] Checking for cancel request [2026-07-14 02:26:20,269][ INFO][PID:3314530] Checking for cancel request [2026-07-14 02:26:25,270][ INFO][PID:3314530] Checking for cancel request [2026-07-14 02:26:30,272][ INFO][PID:3314530] Checking for cancel request [2026-07-14 02:26:35,273][ INFO][PID:3314530] Checking for cancel request [2026-07-14 02:26:40,275][ INFO][PID:3314530] Checking for cancel request [2026-07-14 02:26:45,277][ INFO][PID:3314530] Checking for cancel request [2026-07-14 02:26:50,278][ INFO][PID:3314530] Checking for cancel request [2026-07-14 02:26:55,280][ INFO][PID:3314530] Checking for cancel request [2026-07-14 02:27:00,282][ INFO][PID:3314530] Checking for cancel request [2026-07-14 02:27:05,287][ INFO][PID:3314530] Checking for cancel request [2026-07-14 02:27:10,290][ INFO][PID:3314530] Checking for cancel request [2026-07-14 02:27:15,292][ INFO][PID:3314530] Checking for cancel request [2026-07-14 02:27:20,293][ INFO][PID:3314530] Checking for cancel request [2026-07-14 02:27:25,294][ INFO][PID:3314530] Checking for cancel request [2026-07-14 02:27:30,296][ INFO][PID:3314530] Checking for cancel request [2026-07-14 02:27:35,298][ INFO][PID:3314530] Checking for cancel request [2026-07-14 02:27:40,316][ INFO][PID:3314530] Checking for cancel request [2026-07-14 02:27:45,321][ INFO][PID:3314530] Checking for cancel request [2026-07-14 02:27:50,327][ INFO][PID:3314530] Checking for cancel request [2026-07-14 02:27:55,328][ INFO][PID:3314530] Checking for cancel request [2026-07-14 02:28:00,330][ INFO][PID:3314530] Checking for cancel request [2026-07-14 02:28:05,334][ INFO][PID:3314530] Checking for cancel request [2026-07-14 02:28:10,335][ INFO][PID:3314530] Checking for cancel request [2026-07-14 02:28:15,337][ INFO][PID:3314530] Checking for cancel request [2026-07-14 02:28:20,342][ INFO][PID:3314530] Checking for cancel request [2026-07-14 02:28:25,346][ INFO][PID:3314530] Checking for cancel request [2026-07-14 02:28:30,356][ INFO][PID:3314530] Checking for cancel request [2026-07-14 02:28:35,358][ INFO][PID:3314530] Checking for cancel request [2026-07-14 02:28:40,360][ INFO][PID:3314530] Checking for cancel request [2026-07-14 02:28:45,361][ INFO][PID:3314530] Checking for cancel request [2026-07-14 02:28:50,363][ INFO][PID:3314530] Checking for cancel request [2026-07-14 02:28:55,365][ INFO][PID:3314530] Checking for cancel request [2026-07-14 02:29:00,366][ INFO][PID:3314530] Checking for cancel request [2026-07-14 02:29:05,368][ INFO][PID:3314530] Checking for cancel request [2026-07-14 02:29:10,369][ INFO][PID:3314530] Checking for cancel request [2026-07-14 02:29:15,371][ INFO][PID:3314530] Checking for cancel request [2026-07-14 02:29:20,372][ INFO][PID:3314530] Checking for cancel request [2026-07-14 02:29:25,374][ INFO][PID:3314530] Checking for cancel request [2026-07-14 02:29:30,376][ INFO][PID:3314530] Checking for cancel request [2026-07-14 02:29:35,378][ INFO][PID:3314530] Checking for cancel request [2026-07-14 02:29:40,379][ INFO][PID:3314530] Checking for cancel request [2026-07-14 02:29:45,386][ INFO][PID:3314530] Checking for cancel request [2026-07-14 02:29:50,391][ INFO][PID:3314530] Checking for cancel request [2026-07-14 02:29:55,394][ INFO][PID:3314530] Checking for cancel request [2026-07-14 02:30:00,395][ INFO][PID:3314530] Checking for cancel request [2026-07-14 02:30:05,396][ INFO][PID:3314530] Checking for cancel request [2026-07-14 02:30:10,398][ INFO][PID:3314530] Checking for cancel request [2026-07-14 02:30:15,404][ INFO][PID:3314530] Checking for cancel request [2026-07-14 02:30:20,406][ INFO][PID:3314530] Checking for cancel request [2026-07-14 02:30:25,417][ INFO][PID:3314530] Checking for cancel request [2026-07-14 02:30:30,448][ INFO][PID:3314530] Checking for cancel request [2026-07-14 02:30:35,449][ INFO][PID:3314530] Checking for cancel request [2026-07-14 02:30:40,451][ INFO][PID:3314530] Checking for cancel request [2026-07-14 02:30:45,454][ INFO][PID:3314530] Checking for cancel request [2026-07-14 02:30:50,458][ INFO][PID:3314530] Checking for cancel request [2026-07-14 02:30:55,459][ INFO][PID:3314530] Checking for cancel request [2026-07-14 02:31:00,462][ INFO][PID:3314530] Checking for cancel request [2026-07-14 02:31:05,501][ INFO][PID:3314530] Checking for cancel request [2026-07-14 02:31:10,526][ INFO][PID:3314530] Checking for cancel request [2026-07-14 02:31:15,530][ INFO][PID:3314530] Checking for cancel request [2026-07-14 02:31:20,534][ INFO][PID:3314530] Checking for cancel request [2026-07-14 02:31:25,541][ INFO][PID:3314530] Checking for cancel request [2026-07-14 02:31:30,543][ INFO][PID:3314530] Checking for cancel request [2026-07-14 02:31:35,545][ INFO][PID:3314530] Checking for cancel request [2026-07-14 02:31:40,571][ INFO][PID:3314530] Checking for cancel request [2026-07-14 02:31:45,584][ INFO][PID:3314530] Checking for cancel request [2026-07-14 02:31:50,588][ INFO][PID:3314530] Checking for cancel request [2026-07-14 02:31:55,601][ INFO][PID:3314530] Checking for cancel request [2026-07-14 02:32:00,604][ INFO][PID:3314530] Checking for cancel request [2026-07-14 02:32:05,609][ INFO][PID:3314530] Checking for cancel request [2026-07-14 02:32:10,627][ INFO][PID:3314530] Checking for cancel request [2026-07-14 02:32:15,629][ INFO][PID:3314530] Checking for cancel request [2026-07-14 02:32:20,632][ INFO][PID:3314530] Checking for cancel request [2026-07-14 02:32:25,646][ INFO][PID:3314530] Checking for cancel request [2026-07-14 02:32:30,648][ INFO][PID:3314530] Checking for cancel request [2026-07-14 02:32:35,650][ INFO][PID:3314530] Checking for cancel request [2026-07-14 02:32:40,652][ INFO][PID:3314530] Checking for cancel request [2026-07-14 02:32:45,655][ INFO][PID:3314530] Checking for cancel request [2026-07-14 02:32:50,657][ INFO][PID:3314530] Checking for cancel request [2026-07-14 02:32:55,659][ INFO][PID:3314530] Checking for cancel request [2026-07-14 02:33:00,660][ INFO][PID:3314530] Checking for cancel request [2026-07-14 02:33:05,662][ INFO][PID:3314530] Checking for cancel request [2026-07-14 02:33:10,663][ INFO][PID:3314530] Checking for cancel request [2026-07-14 02:33:15,665][ INFO][PID:3314530] Checking for cancel request [2026-07-14 02:33:20,666][ INFO][PID:3314530] Checking for cancel request [2026-07-14 02:33:25,667][ INFO][PID:3314530] Checking for cancel request [2026-07-14 02:33:30,669][ INFO][PID:3314530] Checking for cancel request [2026-07-14 02:33:35,671][ INFO][PID:3314530] Checking for cancel request [2026-07-14 02:33:40,672][ INFO][PID:3314530] Checking for cancel request [2026-07-14 02:33:45,674][ INFO][PID:3314530] Checking for cancel request [2026-07-14 02:33:50,675][ INFO][PID:3314530] Checking for cancel request [2026-07-14 02:33:55,677][ INFO][PID:3314530] Checking for cancel request [2026-07-14 02:34:00,678][ INFO][PID:3314530] Checking for cancel request [2026-07-14 02:34:05,973][ INFO][PID:3314530] Periodic builder liveness probe: alive [2026-07-14 02:34:06,003][ INFO][PID:3314530] Checking for cancel request [2026-07-14 02:34:11,005][ INFO][PID:3314530] Checking for cancel request [2026-07-14 02:34:16,006][ INFO][PID:3314530] Checking for cancel request [2026-07-14 02:34:21,007][ INFO][PID:3314530] Checking for cancel request [2026-07-14 02:34:26,009][ INFO][PID:3314530] Checking for cancel request [2026-07-14 02:34:31,010][ INFO][PID:3314530] Checking for cancel request [2026-07-14 02:34:36,012][ INFO][PID:3314530] Checking for cancel request [2026-07-14 02:34:37,837][ INFO][PID:3314530] Downloading results from builder [2026-07-14 02:34:37,869][ INFO][PID:3314530] rsyncing of mockbuilder@54.174.240.206:/var/lib/copr-rpmbuild/results/ to /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5368/srpm-builds/10715196 started [2026-07-14 02:34:37,923][ INFO][PID:3314530] Popen command started: /usr/bin/rsync -rltDvH --chmod=D755,F644 -e 'ssh -F /home/copr/.ssh/config' mockbuilder@54.174.240.206:/var/lib/copr-rpmbuild/results/ /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5368/srpm-builds/10715196/ &> /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5368/srpm-builds/10715196/build-10715196.rsync.log [2026-07-14 02:34:43,168][ INFO][PID:3314530] rsyncing finished. [2026-07-14 02:34:43,173][ INFO][PID:3314530] VM Release request [2026-07-14 02:34:43,201][ INFO][PID:3314530] Searching for 'success' file in resultdir [2026-07-14 02:34:43,268][ INFO][PID:3314530] Getting build details [2026-07-14 02:34:43,274][ INFO][PID:3314530] Retrieving SRPM info from /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5368/srpm-builds/10715196 [2026-07-14 02:34:43,352][ INFO][PID:3314530] SRPM URL: https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5368/srpm-builds/10715196/Sunshine-0.0.5368-1.src.rpm [2026-07-14 02:34:43,356][ INFO][PID:3314530] build details: {'srpm_url': 'https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5368/srpm-builds/10715196/Sunshine-0.0.5368-1.src.rpm', 'pkg_name': 'Sunshine', 'pkg_version': '0.0.5368-1'} [2026-07-14 02:34:43,372][ INFO][PID:3314530] Finished build: id=10715196 failed=False timeout=108000 destdir=/var/lib/copr/public_html/results/lizardbyte/pulls:pr:5368 chroot=srpm-builds [2026-07-14 02:34:43,473][ INFO][PID:3314530] Worker succeeded build, took 644.3387413024902 [2026-07-14 02:34:43,492][ INFO][PID:3314530] 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:5368", "submitter": null, "ended_on": 1783996483.4731612, "started_on": 1783995839.13442, "submitted_on": null, "status": 1, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10715196", "build_id": 10715196, "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\": \"tmpzazku9ql\", \"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:5368/srpm-builds/10715196/Sunshine-0.0.5368-1.src.rpm", "uses_devel_repo": null, "sandbox": "lizardbyte/pulls--e3804a6c-3927-4e1e-bdbe-51133d78abb1", "results": { "architecture_specific_tags": { "fedora-43": {}, "fedora-44": {}, "fedora-rawhide": {}, "opensuse-leap-15.6": {} }, "name": "Sunshine", "epoch": null, "version": "0.0.5368", "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:5368", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5368", "result_dir": "10715196", "built_packages": "", "tags": [ "arch_x86_64" ], "rpmeta_prediction": null, "pkg_version": "0.0.5368-1", "id": 10715196, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2026-07-14 02:34:44,362][ INFO][PID:3314530] Sending fedora-messaging bus message in build.end [2026-07-14 02:34:44,794][ INFO][PID:3314530] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5368/srpm-builds/10715196/builder-live.log by gzip [2026-07-14 02:34:44,817][ INFO][PID:3314530] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5368/srpm-builds/10715196/builder-live.log' as PID 3390945 [2026-07-14 02:34:44,840][ INFO][PID:3314530] Finished after 0 seconds with exit code 0 (gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5368/srpm-builds/10715196/builder-live.log) [2026-07-14 02:34:44,846][ INFO][PID:3314530] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5368/srpm-builds/10715196/backend.log by gzip [2026-07-14 02:34:44,847][ INFO][PID:3314530] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5368/srpm-builds/10715196/backend.log' as PID 3390949