[2026-08-15 13:47:32,019][ INFO][PID:2163339] Marking build as starting [2026-08-15 13:47:32,060][ INFO][PID:2163339] Checking for cancel request [2026-08-15 13:47:32,062][ INFO][PID:2163339] VM allocation process starts [2026-08-15 13:47:32,074][ INFO][PID:2163339] Trying to allocate VM: ResallocHost, ticket_id=4459951, requested_tags=['arch_x86_64', 'copr_builder'] [2026-08-15 13:47:35,108][ INFO][PID:2163339] Allocated host ResallocHost, ticket_id=4459951, hostname=98.84.100.39, name=aws_x86_64_reserved_prod_18699686_20260815_131108, requested_tags=['arch_x86_64', 'copr_builder'] [2026-08-15 13:47:35,109][ INFO][PID:2163339] Allocating ssh connection to builder [2026-08-15 13:47:35,110][ INFO][PID:2163339] Checking that builder machine is OK [2026-08-15 13:47:35,443][ INFO][PID:2163339] Installed copr-rpmbuild version: 1.9 [2026-08-15 13:47:35,444][ INFO][PID:2163339] Running remote command: copr-builder-ready srpm-builds [2026-08-15 13:47:35,634][ INFO][PID:2163339] Red Hat subscription not needed for srpm-builds Builder is ready to be used [2026-08-15 13:47:35,635][ INFO][PID:2163339] Filling build.info file with builder info [2026-08-15 13:47:35,635][ INFO][PID:2163339] Checking for cancel request [2026-08-15 13:47:35,637][ INFO][PID:2163339] 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:5495", "submitter": null, "ended_on": null, "started_on": 1786801655.6369712, "submitted_on": null, "status": 3, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10867640", "build_id": 10867640, "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\": \"tmpheyw0keh\", \"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--b9a135be-42fb-449f-a510-7d6c9adae7f7", "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" ], "distributions_in_project": [ "fedora-43", "fedora-44", "fedora-rawhide" ], "destdir": "/var/lib/copr/public_html/results/lizardbyte/pulls:pr:5495", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5495", "result_dir": "10867640", "built_packages": "", "tags": [ "arch_x86_64" ], "rpmeta_prediction": null, "id": 10867640, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2026-08-15 13:47:35,678][ INFO][PID:2163339] Sending fedora-messaging bus message in build.start [2026-08-15 13:47:36,281][ INFO][PID:2163339] Sending fedora-messaging bus message in chroot.start [2026-08-15 13:47:36,310][ INFO][PID:2163339] Starting remote build: copr-rpmbuild --verbose --drop-resultdir --srpm --task-url https://copr.fedorainfracloud.org/backend/get-srpm-build-task/10867640 --detached [2026-08-15 13:47:36,774][ INFO][PID:2163339] The copr-rpmbuild seems started, per: stdout: stderr: Warning: Permanently added '98.84.100.39' (ED25519) to the list of known hosts. [2026-08-15 13:47:36,775][ INFO][PID:2163339] Downloading the builder-live.log file, attempt 1 [2026-08-15 13:47:36,777][ INFO][PID:2163339] Popen command started: ssh -F /home/copr/.ssh/config mockbuilder@98.84.100.39 copr-rpmbuild-log [2026-08-15 13:47:41,781][ INFO][PID:2163339] Periodic builder liveness probe: alive [2026-08-15 13:47:41,782][ INFO][PID:2163339] Checking for cancel request [2026-08-15 13:47:46,783][ INFO][PID:2163339] Checking for cancel request [2026-08-15 13:47:51,784][ INFO][PID:2163339] Checking for cancel request [2026-08-15 13:47:56,785][ INFO][PID:2163339] Checking for cancel request [2026-08-15 13:48:01,787][ INFO][PID:2163339] Checking for cancel request [2026-08-15 13:48:06,819][ INFO][PID:2163339] Checking for cancel request [2026-08-15 13:48:11,821][ INFO][PID:2163339] Checking for cancel request [2026-08-15 13:48:16,823][ INFO][PID:2163339] Checking for cancel request [2026-08-15 13:48:21,825][ INFO][PID:2163339] Checking for cancel request [2026-08-15 13:48:26,826][ INFO][PID:2163339] Checking for cancel request [2026-08-15 13:48:31,827][ INFO][PID:2163339] Checking for cancel request [2026-08-15 13:48:36,830][ INFO][PID:2163339] Checking for cancel request [2026-08-15 13:48:41,832][ INFO][PID:2163339] Checking for cancel request [2026-08-15 13:48:46,834][ INFO][PID:2163339] Checking for cancel request [2026-08-15 13:48:51,852][ INFO][PID:2163339] Checking for cancel request [2026-08-15 13:48:56,854][ INFO][PID:2163339] Checking for cancel request [2026-08-15 13:49:01,855][ INFO][PID:2163339] Checking for cancel request [2026-08-15 13:49:06,856][ INFO][PID:2163339] Checking for cancel request [2026-08-15 13:49:11,858][ INFO][PID:2163339] Checking for cancel request [2026-08-15 13:49:16,860][ INFO][PID:2163339] Checking for cancel request [2026-08-15 13:49:21,861][ INFO][PID:2163339] Checking for cancel request [2026-08-15 13:49:26,862][ INFO][PID:2163339] Checking for cancel request [2026-08-15 13:49:31,864][ INFO][PID:2163339] Checking for cancel request [2026-08-15 13:49:36,865][ INFO][PID:2163339] Checking for cancel request [2026-08-15 13:49:41,867][ INFO][PID:2163339] Checking for cancel request [2026-08-15 13:49:46,868][ INFO][PID:2163339] Checking for cancel request [2026-08-15 13:49:51,872][ INFO][PID:2163339] Checking for cancel request [2026-08-15 13:49:56,873][ INFO][PID:2163339] Checking for cancel request [2026-08-15 13:50:01,875][ INFO][PID:2163339] Checking for cancel request [2026-08-15 13:50:06,916][ INFO][PID:2163339] Checking for cancel request [2026-08-15 13:50:11,918][ INFO][PID:2163339] Checking for cancel request [2026-08-15 13:50:16,920][ INFO][PID:2163339] Checking for cancel request [2026-08-15 13:50:21,973][ INFO][PID:2163339] Checking for cancel request [2026-08-15 13:50:26,975][ INFO][PID:2163339] Checking for cancel request [2026-08-15 13:50:31,977][ INFO][PID:2163339] Checking for cancel request [2026-08-15 13:50:37,014][ INFO][PID:2163339] Checking for cancel request [2026-08-15 13:50:42,032][ INFO][PID:2163339] Checking for cancel request [2026-08-15 13:50:47,034][ INFO][PID:2163339] Checking for cancel request [2026-08-15 13:50:52,035][ INFO][PID:2163339] Checking for cancel request [2026-08-15 13:50:57,036][ INFO][PID:2163339] Checking for cancel request [2026-08-15 13:51:02,038][ INFO][PID:2163339] Checking for cancel request [2026-08-15 13:51:07,039][ INFO][PID:2163339] Checking for cancel request [2026-08-15 13:51:12,040][ INFO][PID:2163339] Checking for cancel request [2026-08-15 13:51:17,041][ INFO][PID:2163339] Checking for cancel request [2026-08-15 13:51:22,043][ INFO][PID:2163339] Checking for cancel request [2026-08-15 13:51:27,045][ INFO][PID:2163339] Checking for cancel request [2026-08-15 13:51:32,046][ INFO][PID:2163339] Checking for cancel request [2026-08-15 13:51:37,096][ INFO][PID:2163339] Checking for cancel request [2026-08-15 13:51:42,098][ INFO][PID:2163339] Checking for cancel request [2026-08-15 13:51:47,099][ INFO][PID:2163339] Checking for cancel request [2026-08-15 13:51:52,101][ INFO][PID:2163339] Checking for cancel request [2026-08-15 13:51:57,102][ INFO][PID:2163339] Checking for cancel request [2026-08-15 13:52:02,103][ INFO][PID:2163339] Checking for cancel request [2026-08-15 13:52:07,105][ INFO][PID:2163339] Checking for cancel request [2026-08-15 13:52:12,135][ INFO][PID:2163339] Checking for cancel request [2026-08-15 13:52:17,136][ INFO][PID:2163339] Checking for cancel request [2026-08-15 13:52:22,138][ INFO][PID:2163339] Checking for cancel request [2026-08-15 13:52:27,139][ INFO][PID:2163339] Checking for cancel request [2026-08-15 13:52:32,141][ INFO][PID:2163339] Checking for cancel request [2026-08-15 13:52:37,142][ INFO][PID:2163339] Checking for cancel request [2026-08-15 13:52:42,145][ INFO][PID:2163339] Checking for cancel request [2026-08-15 13:52:47,146][ INFO][PID:2163339] Checking for cancel request [2026-08-15 13:52:52,148][ INFO][PID:2163339] Checking for cancel request [2026-08-15 13:52:57,149][ INFO][PID:2163339] Checking for cancel request [2026-08-15 13:53:02,150][ INFO][PID:2163339] Checking for cancel request [2026-08-15 13:53:07,152][ INFO][PID:2163339] Checking for cancel request [2026-08-15 13:53:12,153][ INFO][PID:2163339] Checking for cancel request [2026-08-15 13:53:17,154][ INFO][PID:2163339] Checking for cancel request [2026-08-15 13:53:22,156][ INFO][PID:2163339] Checking for cancel request [2026-08-15 13:53:27,157][ INFO][PID:2163339] Checking for cancel request [2026-08-15 13:53:32,158][ INFO][PID:2163339] Checking for cancel request [2026-08-15 13:53:37,160][ INFO][PID:2163339] Checking for cancel request [2026-08-15 13:53:42,161][ INFO][PID:2163339] Checking for cancel request [2026-08-15 13:53:47,162][ INFO][PID:2163339] Checking for cancel request [2026-08-15 13:53:52,163][ INFO][PID:2163339] Checking for cancel request [2026-08-15 13:53:57,165][ INFO][PID:2163339] Checking for cancel request [2026-08-15 13:54:02,166][ INFO][PID:2163339] Checking for cancel request [2026-08-15 13:54:07,168][ INFO][PID:2163339] Checking for cancel request [2026-08-15 13:54:12,169][ INFO][PID:2163339] Checking for cancel request [2026-08-15 13:54:17,171][ INFO][PID:2163339] Checking for cancel request [2026-08-15 13:54:22,172][ INFO][PID:2163339] Checking for cancel request [2026-08-15 13:54:27,173][ INFO][PID:2163339] Checking for cancel request [2026-08-15 13:54:32,174][ INFO][PID:2163339] Checking for cancel request [2026-08-15 13:54:37,176][ INFO][PID:2163339] Checking for cancel request [2026-08-15 13:54:42,177][ INFO][PID:2163339] Checking for cancel request [2026-08-15 13:54:47,178][ INFO][PID:2163339] Checking for cancel request [2026-08-15 13:54:52,180][ INFO][PID:2163339] Checking for cancel request [2026-08-15 13:54:57,182][ INFO][PID:2163339] Checking for cancel request [2026-08-15 13:55:02,184][ INFO][PID:2163339] Checking for cancel request [2026-08-15 13:55:07,185][ INFO][PID:2163339] Checking for cancel request [2026-08-15 13:55:12,187][ INFO][PID:2163339] Checking for cancel request [2026-08-15 13:55:17,188][ INFO][PID:2163339] Checking for cancel request [2026-08-15 13:55:22,189][ INFO][PID:2163339] Checking for cancel request [2026-08-15 13:55:27,190][ INFO][PID:2163339] Checking for cancel request [2026-08-15 13:55:32,192][ INFO][PID:2163339] Checking for cancel request [2026-08-15 13:55:37,193][ INFO][PID:2163339] Checking for cancel request [2026-08-15 13:55:42,194][ INFO][PID:2163339] Checking for cancel request [2026-08-15 13:55:47,196][ INFO][PID:2163339] Checking for cancel request [2026-08-15 13:55:52,197][ INFO][PID:2163339] Checking for cancel request [2026-08-15 13:55:57,199][ INFO][PID:2163339] Checking for cancel request [2026-08-15 13:56:02,200][ INFO][PID:2163339] Checking for cancel request [2026-08-15 13:56:07,201][ INFO][PID:2163339] Checking for cancel request [2026-08-15 13:56:12,203][ INFO][PID:2163339] Checking for cancel request [2026-08-15 13:56:17,204][ INFO][PID:2163339] Checking for cancel request [2026-08-15 13:56:22,205][ INFO][PID:2163339] Checking for cancel request [2026-08-15 13:56:27,207][ INFO][PID:2163339] Checking for cancel request [2026-08-15 13:56:32,208][ INFO][PID:2163339] Checking for cancel request [2026-08-15 13:56:37,209][ INFO][PID:2163339] Checking for cancel request [2026-08-15 13:56:42,210][ INFO][PID:2163339] Checking for cancel request [2026-08-15 13:56:47,212][ INFO][PID:2163339] Checking for cancel request [2026-08-15 13:56:52,213][ INFO][PID:2163339] Checking for cancel request [2026-08-15 13:56:57,215][ INFO][PID:2163339] Checking for cancel request [2026-08-15 13:57:02,216][ INFO][PID:2163339] Checking for cancel request [2026-08-15 13:57:07,217][ INFO][PID:2163339] Checking for cancel request [2026-08-15 13:57:12,218][ INFO][PID:2163339] Checking for cancel request [2026-08-15 13:57:17,220][ INFO][PID:2163339] Checking for cancel request [2026-08-15 13:57:22,221][ INFO][PID:2163339] Checking for cancel request [2026-08-15 13:57:27,223][ INFO][PID:2163339] Checking for cancel request [2026-08-15 13:57:32,224][ INFO][PID:2163339] Checking for cancel request [2026-08-15 13:57:37,225][ INFO][PID:2163339] Checking for cancel request [2026-08-15 13:57:42,239][ INFO][PID:2163339] Periodic builder liveness probe: alive [2026-08-15 13:57:42,240][ INFO][PID:2163339] Checking for cancel request [2026-08-15 13:57:47,242][ INFO][PID:2163339] Checking for cancel request [2026-08-15 13:57:52,243][ INFO][PID:2163339] Checking for cancel request [2026-08-15 13:57:57,244][ INFO][PID:2163339] Checking for cancel request [2026-08-15 13:58:02,246][ INFO][PID:2163339] Checking for cancel request [2026-08-15 13:58:07,247][ INFO][PID:2163339] Checking for cancel request [2026-08-15 13:58:12,249][ INFO][PID:2163339] Checking for cancel request [2026-08-15 13:58:17,250][ INFO][PID:2163339] Checking for cancel request [2026-08-15 13:58:19,735][ INFO][PID:2163339] Downloading results from builder [2026-08-15 13:58:19,735][ INFO][PID:2163339] rsyncing of mockbuilder@98.84.100.39:/var/lib/copr-rpmbuild/results/ to /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5495/srpm-builds/10867640 started [2026-08-15 13:58:19,737][ INFO][PID:2163339] Popen command started: /usr/bin/rsync -rltDvH --chmod=D755,F644 -e 'ssh -F /home/copr/.ssh/config' mockbuilder@98.84.100.39:/var/lib/copr-rpmbuild/results/ /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5495/srpm-builds/10867640/ &> /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5495/srpm-builds/10867640/build-10867640.rsync.log [2026-08-15 13:58:24,594][ INFO][PID:2163339] rsyncing finished. [2026-08-15 13:58:24,595][ INFO][PID:2163339] VM Release request [2026-08-15 13:58:24,646][ INFO][PID:2163339] Searching for 'success' file in resultdir [2026-08-15 13:58:24,648][ INFO][PID:2163339] Getting build details [2026-08-15 13:58:24,648][ INFO][PID:2163339] Retrieving SRPM info from /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5495/srpm-builds/10867640 [2026-08-15 13:58:24,649][ INFO][PID:2163339] SRPM URL: https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5495/srpm-builds/10867640/Sunshine-0.0.5495-1.src.rpm [2026-08-15 13:58:24,650][ INFO][PID:2163339] build details: {'srpm_url': 'https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5495/srpm-builds/10867640/Sunshine-0.0.5495-1.src.rpm', 'pkg_name': 'Sunshine', 'pkg_version': '0.0.5495-1'} [2026-08-15 13:58:24,650][ INFO][PID:2163339] Finished build: id=10867640 failed=False timeout=108000 destdir=/var/lib/copr/public_html/results/lizardbyte/pulls:pr:5495 chroot=srpm-builds [2026-08-15 13:58:24,651][ INFO][PID:2163339] Worker succeeded build, took 649.0144190788269 [2026-08-15 13:58:24,652][ INFO][PID:2163339] 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:5495", "submitter": null, "ended_on": 1786802304.6513903, "started_on": 1786801655.6369712, "submitted_on": null, "status": 1, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10867640", "build_id": 10867640, "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\": \"tmpheyw0keh\", \"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:5495/srpm-builds/10867640/Sunshine-0.0.5495-1.src.rpm", "uses_devel_repo": null, "sandbox": "lizardbyte/pulls--b9a135be-42fb-449f-a510-7d6c9adae7f7", "results": { "architecture_specific_tags": { "fedora-43": {}, "fedora-44": {}, "fedora-rawhide": {} }, "name": "Sunshine", "epoch": null, "version": "0.0.5495", "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" ], "distributions_in_project": [ "fedora-43", "fedora-44", "fedora-rawhide" ], "destdir": "/var/lib/copr/public_html/results/lizardbyte/pulls:pr:5495", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5495", "result_dir": "10867640", "built_packages": "", "tags": [ "arch_x86_64" ], "rpmeta_prediction": null, "pkg_version": "0.0.5495-1", "id": 10867640, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2026-08-15 13:58:24,699][ INFO][PID:2163339] Sending fedora-messaging bus message in build.end [2026-08-15 13:58:24,726][ INFO][PID:2163339] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5495/srpm-builds/10867640/builder-live.log by gzip [2026-08-15 13:58:24,728][ INFO][PID:2163339] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5495/srpm-builds/10867640/builder-live.log' as PID 2225855 [2026-08-15 13:58:24,787][ INFO][PID:2163339] Finished after 0 seconds with exit code 0 (gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5495/srpm-builds/10867640/builder-live.log) [2026-08-15 13:58:24,788][ INFO][PID:2163339] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5495/srpm-builds/10867640/backend.log by gzip [2026-08-15 13:58:24,789][ INFO][PID:2163339] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5495/srpm-builds/10867640/backend.log' as PID 2225884