[2026-07-03 04:25:23,309][ INFO][PID:1858101] Marking build as starting [2026-07-03 04:25:23,360][ INFO][PID:1858101] Checking for cancel request [2026-07-03 04:25:23,361][ INFO][PID:1858101] VM allocation process starts [2026-07-03 04:25:23,372][ INFO][PID:1858101] Trying to allocate VM: ResallocHost, ticket_id=3733045, requested_tags=['arch_x86_64', 'copr_builder'] [2026-07-03 04:25:26,412][ INFO][PID:1858101] Allocated host ResallocHost, ticket_id=3733045, hostname=3.95.252.129, name=aws_x86_64_reserved_prod_12869852_20260703_042053, requested_tags=['arch_x86_64', 'copr_builder'] [2026-07-03 04:25:26,412][ INFO][PID:1858101] Allocating ssh connection to builder [2026-07-03 04:25:26,413][ INFO][PID:1858101] Checking that builder machine is OK [2026-07-03 04:25:26,733][ INFO][PID:1858101] Installed copr-rpmbuild version: 1.8 [2026-07-03 04:25:26,733][ INFO][PID:1858101] Running remote command: copr-builder-ready srpm-builds [2026-07-03 04:25:26,914][ INFO][PID:1858101] Red Hat subscription not needed for srpm-builds Builder is ready to be used [2026-07-03 04:25:26,915][ INFO][PID:1858101] Filling build.info file with builder info [2026-07-03 04:25:26,915][ INFO][PID:1858101] Checking for cancel request [2026-07-03 04:25:26,916][ INFO][PID:1858101] 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": 1783052726.9164011, "submitted_on": null, "status": 3, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10677301", "build_id": 10677301, "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\": \"tmpwlpzud0o\", \"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--009217da-2fdb-4d8a-b3a5-8e4562d756ce", "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": "10677301", "built_packages": "", "tags": [ "arch_x86_64" ], "rpmeta_prediction": null, "id": 10677301, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2026-07-03 04:25:26,953][ INFO][PID:1858101] Sending fedora-messaging bus message in build.start [2026-07-03 04:25:27,374][ INFO][PID:1858101] Sending fedora-messaging bus message in chroot.start [2026-07-03 04:25:27,397][ INFO][PID:1858101] Starting remote build: copr-rpmbuild --verbose --drop-resultdir --srpm --task-url https://copr.fedorainfracloud.org/backend/get-srpm-build-task/10677301 --detached [2026-07-03 04:25:28,090][ INFO][PID:1858101] The copr-rpmbuild seems started, per: stdout: stderr: Warning: Permanently added '3.95.252.129' (ED25519) to the list of known hosts. [2026-07-03 04:25:28,091][ INFO][PID:1858101] Downloading the builder-live.log file, attempt 1 [2026-07-03 04:25:28,093][ INFO][PID:1858101] Popen command started: ssh -F /home/copr/.ssh/config mockbuilder@3.95.252.129 copr-rpmbuild-log [2026-07-03 04:25:33,097][ INFO][PID:1858101] Periodic builder liveness probe: alive [2026-07-03 04:25:33,098][ INFO][PID:1858101] Checking for cancel request [2026-07-03 04:25:38,099][ INFO][PID:1858101] Checking for cancel request [2026-07-03 04:25:43,100][ INFO][PID:1858101] Checking for cancel request [2026-07-03 04:25:48,101][ INFO][PID:1858101] Checking for cancel request [2026-07-03 04:25:53,103][ INFO][PID:1858101] Checking for cancel request [2026-07-03 04:25:58,104][ INFO][PID:1858101] Checking for cancel request [2026-07-03 04:26:03,105][ INFO][PID:1858101] Checking for cancel request [2026-07-03 04:26:08,107][ INFO][PID:1858101] Checking for cancel request [2026-07-03 04:26:13,108][ INFO][PID:1858101] Checking for cancel request [2026-07-03 04:26:18,110][ INFO][PID:1858101] Checking for cancel request [2026-07-03 04:26:23,111][ INFO][PID:1858101] Checking for cancel request [2026-07-03 04:26:28,113][ INFO][PID:1858101] Checking for cancel request [2026-07-03 04:26:33,114][ INFO][PID:1858101] Checking for cancel request [2026-07-03 04:26:38,116][ INFO][PID:1858101] Checking for cancel request [2026-07-03 04:26:43,117][ INFO][PID:1858101] Checking for cancel request [2026-07-03 04:26:48,119][ INFO][PID:1858101] Checking for cancel request [2026-07-03 04:26:53,120][ INFO][PID:1858101] Checking for cancel request [2026-07-03 04:26:58,121][ INFO][PID:1858101] Checking for cancel request [2026-07-03 04:27:03,122][ INFO][PID:1858101] Checking for cancel request [2026-07-03 04:27:08,124][ INFO][PID:1858101] Checking for cancel request [2026-07-03 04:27:13,125][ INFO][PID:1858101] Checking for cancel request [2026-07-03 04:27:18,127][ INFO][PID:1858101] Checking for cancel request [2026-07-03 04:27:23,128][ INFO][PID:1858101] Checking for cancel request [2026-07-03 04:27:28,129][ INFO][PID:1858101] Checking for cancel request [2026-07-03 04:27:33,131][ INFO][PID:1858101] Checking for cancel request [2026-07-03 04:27:38,132][ INFO][PID:1858101] Checking for cancel request [2026-07-03 04:27:43,133][ INFO][PID:1858101] Checking for cancel request [2026-07-03 04:27:48,135][ INFO][PID:1858101] Checking for cancel request [2026-07-03 04:27:53,136][ INFO][PID:1858101] Checking for cancel request [2026-07-03 04:27:58,137][ INFO][PID:1858101] Checking for cancel request [2026-07-03 04:28:03,138][ INFO][PID:1858101] Checking for cancel request [2026-07-03 04:28:08,140][ INFO][PID:1858101] Checking for cancel request [2026-07-03 04:28:13,141][ INFO][PID:1858101] Checking for cancel request [2026-07-03 04:28:18,142][ INFO][PID:1858101] Checking for cancel request [2026-07-03 04:28:23,143][ INFO][PID:1858101] Checking for cancel request [2026-07-03 04:28:28,145][ INFO][PID:1858101] Checking for cancel request [2026-07-03 04:28:33,147][ INFO][PID:1858101] Checking for cancel request [2026-07-03 04:28:38,148][ INFO][PID:1858101] Checking for cancel request [2026-07-03 04:28:43,150][ INFO][PID:1858101] Checking for cancel request [2026-07-03 04:28:48,151][ INFO][PID:1858101] Checking for cancel request [2026-07-03 04:28:53,152][ INFO][PID:1858101] Checking for cancel request [2026-07-03 04:28:58,154][ INFO][PID:1858101] Checking for cancel request [2026-07-03 04:29:03,155][ INFO][PID:1858101] Checking for cancel request [2026-07-03 04:29:08,157][ INFO][PID:1858101] Checking for cancel request [2026-07-03 04:29:13,159][ INFO][PID:1858101] Checking for cancel request [2026-07-03 04:29:18,160][ INFO][PID:1858101] Checking for cancel request [2026-07-03 04:29:23,161][ INFO][PID:1858101] Checking for cancel request [2026-07-03 04:29:28,163][ INFO][PID:1858101] Checking for cancel request [2026-07-03 04:29:33,164][ INFO][PID:1858101] Checking for cancel request [2026-07-03 04:29:38,165][ INFO][PID:1858101] Checking for cancel request [2026-07-03 04:29:43,167][ INFO][PID:1858101] Checking for cancel request [2026-07-03 04:29:48,168][ INFO][PID:1858101] Checking for cancel request [2026-07-03 04:29:53,169][ INFO][PID:1858101] Checking for cancel request [2026-07-03 04:29:58,170][ INFO][PID:1858101] Checking for cancel request [2026-07-03 04:30:03,171][ INFO][PID:1858101] Checking for cancel request [2026-07-03 04:30:08,173][ INFO][PID:1858101] Checking for cancel request [2026-07-03 04:30:13,174][ INFO][PID:1858101] Checking for cancel request [2026-07-03 04:30:18,175][ INFO][PID:1858101] Checking for cancel request [2026-07-03 04:30:23,177][ INFO][PID:1858101] Checking for cancel request [2026-07-03 04:30:28,178][ INFO][PID:1858101] Checking for cancel request [2026-07-03 04:30:33,179][ INFO][PID:1858101] Checking for cancel request [2026-07-03 04:30:38,181][ INFO][PID:1858101] Checking for cancel request [2026-07-03 04:30:43,197][ INFO][PID:1858101] Checking for cancel request [2026-07-03 04:30:48,201][ INFO][PID:1858101] Checking for cancel request [2026-07-03 04:30:53,202][ INFO][PID:1858101] Checking for cancel request [2026-07-03 04:30:58,255][ INFO][PID:1858101] Checking for cancel request [2026-07-03 04:31:03,267][ INFO][PID:1858101] Checking for cancel request [2026-07-03 04:31:08,285][ INFO][PID:1858101] Checking for cancel request [2026-07-03 04:31:13,293][ INFO][PID:1858101] Checking for cancel request [2026-07-03 04:31:18,295][ INFO][PID:1858101] Checking for cancel request [2026-07-03 04:31:23,344][ INFO][PID:1858101] Checking for cancel request [2026-07-03 04:31:28,345][ INFO][PID:1858101] Checking for cancel request [2026-07-03 04:31:33,352][ INFO][PID:1858101] Checking for cancel request [2026-07-03 04:31:38,354][ INFO][PID:1858101] Checking for cancel request [2026-07-03 04:31:43,446][ INFO][PID:1858101] Checking for cancel request [2026-07-03 04:31:48,448][ INFO][PID:1858101] Checking for cancel request [2026-07-03 04:31:53,459][ INFO][PID:1858101] Checking for cancel request [2026-07-03 04:31:58,461][ INFO][PID:1858101] Checking for cancel request [2026-07-03 04:32:03,462][ INFO][PID:1858101] Checking for cancel request [2026-07-03 04:32:08,464][ INFO][PID:1858101] Checking for cancel request [2026-07-03 04:32:13,465][ INFO][PID:1858101] Checking for cancel request [2026-07-03 04:32:18,466][ INFO][PID:1858101] Checking for cancel request [2026-07-03 04:32:23,468][ INFO][PID:1858101] Checking for cancel request [2026-07-03 04:32:28,469][ INFO][PID:1858101] Checking for cancel request [2026-07-03 04:32:33,473][ INFO][PID:1858101] Checking for cancel request [2026-07-03 04:32:38,475][ INFO][PID:1858101] Checking for cancel request [2026-07-03 04:32:43,476][ INFO][PID:1858101] Checking for cancel request [2026-07-03 04:32:48,478][ INFO][PID:1858101] Checking for cancel request [2026-07-03 04:32:53,480][ INFO][PID:1858101] Checking for cancel request [2026-07-03 04:32:58,481][ INFO][PID:1858101] Checking for cancel request [2026-07-03 04:33:03,483][ INFO][PID:1858101] Checking for cancel request [2026-07-03 04:33:08,484][ INFO][PID:1858101] Checking for cancel request [2026-07-03 04:33:13,486][ INFO][PID:1858101] Checking for cancel request [2026-07-03 04:33:18,496][ INFO][PID:1858101] Checking for cancel request [2026-07-03 04:33:23,508][ INFO][PID:1858101] Checking for cancel request [2026-07-03 04:33:28,509][ INFO][PID:1858101] Checking for cancel request [2026-07-03 04:33:33,510][ INFO][PID:1858101] Checking for cancel request [2026-07-03 04:33:38,512][ INFO][PID:1858101] Checking for cancel request [2026-07-03 04:33:43,526][ INFO][PID:1858101] Checking for cancel request [2026-07-03 04:33:48,549][ INFO][PID:1858101] Checking for cancel request [2026-07-03 04:33:53,554][ INFO][PID:1858101] Checking for cancel request [2026-07-03 04:33:58,649][ INFO][PID:1858101] Checking for cancel request [2026-07-03 04:34:03,655][ INFO][PID:1858101] Checking for cancel request [2026-07-03 04:34:08,663][ INFO][PID:1858101] Checking for cancel request [2026-07-03 04:34:13,665][ INFO][PID:1858101] Checking for cancel request [2026-07-03 04:34:18,695][ INFO][PID:1858101] Checking for cancel request [2026-07-03 04:34:23,739][ INFO][PID:1858101] Checking for cancel request [2026-07-03 04:34:28,764][ INFO][PID:1858101] Checking for cancel request [2026-07-03 04:34:33,783][ INFO][PID:1858101] Checking for cancel request [2026-07-03 04:34:38,784][ INFO][PID:1858101] Checking for cancel request [2026-07-03 04:34:43,795][ INFO][PID:1858101] Checking for cancel request [2026-07-03 04:34:48,812][ INFO][PID:1858101] Checking for cancel request [2026-07-03 04:34:53,818][ INFO][PID:1858101] Checking for cancel request [2026-07-03 04:34:58,825][ INFO][PID:1858101] Checking for cancel request [2026-07-03 04:35:03,828][ INFO][PID:1858101] Checking for cancel request [2026-07-03 04:35:08,841][ INFO][PID:1858101] Checking for cancel request [2026-07-03 04:35:13,869][ INFO][PID:1858101] Checking for cancel request [2026-07-03 04:35:18,894][ INFO][PID:1858101] Checking for cancel request [2026-07-03 04:35:23,917][ INFO][PID:1858101] Checking for cancel request [2026-07-03 04:35:28,968][ INFO][PID:1858101] Checking for cancel request [2026-07-03 04:35:39,254][ INFO][PID:1858101] Periodic builder liveness probe: alive [2026-07-03 04:35:39,777][ INFO][PID:1858101] Checking for cancel request [2026-07-03 04:35:43,043][ INFO][PID:1858101] Downloading results from builder [2026-07-03 04:35:43,624][ INFO][PID:1858101] rsyncing of mockbuilder@3.95.252.129:/var/lib/copr-rpmbuild/results/ to /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5368/srpm-builds/10677301 started [2026-07-03 04:35:44,676][ INFO][PID:1858101] Popen command started: /usr/bin/rsync -rltDvH --chmod=D755,F644 -e 'ssh -F /home/copr/.ssh/config' mockbuilder@3.95.252.129:/var/lib/copr-rpmbuild/results/ /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5368/srpm-builds/10677301/ &> /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5368/srpm-builds/10677301/build-10677301.rsync.log [2026-07-03 04:35:50,673][ INFO][PID:1858101] rsyncing finished. [2026-07-03 04:35:50,736][ INFO][PID:1858101] VM Release request [2026-07-03 04:35:51,617][ INFO][PID:1858101] Searching for 'success' file in resultdir [2026-07-03 04:35:52,887][ INFO][PID:1858101] Getting build details [2026-07-03 04:35:53,009][ INFO][PID:1858101] Retrieving SRPM info from /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5368/srpm-builds/10677301 [2026-07-03 04:35:54,647][ INFO][PID:1858101] SRPM URL: https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5368/srpm-builds/10677301/Sunshine-0.0.5368-1.src.rpm [2026-07-03 04:35:54,656][ INFO][PID:1858101] build details: {'srpm_url': 'https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5368/srpm-builds/10677301/Sunshine-0.0.5368-1.src.rpm', 'pkg_name': 'Sunshine', 'pkg_version': '0.0.5368-1'} [2026-07-03 04:35:54,907][ INFO][PID:1858101] Finished build: id=10677301 failed=False timeout=108000 destdir=/var/lib/copr/public_html/results/lizardbyte/pulls:pr:5368 chroot=srpm-builds [2026-07-03 04:35:56,832][ INFO][PID:1858101] Worker succeeded build, took 629.892904996872 [2026-07-03 04:35:57,185][ INFO][PID:1858101] 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": 1783053356.8093061, "started_on": 1783052726.9164011, "submitted_on": null, "status": 1, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10677301", "build_id": 10677301, "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\": \"tmpwlpzud0o\", \"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/10677301/Sunshine-0.0.5368-1.src.rpm", "uses_devel_repo": null, "sandbox": "lizardbyte/pulls--009217da-2fdb-4d8a-b3a5-8e4562d756ce", "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": "10677301", "built_packages": "", "tags": [ "arch_x86_64" ], "rpmeta_prediction": null, "pkg_version": "0.0.5368-1", "id": 10677301, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2026-07-03 04:36:14,449][ INFO][PID:1858101] Sending fedora-messaging bus message in build.end [2026-07-03 04:36:24,203][ INFO][PID:1858101] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5368/srpm-builds/10677301/builder-live.log by gzip [2026-07-03 04:36:24,741][ INFO][PID:1858101] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5368/srpm-builds/10677301/builder-live.log' as PID 1924314 [2026-07-03 04:36:25,328][ INFO][PID:1858101] Finished after 1 seconds with exit code 0 (gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5368/srpm-builds/10677301/builder-live.log) [2026-07-03 04:36:25,437][ INFO][PID:1858101] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5368/srpm-builds/10677301/backend.log by gzip [2026-07-03 04:36:25,440][ INFO][PID:1858101] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5368/srpm-builds/10677301/backend.log' as PID 1924508