[2026-07-08 12:49:13,716][ INFO][PID:2183806] Marking build as starting [2026-07-08 12:49:13,754][ INFO][PID:2183806] Checking for cancel request [2026-07-08 12:49:13,756][ INFO][PID:2183806] VM allocation process starts [2026-07-08 12:49:13,767][ INFO][PID:2183806] Trying to allocate VM: ResallocHost, ticket_id=3812426, requested_tags=['arch_x86_64', 'copr_builder'] [2026-07-08 12:49:16,784][ INFO][PID:2183806] Allocated host ResallocHost, ticket_id=3812426, hostname=3.82.232.1, name=aws_x86_64_reserved_prod_12963988_20260708_124804, requested_tags=['arch_x86_64', 'copr_builder'] [2026-07-08 12:49:16,785][ INFO][PID:2183806] Allocating ssh connection to builder [2026-07-08 12:49:16,786][ INFO][PID:2183806] Checking that builder machine is OK [2026-07-08 12:49:17,086][ INFO][PID:2183806] Installed copr-rpmbuild version: 1.8 [2026-07-08 12:49:17,086][ INFO][PID:2183806] Running remote command: copr-builder-ready srpm-builds [2026-07-08 12:49:17,257][ INFO][PID:2183806] Red Hat subscription not needed for srpm-builds Builder is ready to be used [2026-07-08 12:49:17,258][ INFO][PID:2183806] Filling build.info file with builder info [2026-07-08 12:49:17,258][ INFO][PID:2183806] Checking for cancel request [2026-07-08 12:49:17,259][ INFO][PID:2183806] 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": 1783514957.259525, "submitted_on": null, "status": 3, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10698225", "build_id": 10698225, "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\": \"tmpp4vpe0i6\", \"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--99913117-ba5f-4b26-88d4-a635a2a5ee6d", "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": "10698225", "built_packages": "", "tags": [ "arch_x86_64" ], "rpmeta_prediction": null, "id": 10698225, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2026-07-08 12:49:17,300][ INFO][PID:2183806] Sending fedora-messaging bus message in build.start [2026-07-08 12:49:17,774][ INFO][PID:2183806] Sending fedora-messaging bus message in chroot.start [2026-07-08 12:49:17,805][ INFO][PID:2183806] Starting remote build: copr-rpmbuild --verbose --drop-resultdir --srpm --task-url https://copr.fedorainfracloud.org/backend/get-srpm-build-task/10698225 --detached [2026-07-08 12:49:18,297][ INFO][PID:2183806] The copr-rpmbuild seems started, per: stdout: stderr: Warning: Permanently added '3.82.232.1' (ED25519) to the list of known hosts. [2026-07-08 12:49:18,298][ INFO][PID:2183806] Downloading the builder-live.log file, attempt 1 [2026-07-08 12:49:18,300][ INFO][PID:2183806] Popen command started: ssh -F /home/copr/.ssh/config mockbuilder@3.82.232.1 copr-rpmbuild-log [2026-07-08 12:49:23,308][ INFO][PID:2183806] Periodic builder liveness probe: alive [2026-07-08 12:49:23,309][ INFO][PID:2183806] Checking for cancel request [2026-07-08 12:49:28,310][ INFO][PID:2183806] Checking for cancel request [2026-07-08 12:49:33,311][ INFO][PID:2183806] Checking for cancel request [2026-07-08 12:49:38,313][ INFO][PID:2183806] Checking for cancel request [2026-07-08 12:49:43,341][ INFO][PID:2183806] Checking for cancel request [2026-07-08 12:49:48,342][ INFO][PID:2183806] Checking for cancel request [2026-07-08 12:49:53,343][ INFO][PID:2183806] Checking for cancel request [2026-07-08 12:49:58,347][ INFO][PID:2183806] Checking for cancel request [2026-07-08 12:50:03,350][ INFO][PID:2183806] Checking for cancel request [2026-07-08 12:50:08,353][ INFO][PID:2183806] Checking for cancel request [2026-07-08 12:50:13,354][ INFO][PID:2183806] Checking for cancel request [2026-07-08 12:50:18,362][ INFO][PID:2183806] Checking for cancel request [2026-07-08 12:50:23,364][ INFO][PID:2183806] Checking for cancel request [2026-07-08 12:50:28,365][ INFO][PID:2183806] Checking for cancel request [2026-07-08 12:50:33,366][ INFO][PID:2183806] Checking for cancel request [2026-07-08 12:50:38,368][ INFO][PID:2183806] Checking for cancel request [2026-07-08 12:50:43,369][ INFO][PID:2183806] Checking for cancel request [2026-07-08 12:50:48,371][ INFO][PID:2183806] Checking for cancel request [2026-07-08 12:50:53,372][ INFO][PID:2183806] Checking for cancel request [2026-07-08 12:50:58,373][ INFO][PID:2183806] Checking for cancel request [2026-07-08 12:51:03,375][ INFO][PID:2183806] Checking for cancel request [2026-07-08 12:51:08,376][ INFO][PID:2183806] Checking for cancel request [2026-07-08 12:51:13,397][ INFO][PID:2183806] Checking for cancel request [2026-07-08 12:51:18,398][ INFO][PID:2183806] Checking for cancel request [2026-07-08 12:51:23,482][ INFO][PID:2183806] Checking for cancel request [2026-07-08 12:51:28,484][ INFO][PID:2183806] Checking for cancel request [2026-07-08 12:51:33,485][ INFO][PID:2183806] Checking for cancel request [2026-07-08 12:51:38,487][ INFO][PID:2183806] Checking for cancel request [2026-07-08 12:51:43,488][ INFO][PID:2183806] Checking for cancel request [2026-07-08 12:51:48,490][ INFO][PID:2183806] Checking for cancel request [2026-07-08 12:51:53,491][ INFO][PID:2183806] Checking for cancel request [2026-07-08 12:51:58,493][ INFO][PID:2183806] Checking for cancel request [2026-07-08 12:52:03,494][ INFO][PID:2183806] Checking for cancel request [2026-07-08 12:52:08,495][ INFO][PID:2183806] Checking for cancel request [2026-07-08 12:52:13,497][ INFO][PID:2183806] Checking for cancel request [2026-07-08 12:52:18,498][ INFO][PID:2183806] Checking for cancel request [2026-07-08 12:52:23,499][ INFO][PID:2183806] Checking for cancel request [2026-07-08 12:52:28,501][ INFO][PID:2183806] Checking for cancel request [2026-07-08 12:52:33,502][ INFO][PID:2183806] Checking for cancel request [2026-07-08 12:52:38,504][ INFO][PID:2183806] Checking for cancel request [2026-07-08 12:52:43,506][ INFO][PID:2183806] Checking for cancel request [2026-07-08 12:52:48,508][ INFO][PID:2183806] Checking for cancel request [2026-07-08 12:52:53,509][ INFO][PID:2183806] Checking for cancel request [2026-07-08 12:52:58,511][ INFO][PID:2183806] Checking for cancel request [2026-07-08 12:53:03,512][ INFO][PID:2183806] Checking for cancel request [2026-07-08 12:53:08,514][ INFO][PID:2183806] Checking for cancel request [2026-07-08 12:53:13,515][ INFO][PID:2183806] Checking for cancel request [2026-07-08 12:53:18,517][ INFO][PID:2183806] Checking for cancel request [2026-07-08 12:53:23,518][ INFO][PID:2183806] Checking for cancel request [2026-07-08 12:53:28,519][ INFO][PID:2183806] Checking for cancel request [2026-07-08 12:53:33,521][ INFO][PID:2183806] Checking for cancel request [2026-07-08 12:53:38,523][ INFO][PID:2183806] Checking for cancel request [2026-07-08 12:53:43,525][ INFO][PID:2183806] Checking for cancel request [2026-07-08 12:53:48,526][ INFO][PID:2183806] Checking for cancel request [2026-07-08 12:53:53,528][ INFO][PID:2183806] Checking for cancel request [2026-07-08 12:53:58,529][ INFO][PID:2183806] Checking for cancel request [2026-07-08 12:54:03,530][ INFO][PID:2183806] Checking for cancel request [2026-07-08 12:54:08,532][ INFO][PID:2183806] Checking for cancel request [2026-07-08 12:54:13,533][ INFO][PID:2183806] Checking for cancel request [2026-07-08 12:54:18,535][ INFO][PID:2183806] Checking for cancel request [2026-07-08 12:54:23,569][ INFO][PID:2183806] Checking for cancel request [2026-07-08 12:54:28,571][ INFO][PID:2183806] Checking for cancel request [2026-07-08 12:54:33,572][ INFO][PID:2183806] Checking for cancel request [2026-07-08 12:54:38,573][ INFO][PID:2183806] Checking for cancel request [2026-07-08 12:54:43,575][ INFO][PID:2183806] Checking for cancel request [2026-07-08 12:54:48,576][ INFO][PID:2183806] Checking for cancel request [2026-07-08 12:54:53,577][ INFO][PID:2183806] Checking for cancel request [2026-07-08 12:54:58,597][ INFO][PID:2183806] Checking for cancel request [2026-07-08 12:55:03,598][ INFO][PID:2183806] Checking for cancel request [2026-07-08 12:55:08,599][ INFO][PID:2183806] Checking for cancel request [2026-07-08 12:55:13,601][ INFO][PID:2183806] Checking for cancel request [2026-07-08 12:55:18,603][ INFO][PID:2183806] Checking for cancel request [2026-07-08 12:55:23,604][ INFO][PID:2183806] Checking for cancel request [2026-07-08 12:55:28,606][ INFO][PID:2183806] Checking for cancel request [2026-07-08 12:55:33,607][ INFO][PID:2183806] Checking for cancel request [2026-07-08 12:55:38,609][ INFO][PID:2183806] Checking for cancel request [2026-07-08 12:55:43,610][ INFO][PID:2183806] Checking for cancel request [2026-07-08 12:55:48,613][ INFO][PID:2183806] Checking for cancel request [2026-07-08 12:55:53,614][ INFO][PID:2183806] Checking for cancel request [2026-07-08 12:55:58,616][ INFO][PID:2183806] Checking for cancel request [2026-07-08 12:56:03,617][ INFO][PID:2183806] Checking for cancel request [2026-07-08 12:56:08,620][ INFO][PID:2183806] Checking for cancel request [2026-07-08 12:56:13,622][ INFO][PID:2183806] Checking for cancel request [2026-07-08 12:56:18,624][ INFO][PID:2183806] Checking for cancel request [2026-07-08 12:56:23,626][ INFO][PID:2183806] Checking for cancel request [2026-07-08 12:56:28,627][ INFO][PID:2183806] Checking for cancel request [2026-07-08 12:56:33,629][ INFO][PID:2183806] Checking for cancel request [2026-07-08 12:56:38,631][ INFO][PID:2183806] Checking for cancel request [2026-07-08 12:56:43,633][ INFO][PID:2183806] Checking for cancel request [2026-07-08 12:56:48,636][ INFO][PID:2183806] Checking for cancel request [2026-07-08 12:56:53,644][ INFO][PID:2183806] Checking for cancel request [2026-07-08 12:56:58,645][ INFO][PID:2183806] Checking for cancel request [2026-07-08 12:57:03,647][ INFO][PID:2183806] Checking for cancel request [2026-07-08 12:57:08,648][ INFO][PID:2183806] Checking for cancel request [2026-07-08 12:57:13,649][ INFO][PID:2183806] Checking for cancel request [2026-07-08 12:57:18,652][ INFO][PID:2183806] Checking for cancel request [2026-07-08 12:57:23,654][ INFO][PID:2183806] Checking for cancel request [2026-07-08 12:57:28,656][ INFO][PID:2183806] Checking for cancel request [2026-07-08 12:57:33,657][ INFO][PID:2183806] Checking for cancel request [2026-07-08 12:57:38,659][ INFO][PID:2183806] Checking for cancel request [2026-07-08 12:57:43,662][ INFO][PID:2183806] Checking for cancel request [2026-07-08 12:57:48,664][ INFO][PID:2183806] Checking for cancel request [2026-07-08 12:57:53,665][ INFO][PID:2183806] Checking for cancel request [2026-07-08 12:57:58,667][ INFO][PID:2183806] Checking for cancel request [2026-07-08 12:58:03,669][ INFO][PID:2183806] Checking for cancel request [2026-07-08 12:58:08,671][ INFO][PID:2183806] Checking for cancel request [2026-07-08 12:58:13,672][ INFO][PID:2183806] Checking for cancel request [2026-07-08 12:58:18,673][ INFO][PID:2183806] Checking for cancel request [2026-07-08 12:58:23,675][ INFO][PID:2183806] Checking for cancel request [2026-07-08 12:58:28,676][ INFO][PID:2183806] Checking for cancel request [2026-07-08 12:58:33,678][ INFO][PID:2183806] Checking for cancel request [2026-07-08 12:58:38,679][ INFO][PID:2183806] Checking for cancel request [2026-07-08 12:58:43,681][ INFO][PID:2183806] Checking for cancel request [2026-07-08 12:58:48,682][ INFO][PID:2183806] Checking for cancel request [2026-07-08 12:58:53,685][ INFO][PID:2183806] Checking for cancel request [2026-07-08 12:58:58,686][ INFO][PID:2183806] Checking for cancel request [2026-07-08 12:59:03,688][ INFO][PID:2183806] Checking for cancel request [2026-07-08 12:59:08,689][ INFO][PID:2183806] Checking for cancel request [2026-07-08 12:59:13,691][ INFO][PID:2183806] Checking for cancel request [2026-07-08 12:59:18,692][ INFO][PID:2183806] Checking for cancel request [2026-07-08 12:59:23,924][ INFO][PID:2183806] Periodic builder liveness probe: alive [2026-07-08 12:59:23,963][ INFO][PID:2183806] Checking for cancel request [2026-07-08 12:59:28,965][ INFO][PID:2183806] Checking for cancel request [2026-07-08 12:59:33,981][ INFO][PID:2183806] Checking for cancel request [2026-07-08 12:59:38,982][ INFO][PID:2183806] Checking for cancel request [2026-07-08 12:59:43,983][ INFO][PID:2183806] Checking for cancel request [2026-07-08 12:59:48,985][ INFO][PID:2183806] Checking for cancel request [2026-07-08 12:59:53,986][ INFO][PID:2183806] Checking for cancel request [2026-07-08 12:59:54,181][ INFO][PID:2183806] Downloading results from builder [2026-07-08 12:59:54,259][ INFO][PID:2183806] rsyncing of mockbuilder@3.82.232.1:/var/lib/copr-rpmbuild/results/ to /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5368/srpm-builds/10698225 started [2026-07-08 12:59:54,396][ INFO][PID:2183806] Popen command started: /usr/bin/rsync -rltDvH --chmod=D755,F644 -e 'ssh -F /home/copr/.ssh/config' mockbuilder@3.82.232.1:/var/lib/copr-rpmbuild/results/ /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5368/srpm-builds/10698225/ &> /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5368/srpm-builds/10698225/build-10698225.rsync.log [2026-07-08 12:59:59,468][ INFO][PID:2183806] rsyncing finished. [2026-07-08 12:59:59,472][ INFO][PID:2183806] VM Release request [2026-07-08 12:59:59,497][ INFO][PID:2183806] Searching for 'success' file in resultdir [2026-07-08 12:59:59,555][ INFO][PID:2183806] Getting build details [2026-07-08 12:59:59,556][ INFO][PID:2183806] Retrieving SRPM info from /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5368/srpm-builds/10698225 [2026-07-08 12:59:59,617][ INFO][PID:2183806] SRPM URL: https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5368/srpm-builds/10698225/Sunshine-0.0.5368-1.src.rpm [2026-07-08 12:59:59,619][ INFO][PID:2183806] build details: {'srpm_url': 'https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5368/srpm-builds/10698225/Sunshine-0.0.5368-1.src.rpm', 'pkg_name': 'Sunshine', 'pkg_version': '0.0.5368-1'} [2026-07-08 12:59:59,628][ INFO][PID:2183806] Finished build: id=10698225 failed=False timeout=108000 destdir=/var/lib/copr/public_html/results/lizardbyte/pulls:pr:5368 chroot=srpm-builds [2026-07-08 12:59:59,700][ INFO][PID:2183806] Worker succeeded build, took 642.4399688243866 [2026-07-08 12:59:59,715][ INFO][PID:2183806] 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": 1783515599.699494, "started_on": 1783514957.259525, "submitted_on": null, "status": 1, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10698225", "build_id": 10698225, "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\": \"tmpp4vpe0i6\", \"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/10698225/Sunshine-0.0.5368-1.src.rpm", "uses_devel_repo": null, "sandbox": "lizardbyte/pulls--99913117-ba5f-4b26-88d4-a635a2a5ee6d", "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": "10698225", "built_packages": "", "tags": [ "arch_x86_64" ], "rpmeta_prediction": null, "pkg_version": "0.0.5368-1", "id": 10698225, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2026-07-08 13:00:00,401][ INFO][PID:2183806] Sending fedora-messaging bus message in build.end [2026-07-08 13:00:00,741][ INFO][PID:2183806] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5368/srpm-builds/10698225/builder-live.log by gzip [2026-07-08 13:00:00,765][ INFO][PID:2183806] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5368/srpm-builds/10698225/builder-live.log' as PID 2242729 [2026-07-08 13:00:00,784][ INFO][PID:2183806] Finished after 0 seconds with exit code 0 (gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5368/srpm-builds/10698225/builder-live.log) [2026-07-08 13:00:00,790][ INFO][PID:2183806] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5368/srpm-builds/10698225/backend.log by gzip [2026-07-08 13:00:00,792][ INFO][PID:2183806] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5368/srpm-builds/10698225/backend.log' as PID 2242732