[2026-07-10 12:04:01,498][ INFO][PID:1815047] Marking build as starting [2026-07-10 12:04:01,545][ INFO][PID:1815047] Checking for cancel request [2026-07-10 12:04:01,546][ INFO][PID:1815047] VM allocation process starts [2026-07-10 12:04:01,560][ INFO][PID:1815047] Trying to allocate VM: ResallocHost, ticket_id=3848200, requested_tags=['arch_x86_64', 'copr_builder'] [2026-07-10 12:04:04,576][ INFO][PID:1815047] Allocated host ResallocHost, ticket_id=3848200, hostname=34.238.27.252, name=aws_x86_64_reserved_prod_13016836_20260710_115107, requested_tags=['arch_x86_64', 'copr_builder'] [2026-07-10 12:04:04,576][ INFO][PID:1815047] Allocating ssh connection to builder [2026-07-10 12:04:04,577][ INFO][PID:1815047] Checking that builder machine is OK [2026-07-10 12:04:04,921][ INFO][PID:1815047] Installed copr-rpmbuild version: 1.8 [2026-07-10 12:04:04,922][ INFO][PID:1815047] Running remote command: copr-builder-ready srpm-builds [2026-07-10 12:04:05,105][ INFO][PID:1815047] Red Hat subscription not needed for srpm-builds Builder is ready to be used [2026-07-10 12:04:05,106][ INFO][PID:1815047] Filling build.info file with builder info [2026-07-10 12:04:05,106][ INFO][PID:1815047] Checking for cancel request [2026-07-10 12:04:05,107][ INFO][PID:1815047] 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:5396", "submitter": null, "ended_on": null, "started_on": 1783685045.107826, "submitted_on": null, "status": 3, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10705898", "build_id": 10705898, "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\": \"tmpanvq_1cy\", \"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--ed2e6ec4-ecbc-422e-b231-a199d74bd152", "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:5396", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5396", "result_dir": "10705898", "built_packages": "", "tags": [ "arch_x86_64" ], "rpmeta_prediction": null, "id": 10705898, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2026-07-10 12:04:05,145][ INFO][PID:1815047] Sending fedora-messaging bus message in build.start [2026-07-10 12:04:05,604][ INFO][PID:1815047] Sending fedora-messaging bus message in chroot.start [2026-07-10 12:04:05,632][ INFO][PID:1815047] Starting remote build: copr-rpmbuild --verbose --drop-resultdir --srpm --task-url https://copr.fedorainfracloud.org/backend/get-srpm-build-task/10705898 --detached [2026-07-10 12:04:06,121][ INFO][PID:1815047] The copr-rpmbuild seems started, per: stdout: stderr: Warning: Permanently added '34.238.27.252' (ED25519) to the list of known hosts. [2026-07-10 12:04:06,122][ INFO][PID:1815047] Downloading the builder-live.log file, attempt 1 [2026-07-10 12:04:06,124][ INFO][PID:1815047] Popen command started: ssh -F /home/copr/.ssh/config mockbuilder@34.238.27.252 copr-rpmbuild-log [2026-07-10 12:04:11,129][ INFO][PID:1815047] Periodic builder liveness probe: alive [2026-07-10 12:04:11,130][ INFO][PID:1815047] Checking for cancel request [2026-07-10 12:04:16,131][ INFO][PID:1815047] Checking for cancel request [2026-07-10 12:04:21,132][ INFO][PID:1815047] Checking for cancel request [2026-07-10 12:04:26,134][ INFO][PID:1815047] Checking for cancel request [2026-07-10 12:04:31,135][ INFO][PID:1815047] Checking for cancel request [2026-07-10 12:04:36,136][ INFO][PID:1815047] Checking for cancel request [2026-07-10 12:04:41,138][ INFO][PID:1815047] Checking for cancel request [2026-07-10 12:04:46,140][ INFO][PID:1815047] Checking for cancel request [2026-07-10 12:04:51,142][ INFO][PID:1815047] Checking for cancel request [2026-07-10 12:04:56,143][ INFO][PID:1815047] Checking for cancel request [2026-07-10 12:05:01,145][ INFO][PID:1815047] Checking for cancel request [2026-07-10 12:05:06,147][ INFO][PID:1815047] Checking for cancel request [2026-07-10 12:05:11,148][ INFO][PID:1815047] Checking for cancel request [2026-07-10 12:05:16,149][ INFO][PID:1815047] Checking for cancel request [2026-07-10 12:05:21,151][ INFO][PID:1815047] Checking for cancel request [2026-07-10 12:05:26,152][ INFO][PID:1815047] Checking for cancel request [2026-07-10 12:05:31,154][ INFO][PID:1815047] Checking for cancel request [2026-07-10 12:05:36,155][ INFO][PID:1815047] Checking for cancel request [2026-07-10 12:05:41,156][ INFO][PID:1815047] Checking for cancel request [2026-07-10 12:05:46,158][ INFO][PID:1815047] Checking for cancel request [2026-07-10 12:05:51,159][ INFO][PID:1815047] Checking for cancel request [2026-07-10 12:05:56,164][ INFO][PID:1815047] Checking for cancel request [2026-07-10 12:06:01,172][ INFO][PID:1815047] Checking for cancel request [2026-07-10 12:06:06,174][ INFO][PID:1815047] Checking for cancel request [2026-07-10 12:06:11,178][ INFO][PID:1815047] Checking for cancel request [2026-07-10 12:06:16,180][ INFO][PID:1815047] Checking for cancel request [2026-07-10 12:06:21,186][ INFO][PID:1815047] Checking for cancel request [2026-07-10 12:06:26,193][ INFO][PID:1815047] Checking for cancel request [2026-07-10 12:06:31,195][ INFO][PID:1815047] Checking for cancel request [2026-07-10 12:06:36,196][ INFO][PID:1815047] Checking for cancel request [2026-07-10 12:06:41,197][ INFO][PID:1815047] Checking for cancel request [2026-07-10 12:06:46,203][ INFO][PID:1815047] Checking for cancel request [2026-07-10 12:06:51,205][ INFO][PID:1815047] Checking for cancel request [2026-07-10 12:06:56,208][ INFO][PID:1815047] Checking for cancel request [2026-07-10 12:07:01,210][ INFO][PID:1815047] Checking for cancel request [2026-07-10 12:07:06,219][ INFO][PID:1815047] Checking for cancel request [2026-07-10 12:07:11,230][ INFO][PID:1815047] Checking for cancel request [2026-07-10 12:07:16,232][ INFO][PID:1815047] Checking for cancel request [2026-07-10 12:07:21,234][ INFO][PID:1815047] Checking for cancel request [2026-07-10 12:07:26,236][ INFO][PID:1815047] Checking for cancel request [2026-07-10 12:07:31,241][ INFO][PID:1815047] Checking for cancel request [2026-07-10 12:07:36,243][ INFO][PID:1815047] Checking for cancel request [2026-07-10 12:07:41,244][ INFO][PID:1815047] Checking for cancel request [2026-07-10 12:07:46,247][ INFO][PID:1815047] Checking for cancel request [2026-07-10 12:07:51,252][ INFO][PID:1815047] Checking for cancel request [2026-07-10 12:07:56,254][ INFO][PID:1815047] Checking for cancel request [2026-07-10 12:08:01,278][ INFO][PID:1815047] Checking for cancel request [2026-07-10 12:08:06,280][ INFO][PID:1815047] Checking for cancel request [2026-07-10 12:08:11,286][ INFO][PID:1815047] Checking for cancel request [2026-07-10 12:08:16,288][ INFO][PID:1815047] Checking for cancel request [2026-07-10 12:08:21,305][ INFO][PID:1815047] Checking for cancel request [2026-07-10 12:08:26,313][ INFO][PID:1815047] Checking for cancel request [2026-07-10 12:08:31,321][ INFO][PID:1815047] Checking for cancel request [2026-07-10 12:08:36,342][ INFO][PID:1815047] Checking for cancel request [2026-07-10 12:08:41,354][ INFO][PID:1815047] Checking for cancel request [2026-07-10 12:08:46,357][ INFO][PID:1815047] Checking for cancel request [2026-07-10 12:08:51,360][ INFO][PID:1815047] Checking for cancel request [2026-07-10 12:08:56,369][ INFO][PID:1815047] Checking for cancel request [2026-07-10 12:09:01,382][ INFO][PID:1815047] Checking for cancel request [2026-07-10 12:09:06,385][ INFO][PID:1815047] Checking for cancel request [2026-07-10 12:09:11,389][ INFO][PID:1815047] Checking for cancel request [2026-07-10 12:09:16,405][ INFO][PID:1815047] Checking for cancel request [2026-07-10 12:09:21,410][ INFO][PID:1815047] Checking for cancel request [2026-07-10 12:09:26,416][ INFO][PID:1815047] Checking for cancel request [2026-07-10 12:09:31,421][ INFO][PID:1815047] Checking for cancel request [2026-07-10 12:09:36,427][ INFO][PID:1815047] Checking for cancel request [2026-07-10 12:09:41,432][ INFO][PID:1815047] Checking for cancel request [2026-07-10 12:09:46,437][ INFO][PID:1815047] Checking for cancel request [2026-07-10 12:09:51,446][ INFO][PID:1815047] Checking for cancel request [2026-07-10 12:09:56,448][ INFO][PID:1815047] Checking for cancel request [2026-07-10 12:10:01,452][ INFO][PID:1815047] Checking for cancel request [2026-07-10 12:10:06,453][ INFO][PID:1815047] Checking for cancel request [2026-07-10 12:10:11,455][ INFO][PID:1815047] Checking for cancel request [2026-07-10 12:10:16,457][ INFO][PID:1815047] Checking for cancel request [2026-07-10 12:10:21,459][ INFO][PID:1815047] Checking for cancel request [2026-07-10 12:10:26,465][ INFO][PID:1815047] Checking for cancel request [2026-07-10 12:10:31,467][ INFO][PID:1815047] Checking for cancel request [2026-07-10 12:10:36,469][ INFO][PID:1815047] Checking for cancel request [2026-07-10 12:10:41,471][ INFO][PID:1815047] Checking for cancel request [2026-07-10 12:10:46,474][ INFO][PID:1815047] Checking for cancel request [2026-07-10 12:10:51,479][ INFO][PID:1815047] Checking for cancel request [2026-07-10 12:10:56,482][ INFO][PID:1815047] Checking for cancel request [2026-07-10 12:11:01,484][ INFO][PID:1815047] Checking for cancel request [2026-07-10 12:11:06,486][ INFO][PID:1815047] Checking for cancel request [2026-07-10 12:11:11,488][ INFO][PID:1815047] Checking for cancel request [2026-07-10 12:11:16,491][ INFO][PID:1815047] Checking for cancel request [2026-07-10 12:11:21,537][ INFO][PID:1815047] Checking for cancel request [2026-07-10 12:11:26,558][ INFO][PID:1815047] Checking for cancel request [2026-07-10 12:11:31,562][ INFO][PID:1815047] Checking for cancel request [2026-07-10 12:11:36,601][ INFO][PID:1815047] Checking for cancel request [2026-07-10 12:11:41,613][ INFO][PID:1815047] Checking for cancel request [2026-07-10 12:11:46,636][ INFO][PID:1815047] Checking for cancel request [2026-07-10 12:11:51,683][ INFO][PID:1815047] Checking for cancel request [2026-07-10 12:11:56,687][ INFO][PID:1815047] Checking for cancel request [2026-07-10 12:12:01,711][ INFO][PID:1815047] Checking for cancel request [2026-07-10 12:12:06,722][ INFO][PID:1815047] Checking for cancel request [2026-07-10 12:12:11,750][ INFO][PID:1815047] Checking for cancel request [2026-07-10 12:12:16,753][ INFO][PID:1815047] Checking for cancel request [2026-07-10 12:12:21,755][ INFO][PID:1815047] Checking for cancel request [2026-07-10 12:12:26,762][ INFO][PID:1815047] Checking for cancel request [2026-07-10 12:12:31,797][ INFO][PID:1815047] Checking for cancel request [2026-07-10 12:12:36,807][ INFO][PID:1815047] Checking for cancel request [2026-07-10 12:12:41,822][ INFO][PID:1815047] Checking for cancel request [2026-07-10 12:12:46,842][ INFO][PID:1815047] Checking for cancel request [2026-07-10 12:12:51,847][ INFO][PID:1815047] Checking for cancel request [2026-07-10 12:12:56,848][ INFO][PID:1815047] Checking for cancel request [2026-07-10 12:13:01,867][ INFO][PID:1815047] Checking for cancel request [2026-07-10 12:13:06,868][ INFO][PID:1815047] Checking for cancel request [2026-07-10 12:13:11,870][ INFO][PID:1815047] Checking for cancel request [2026-07-10 12:13:16,878][ INFO][PID:1815047] Checking for cancel request [2026-07-10 12:13:21,879][ INFO][PID:1815047] Checking for cancel request [2026-07-10 12:13:26,881][ INFO][PID:1815047] Checking for cancel request [2026-07-10 12:13:31,883][ INFO][PID:1815047] Checking for cancel request [2026-07-10 12:13:36,885][ INFO][PID:1815047] Checking for cancel request [2026-07-10 12:13:41,887][ INFO][PID:1815047] Checking for cancel request [2026-07-10 12:13:46,889][ INFO][PID:1815047] Checking for cancel request [2026-07-10 12:13:51,890][ INFO][PID:1815047] Checking for cancel request [2026-07-10 12:13:56,892][ INFO][PID:1815047] Checking for cancel request [2026-07-10 12:14:01,900][ INFO][PID:1815047] Checking for cancel request [2026-07-10 12:14:06,902][ INFO][PID:1815047] Checking for cancel request [2026-07-10 12:14:12,186][ INFO][PID:1815047] Periodic builder liveness probe: alive [2026-07-10 12:14:12,213][ INFO][PID:1815047] Checking for cancel request [2026-07-10 12:14:17,216][ INFO][PID:1815047] Checking for cancel request [2026-07-10 12:14:19,248][ INFO][PID:1815047] Downloading results from builder [2026-07-10 12:14:19,274][ INFO][PID:1815047] rsyncing of mockbuilder@34.238.27.252:/var/lib/copr-rpmbuild/results/ to /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5396/srpm-builds/10705898 started [2026-07-10 12:14:19,319][ INFO][PID:1815047] Popen command started: /usr/bin/rsync -rltDvH --chmod=D755,F644 -e 'ssh -F /home/copr/.ssh/config' mockbuilder@34.238.27.252:/var/lib/copr-rpmbuild/results/ /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5396/srpm-builds/10705898/ &> /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5396/srpm-builds/10705898/build-10705898.rsync.log [2026-07-10 12:14:25,334][ INFO][PID:1815047] rsyncing finished. [2026-07-10 12:14:25,338][ INFO][PID:1815047] VM Release request [2026-07-10 12:14:25,370][ INFO][PID:1815047] Searching for 'success' file in resultdir [2026-07-10 12:14:25,439][ INFO][PID:1815047] Getting build details [2026-07-10 12:14:25,443][ INFO][PID:1815047] Retrieving SRPM info from /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5396/srpm-builds/10705898 [2026-07-10 12:14:25,521][ INFO][PID:1815047] SRPM URL: https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5396/srpm-builds/10705898/Sunshine-0.0.5396-1.src.rpm [2026-07-10 12:14:25,524][ INFO][PID:1815047] build details: {'srpm_url': 'https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5396/srpm-builds/10705898/Sunshine-0.0.5396-1.src.rpm', 'pkg_name': 'Sunshine', 'pkg_version': '0.0.5396-1'} [2026-07-10 12:14:25,543][ INFO][PID:1815047] Finished build: id=10705898 failed=False timeout=108000 destdir=/var/lib/copr/public_html/results/lizardbyte/pulls:pr:5396 chroot=srpm-builds [2026-07-10 12:14:25,657][ INFO][PID:1815047] Worker succeeded build, took 620.5480256080627 [2026-07-10 12:14:25,674][ INFO][PID:1815047] 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:5396", "submitter": null, "ended_on": 1783685665.6558516, "started_on": 1783685045.107826, "submitted_on": null, "status": 1, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10705898", "build_id": 10705898, "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\": \"tmpanvq_1cy\", \"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:5396/srpm-builds/10705898/Sunshine-0.0.5396-1.src.rpm", "uses_devel_repo": null, "sandbox": "lizardbyte/pulls--ed2e6ec4-ecbc-422e-b231-a199d74bd152", "results": { "architecture_specific_tags": { "fedora-43": {}, "fedora-44": {}, "fedora-rawhide": {}, "opensuse-leap-15.6": {} }, "name": "Sunshine", "epoch": null, "version": "0.0.5396", "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:5396", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5396", "result_dir": "10705898", "built_packages": "", "tags": [ "arch_x86_64" ], "rpmeta_prediction": null, "pkg_version": "0.0.5396-1", "id": 10705898, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2026-07-10 12:14:26,653][ INFO][PID:1815047] Sending fedora-messaging bus message in build.end [2026-07-10 12:14:27,110][ INFO][PID:1815047] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5396/srpm-builds/10705898/builder-live.log by gzip [2026-07-10 12:14:27,132][ INFO][PID:1815047] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5396/srpm-builds/10705898/builder-live.log' as PID 1896100 [2026-07-10 12:14:27,171][ INFO][PID:1815047] Finished after 0 seconds with exit code 0 (gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5396/srpm-builds/10705898/builder-live.log) [2026-07-10 12:14:27,177][ INFO][PID:1815047] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5396/srpm-builds/10705898/backend.log by gzip [2026-07-10 12:14:27,179][ INFO][PID:1815047] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5396/srpm-builds/10705898/backend.log' as PID 1896107