[2026-06-30 22:07:50,346][ INFO][PID:3775647] Marking build as starting [2026-06-30 22:07:50,427][ INFO][PID:3775647] Checking for cancel request [2026-06-30 22:07:50,429][ INFO][PID:3775647] VM allocation process starts [2026-06-30 22:07:50,453][ INFO][PID:3775647] Trying to allocate VM: ResallocHost, ticket_id=3690007, requested_tags=['arch_x86_64', 'copr_builder'] [2026-06-30 22:07:55,462][ INFO][PID:3775647] Checking for cancel request [2026-06-30 22:07:56,513][ INFO][PID:3775647] Allocated host ResallocHost, ticket_id=3690007, hostname=35.171.86.81, name=aws_x86_64_reserved_prod_12807122_20260630_220624, requested_tags=['arch_x86_64', 'copr_builder'] [2026-06-30 22:07:56,514][ INFO][PID:3775647] Allocating ssh connection to builder [2026-06-30 22:07:56,514][ INFO][PID:3775647] Checking that builder machine is OK [2026-06-30 22:07:56,865][ INFO][PID:3775647] Installed copr-rpmbuild version: 1.8 [2026-06-30 22:07:56,866][ INFO][PID:3775647] Running remote command: copr-builder-ready srpm-builds [2026-06-30 22:07:57,054][ INFO][PID:3775647] Red Hat subscription not needed for srpm-builds Builder is ready to be used [2026-06-30 22:07:57,055][ INFO][PID:3775647] Filling build.info file with builder info [2026-06-30 22:07:57,056][ INFO][PID:3775647] Checking for cancel request [2026-06-30 22:07:57,058][ INFO][PID:3775647] 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:5356", "submitter": null, "ended_on": null, "started_on": 1782857277.0579026, "submitted_on": null, "status": 3, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10666078", "build_id": 10666078, "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\": \"tmpzeh87yg7\", \"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--c2c0aaad-7fc3-40b8-bdb7-0d51926fb7d1", "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:5356", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5356", "result_dir": "10666078", "built_packages": "", "tags": [ "arch_x86_64" ], "rpmeta_prediction": null, "id": 10666078, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2026-06-30 22:07:57,100][ INFO][PID:3775647] Sending fedora-messaging bus message in build.start [2026-06-30 22:07:57,568][ INFO][PID:3775647] Sending fedora-messaging bus message in chroot.start [2026-06-30 22:07:57,595][ INFO][PID:3775647] Starting remote build: copr-rpmbuild --verbose --drop-resultdir --srpm --task-url https://copr.fedorainfracloud.org/backend/get-srpm-build-task/10666078 --detached [2026-06-30 22:07:58,154][ INFO][PID:3775647] The copr-rpmbuild seems started, per: stdout: stderr: Warning: Permanently added '35.171.86.81' (ED25519) to the list of known hosts. [2026-06-30 22:07:58,155][ INFO][PID:3775647] Downloading the builder-live.log file, attempt 1 [2026-06-30 22:07:58,157][ INFO][PID:3775647] Popen command started: ssh -F /home/copr/.ssh/config mockbuilder@35.171.86.81 copr-rpmbuild-log [2026-06-30 22:08:03,162][ INFO][PID:3775647] Periodic builder liveness probe: alive [2026-06-30 22:08:03,163][ INFO][PID:3775647] Checking for cancel request [2026-06-30 22:08:08,164][ INFO][PID:3775647] Checking for cancel request [2026-06-30 22:08:13,166][ INFO][PID:3775647] Checking for cancel request [2026-06-30 22:08:18,168][ INFO][PID:3775647] Checking for cancel request [2026-06-30 22:08:23,169][ INFO][PID:3775647] Checking for cancel request [2026-06-30 22:08:28,171][ INFO][PID:3775647] Checking for cancel request [2026-06-30 22:08:33,173][ INFO][PID:3775647] Checking for cancel request [2026-06-30 22:08:38,175][ INFO][PID:3775647] Checking for cancel request [2026-06-30 22:08:43,177][ INFO][PID:3775647] Checking for cancel request [2026-06-30 22:08:48,180][ INFO][PID:3775647] Checking for cancel request [2026-06-30 22:08:53,182][ INFO][PID:3775647] Checking for cancel request [2026-06-30 22:08:58,184][ INFO][PID:3775647] Checking for cancel request [2026-06-30 22:09:03,185][ INFO][PID:3775647] Checking for cancel request [2026-06-30 22:09:08,187][ INFO][PID:3775647] Checking for cancel request [2026-06-30 22:09:13,188][ INFO][PID:3775647] Checking for cancel request [2026-06-30 22:09:18,190][ INFO][PID:3775647] Checking for cancel request [2026-06-30 22:09:23,191][ INFO][PID:3775647] Checking for cancel request [2026-06-30 22:09:28,192][ INFO][PID:3775647] Checking for cancel request [2026-06-30 22:09:33,194][ INFO][PID:3775647] Checking for cancel request [2026-06-30 22:09:38,196][ INFO][PID:3775647] Checking for cancel request [2026-06-30 22:09:43,197][ INFO][PID:3775647] Checking for cancel request [2026-06-30 22:09:48,200][ INFO][PID:3775647] Checking for cancel request [2026-06-30 22:09:53,202][ INFO][PID:3775647] Checking for cancel request [2026-06-30 22:09:58,203][ INFO][PID:3775647] Checking for cancel request [2026-06-30 22:10:03,205][ INFO][PID:3775647] Checking for cancel request [2026-06-30 22:10:08,206][ INFO][PID:3775647] Checking for cancel request [2026-06-30 22:10:13,209][ INFO][PID:3775647] Checking for cancel request [2026-06-30 22:10:18,211][ INFO][PID:3775647] Checking for cancel request [2026-06-30 22:10:23,212][ INFO][PID:3775647] Checking for cancel request [2026-06-30 22:10:28,214][ INFO][PID:3775647] Checking for cancel request [2026-06-30 22:10:33,215][ INFO][PID:3775647] Checking for cancel request [2026-06-30 22:10:38,217][ INFO][PID:3775647] Checking for cancel request [2026-06-30 22:10:43,219][ INFO][PID:3775647] Checking for cancel request [2026-06-30 22:10:48,220][ INFO][PID:3775647] Checking for cancel request [2026-06-30 22:10:53,229][ INFO][PID:3775647] Checking for cancel request [2026-06-30 22:10:58,231][ INFO][PID:3775647] Checking for cancel request [2026-06-30 22:11:03,232][ INFO][PID:3775647] Checking for cancel request [2026-06-30 22:11:08,233][ INFO][PID:3775647] Checking for cancel request [2026-06-30 22:11:13,235][ INFO][PID:3775647] Checking for cancel request [2026-06-30 22:11:18,236][ INFO][PID:3775647] Checking for cancel request [2026-06-30 22:11:23,238][ INFO][PID:3775647] Checking for cancel request [2026-06-30 22:11:28,239][ INFO][PID:3775647] Checking for cancel request [2026-06-30 22:11:33,240][ INFO][PID:3775647] Checking for cancel request [2026-06-30 22:11:38,242][ INFO][PID:3775647] Checking for cancel request [2026-06-30 22:11:43,244][ INFO][PID:3775647] Checking for cancel request [2026-06-30 22:11:48,245][ INFO][PID:3775647] Checking for cancel request [2026-06-30 22:11:53,247][ INFO][PID:3775647] Checking for cancel request [2026-06-30 22:11:58,249][ INFO][PID:3775647] Checking for cancel request [2026-06-30 22:12:03,251][ INFO][PID:3775647] Checking for cancel request [2026-06-30 22:12:08,253][ INFO][PID:3775647] Checking for cancel request [2026-06-30 22:12:13,255][ INFO][PID:3775647] Checking for cancel request [2026-06-30 22:12:18,256][ INFO][PID:3775647] Checking for cancel request [2026-06-30 22:12:23,258][ INFO][PID:3775647] Checking for cancel request [2026-06-30 22:12:28,259][ INFO][PID:3775647] Checking for cancel request [2026-06-30 22:12:33,261][ INFO][PID:3775647] Checking for cancel request [2026-06-30 22:12:38,262][ INFO][PID:3775647] Checking for cancel request [2026-06-30 22:12:43,263][ INFO][PID:3775647] Checking for cancel request [2026-06-30 22:12:48,265][ INFO][PID:3775647] Checking for cancel request [2026-06-30 22:12:53,266][ INFO][PID:3775647] Checking for cancel request [2026-06-30 22:12:58,268][ INFO][PID:3775647] Checking for cancel request [2026-06-30 22:13:03,269][ INFO][PID:3775647] Checking for cancel request [2026-06-30 22:13:08,270][ INFO][PID:3775647] Checking for cancel request [2026-06-30 22:13:13,272][ INFO][PID:3775647] Checking for cancel request [2026-06-30 22:13:18,273][ INFO][PID:3775647] Checking for cancel request [2026-06-30 22:13:23,275][ INFO][PID:3775647] Checking for cancel request [2026-06-30 22:13:28,276][ INFO][PID:3775647] Checking for cancel request [2026-06-30 22:13:33,277][ INFO][PID:3775647] Checking for cancel request [2026-06-30 22:13:38,278][ INFO][PID:3775647] Checking for cancel request [2026-06-30 22:13:43,280][ INFO][PID:3775647] Checking for cancel request [2026-06-30 22:13:48,281][ INFO][PID:3775647] Checking for cancel request [2026-06-30 22:13:53,284][ INFO][PID:3775647] Checking for cancel request [2026-06-30 22:13:58,291][ INFO][PID:3775647] Checking for cancel request [2026-06-30 22:14:03,293][ INFO][PID:3775647] Checking for cancel request [2026-06-30 22:14:08,300][ INFO][PID:3775647] Checking for cancel request [2026-06-30 22:14:13,309][ INFO][PID:3775647] Checking for cancel request [2026-06-30 22:14:18,315][ INFO][PID:3775647] Checking for cancel request [2026-06-30 22:14:23,316][ INFO][PID:3775647] Checking for cancel request [2026-06-30 22:14:28,318][ INFO][PID:3775647] Checking for cancel request [2026-06-30 22:14:33,319][ INFO][PID:3775647] Checking for cancel request [2026-06-30 22:14:38,321][ INFO][PID:3775647] Checking for cancel request [2026-06-30 22:14:43,322][ INFO][PID:3775647] Checking for cancel request [2026-06-30 22:14:48,323][ INFO][PID:3775647] Checking for cancel request [2026-06-30 22:14:53,324][ INFO][PID:3775647] Checking for cancel request [2026-06-30 22:14:58,326][ INFO][PID:3775647] Checking for cancel request [2026-06-30 22:15:03,327][ INFO][PID:3775647] Checking for cancel request [2026-06-30 22:15:08,328][ INFO][PID:3775647] Checking for cancel request [2026-06-30 22:15:13,330][ INFO][PID:3775647] Checking for cancel request [2026-06-30 22:15:18,331][ INFO][PID:3775647] Checking for cancel request [2026-06-30 22:15:23,332][ INFO][PID:3775647] Checking for cancel request [2026-06-30 22:15:28,334][ INFO][PID:3775647] Checking for cancel request [2026-06-30 22:15:33,335][ INFO][PID:3775647] Checking for cancel request [2026-06-30 22:15:38,336][ INFO][PID:3775647] Checking for cancel request [2026-06-30 22:15:43,337][ INFO][PID:3775647] Checking for cancel request [2026-06-30 22:15:48,339][ INFO][PID:3775647] Checking for cancel request [2026-06-30 22:15:53,583][ INFO][PID:3775647] Checking for cancel request [2026-06-30 22:15:58,585][ INFO][PID:3775647] Checking for cancel request [2026-06-30 22:16:03,586][ INFO][PID:3775647] Checking for cancel request [2026-06-30 22:16:08,587][ INFO][PID:3775647] Checking for cancel request [2026-06-30 22:16:13,589][ INFO][PID:3775647] Checking for cancel request [2026-06-30 22:16:18,590][ INFO][PID:3775647] Checking for cancel request [2026-06-30 22:16:23,591][ INFO][PID:3775647] Checking for cancel request [2026-06-30 22:16:28,593][ INFO][PID:3775647] Checking for cancel request [2026-06-30 22:16:33,594][ INFO][PID:3775647] Checking for cancel request [2026-06-30 22:16:38,595][ INFO][PID:3775647] Checking for cancel request [2026-06-30 22:16:43,597][ INFO][PID:3775647] Checking for cancel request [2026-06-30 22:16:48,598][ INFO][PID:3775647] Checking for cancel request [2026-06-30 22:16:53,599][ INFO][PID:3775647] Checking for cancel request [2026-06-30 22:16:58,601][ INFO][PID:3775647] Checking for cancel request [2026-06-30 22:17:03,602][ INFO][PID:3775647] Checking for cancel request [2026-06-30 22:17:08,603][ INFO][PID:3775647] Checking for cancel request [2026-06-30 22:17:13,604][ INFO][PID:3775647] Checking for cancel request [2026-06-30 22:17:18,606][ INFO][PID:3775647] Checking for cancel request [2026-06-30 22:17:23,607][ INFO][PID:3775647] Checking for cancel request [2026-06-30 22:17:28,608][ INFO][PID:3775647] Checking for cancel request [2026-06-30 22:17:33,609][ INFO][PID:3775647] Checking for cancel request [2026-06-30 22:17:38,611][ INFO][PID:3775647] Checking for cancel request [2026-06-30 22:17:43,612][ INFO][PID:3775647] Checking for cancel request [2026-06-30 22:17:48,613][ INFO][PID:3775647] Checking for cancel request [2026-06-30 22:17:52,428][ INFO][PID:3775647] Downloading results from builder [2026-06-30 22:17:52,429][ INFO][PID:3775647] rsyncing of mockbuilder@35.171.86.81:/var/lib/copr-rpmbuild/results/ to /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5356/srpm-builds/10666078 started [2026-06-30 22:17:52,430][ INFO][PID:3775647] Popen command started: /usr/bin/rsync -rltDvH --chmod=D755,F644 -e 'ssh -F /home/copr/.ssh/config' mockbuilder@35.171.86.81:/var/lib/copr-rpmbuild/results/ /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5356/srpm-builds/10666078/ &> /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5356/srpm-builds/10666078/build-10666078.rsync.log [2026-06-30 22:17:57,568][ INFO][PID:3775647] rsyncing finished. [2026-06-30 22:17:57,569][ INFO][PID:3775647] VM Release request [2026-06-30 22:17:57,579][ INFO][PID:3775647] Searching for 'success' file in resultdir [2026-06-30 22:17:57,580][ INFO][PID:3775647] Getting build details [2026-06-30 22:17:57,581][ INFO][PID:3775647] Retrieving SRPM info from /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5356/srpm-builds/10666078 [2026-06-30 22:17:57,582][ INFO][PID:3775647] SRPM URL: https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5356/srpm-builds/10666078/Sunshine-0.0.5356-1.src.rpm [2026-06-30 22:17:57,582][ INFO][PID:3775647] build details: {'srpm_url': 'https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5356/srpm-builds/10666078/Sunshine-0.0.5356-1.src.rpm', 'pkg_name': 'Sunshine', 'pkg_version': '0.0.5356-1'} [2026-06-30 22:17:57,583][ INFO][PID:3775647] Finished build: id=10666078 failed=False timeout=108000 destdir=/var/lib/copr/public_html/results/lizardbyte/pulls:pr:5356 chroot=srpm-builds [2026-06-30 22:17:57,585][ INFO][PID:3775647] Worker succeeded build, took 600.5279817581177 [2026-06-30 22:17:57,586][ INFO][PID:3775647] 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:5356", "submitter": null, "ended_on": 1782857877.5858843, "started_on": 1782857277.0579026, "submitted_on": null, "status": 1, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10666078", "build_id": 10666078, "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\": \"tmpzeh87yg7\", \"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:5356/srpm-builds/10666078/Sunshine-0.0.5356-1.src.rpm", "uses_devel_repo": null, "sandbox": "lizardbyte/pulls--c2c0aaad-7fc3-40b8-bdb7-0d51926fb7d1", "results": { "architecture_specific_tags": { "fedora-43": {}, "fedora-44": {}, "fedora-rawhide": {}, "opensuse-leap-15.6": {} }, "name": "Sunshine", "epoch": null, "version": "0.0.5356", "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:5356", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5356", "result_dir": "10666078", "built_packages": "", "tags": [ "arch_x86_64" ], "rpmeta_prediction": null, "pkg_version": "0.0.5356-1", "id": 10666078, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2026-06-30 22:17:57,637][ INFO][PID:3775647] Sending fedora-messaging bus message in build.end [2026-06-30 22:17:57,666][ INFO][PID:3775647] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5356/srpm-builds/10666078/builder-live.log by gzip [2026-06-30 22:17:57,668][ INFO][PID:3775647] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5356/srpm-builds/10666078/builder-live.log' as PID 3835359 [2026-06-30 22:17:57,695][ INFO][PID:3775647] Finished after 0 seconds with exit code 0 (gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5356/srpm-builds/10666078/builder-live.log) [2026-06-30 22:17:57,696][ INFO][PID:3775647] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5356/srpm-builds/10666078/backend.log by gzip [2026-06-30 22:17:57,698][ INFO][PID:3775647] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5356/srpm-builds/10666078/backend.log' as PID 3835363