[2026-07-08 19:07:26,738][ INFO][PID:496563] Marking build as starting [2026-07-08 19:07:26,829][ INFO][PID:496563] Checking for cancel request [2026-07-08 19:07:26,835][ INFO][PID:496563] VM allocation process starts [2026-07-08 19:07:26,872][ INFO][PID:496563] Trying to allocate VM: ResallocHost, ticket_id=3817835, requested_tags=['arch_x86_64', 'copr_builder'] [2026-07-08 19:07:29,900][ INFO][PID:496563] Allocated host ResallocHost, ticket_id=3817835, hostname=98.93.121.145, name=aws_x86_64_reserved_prod_12974402_20260708_185547, requested_tags=['arch_x86_64', 'copr_builder'] [2026-07-08 19:07:29,901][ INFO][PID:496563] Allocating ssh connection to builder [2026-07-08 19:07:29,901][ INFO][PID:496563] Checking that builder machine is OK [2026-07-08 19:07:30,239][ INFO][PID:496563] Installed copr-rpmbuild version: 1.8 [2026-07-08 19:07:30,240][ INFO][PID:496563] Running remote command: copr-builder-ready srpm-builds [2026-07-08 19:07:30,441][ INFO][PID:496563] Red Hat subscription not needed for srpm-builds Builder is ready to be used [2026-07-08 19:07:30,442][ INFO][PID:496563] Filling build.info file with builder info [2026-07-08 19:07:30,443][ INFO][PID:496563] Checking for cancel request [2026-07-08 19:07:30,446][ INFO][PID:496563] 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:5392", "submitter": null, "ended_on": null, "started_on": 1783537650.4462893, "submitted_on": null, "status": 3, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10699136", "build_id": 10699136, "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\": \"tmpk9xi1ywo\", \"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--a78946b2-6f64-4384-8a91-a43ec61826f1", "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:5392", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5392", "result_dir": "10699136", "built_packages": "", "tags": [ "arch_x86_64" ], "rpmeta_prediction": null, "id": 10699136, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2026-07-08 19:07:30,504][ INFO][PID:496563] Sending fedora-messaging bus message in build.start [2026-07-08 19:07:31,066][ INFO][PID:496563] Sending fedora-messaging bus message in chroot.start [2026-07-08 19:07:31,093][ INFO][PID:496563] Starting remote build: copr-rpmbuild --verbose --drop-resultdir --srpm --task-url https://copr.fedorainfracloud.org/backend/get-srpm-build-task/10699136 --detached [2026-07-08 19:07:31,818][ INFO][PID:496563] The copr-rpmbuild seems started, per: stdout: stderr: Warning: Permanently added '98.93.121.145' (ED25519) to the list of known hosts. [2026-07-08 19:07:31,819][ INFO][PID:496563] Downloading the builder-live.log file, attempt 1 [2026-07-08 19:07:31,821][ INFO][PID:496563] Popen command started: ssh -F /home/copr/.ssh/config mockbuilder@98.93.121.145 copr-rpmbuild-log [2026-07-08 19:07:36,834][ INFO][PID:496563] Periodic builder liveness probe: alive [2026-07-08 19:07:36,835][ INFO][PID:496563] Checking for cancel request [2026-07-08 19:07:41,836][ INFO][PID:496563] Checking for cancel request [2026-07-08 19:07:46,839][ INFO][PID:496563] Checking for cancel request [2026-07-08 19:07:51,844][ INFO][PID:496563] Checking for cancel request [2026-07-08 19:07:56,848][ INFO][PID:496563] Checking for cancel request [2026-07-08 19:08:01,857][ INFO][PID:496563] Checking for cancel request [2026-07-08 19:08:06,865][ INFO][PID:496563] Checking for cancel request [2026-07-08 19:08:11,867][ INFO][PID:496563] Checking for cancel request [2026-07-08 19:08:16,869][ INFO][PID:496563] Checking for cancel request [2026-07-08 19:08:21,877][ INFO][PID:496563] Checking for cancel request [2026-07-08 19:08:26,887][ INFO][PID:496563] Checking for cancel request [2026-07-08 19:08:31,892][ INFO][PID:496563] Checking for cancel request [2026-07-08 19:08:36,896][ INFO][PID:496563] Checking for cancel request [2026-07-08 19:08:41,903][ INFO][PID:496563] Checking for cancel request [2026-07-08 19:08:46,912][ INFO][PID:496563] Checking for cancel request [2026-07-08 19:08:51,916][ INFO][PID:496563] Checking for cancel request [2026-07-08 19:08:56,918][ INFO][PID:496563] Checking for cancel request [2026-07-08 19:09:01,921][ INFO][PID:496563] Checking for cancel request [2026-07-08 19:09:06,935][ INFO][PID:496563] Checking for cancel request [2026-07-08 19:09:11,942][ INFO][PID:496563] Checking for cancel request [2026-07-08 19:09:16,959][ INFO][PID:496563] Checking for cancel request [2026-07-08 19:09:21,963][ INFO][PID:496563] Checking for cancel request [2026-07-08 19:09:26,969][ INFO][PID:496563] Checking for cancel request [2026-07-08 19:09:31,973][ INFO][PID:496563] Checking for cancel request [2026-07-08 19:09:36,985][ INFO][PID:496563] Checking for cancel request [2026-07-08 19:09:41,992][ INFO][PID:496563] Checking for cancel request [2026-07-08 19:09:46,995][ INFO][PID:496563] Checking for cancel request [2026-07-08 19:09:52,002][ INFO][PID:496563] Checking for cancel request [2026-07-08 19:09:57,004][ INFO][PID:496563] Checking for cancel request [2026-07-08 19:10:02,010][ INFO][PID:496563] Checking for cancel request [2026-07-08 19:10:07,012][ INFO][PID:496563] Checking for cancel request [2026-07-08 19:10:12,019][ INFO][PID:496563] Checking for cancel request [2026-07-08 19:10:17,021][ INFO][PID:496563] Checking for cancel request [2026-07-08 19:10:22,054][ INFO][PID:496563] Checking for cancel request [2026-07-08 19:10:27,075][ INFO][PID:496563] Checking for cancel request [2026-07-08 19:10:32,082][ INFO][PID:496563] Checking for cancel request [2026-07-08 19:10:37,091][ INFO][PID:496563] Checking for cancel request [2026-07-08 19:10:42,100][ INFO][PID:496563] Checking for cancel request [2026-07-08 19:10:47,106][ INFO][PID:496563] Checking for cancel request [2026-07-08 19:10:52,114][ INFO][PID:496563] Checking for cancel request [2026-07-08 19:10:57,118][ INFO][PID:496563] Checking for cancel request [2026-07-08 19:11:02,120][ INFO][PID:496563] Checking for cancel request [2026-07-08 19:11:07,122][ INFO][PID:496563] Checking for cancel request [2026-07-08 19:11:12,124][ INFO][PID:496563] Checking for cancel request [2026-07-08 19:11:17,127][ INFO][PID:496563] Checking for cancel request [2026-07-08 19:11:22,130][ INFO][PID:496563] Checking for cancel request [2026-07-08 19:11:27,132][ INFO][PID:496563] Checking for cancel request [2026-07-08 19:11:32,135][ INFO][PID:496563] Checking for cancel request [2026-07-08 19:11:37,136][ INFO][PID:496563] Checking for cancel request [2026-07-08 19:11:42,140][ INFO][PID:496563] Checking for cancel request [2026-07-08 19:11:47,147][ INFO][PID:496563] Checking for cancel request [2026-07-08 19:11:52,154][ INFO][PID:496563] Checking for cancel request [2026-07-08 19:11:57,156][ INFO][PID:496563] Checking for cancel request [2026-07-08 19:12:02,158][ INFO][PID:496563] Checking for cancel request [2026-07-08 19:12:07,161][ INFO][PID:496563] Checking for cancel request [2026-07-08 19:12:12,165][ INFO][PID:496563] Checking for cancel request [2026-07-08 19:12:17,166][ INFO][PID:496563] Checking for cancel request [2026-07-08 19:12:22,168][ INFO][PID:496563] Checking for cancel request [2026-07-08 19:12:27,175][ INFO][PID:496563] Checking for cancel request [2026-07-08 19:12:32,181][ INFO][PID:496563] Checking for cancel request [2026-07-08 19:12:37,182][ INFO][PID:496563] Checking for cancel request [2026-07-08 19:12:42,185][ INFO][PID:496563] Checking for cancel request [2026-07-08 19:12:47,187][ INFO][PID:496563] Checking for cancel request [2026-07-08 19:12:52,189][ INFO][PID:496563] Checking for cancel request [2026-07-08 19:12:57,191][ INFO][PID:496563] Checking for cancel request [2026-07-08 19:13:02,193][ INFO][PID:496563] Checking for cancel request [2026-07-08 19:13:07,194][ INFO][PID:496563] Checking for cancel request [2026-07-08 19:13:12,196][ INFO][PID:496563] Checking for cancel request [2026-07-08 19:13:17,197][ INFO][PID:496563] Checking for cancel request [2026-07-08 19:13:22,198][ INFO][PID:496563] Checking for cancel request [2026-07-08 19:13:27,200][ INFO][PID:496563] Checking for cancel request [2026-07-08 19:13:32,201][ INFO][PID:496563] Checking for cancel request [2026-07-08 19:13:37,203][ INFO][PID:496563] Checking for cancel request [2026-07-08 19:13:42,205][ INFO][PID:496563] Checking for cancel request [2026-07-08 19:13:47,206][ INFO][PID:496563] Checking for cancel request [2026-07-08 19:13:52,208][ INFO][PID:496563] Checking for cancel request [2026-07-08 19:13:57,209][ INFO][PID:496563] Checking for cancel request [2026-07-08 19:14:02,212][ INFO][PID:496563] Checking for cancel request [2026-07-08 19:14:07,214][ INFO][PID:496563] Checking for cancel request [2026-07-08 19:14:12,217][ INFO][PID:496563] Checking for cancel request [2026-07-08 19:14:17,218][ INFO][PID:496563] Checking for cancel request [2026-07-08 19:14:22,220][ INFO][PID:496563] Checking for cancel request [2026-07-08 19:14:27,223][ INFO][PID:496563] Checking for cancel request [2026-07-08 19:14:32,233][ INFO][PID:496563] Checking for cancel request [2026-07-08 19:14:37,240][ INFO][PID:496563] Checking for cancel request [2026-07-08 19:14:42,242][ INFO][PID:496563] Checking for cancel request [2026-07-08 19:14:47,245][ INFO][PID:496563] Checking for cancel request [2026-07-08 19:14:52,247][ INFO][PID:496563] Checking for cancel request [2026-07-08 19:14:57,250][ INFO][PID:496563] Checking for cancel request [2026-07-08 19:15:02,252][ INFO][PID:496563] Checking for cancel request [2026-07-08 19:15:07,254][ INFO][PID:496563] Checking for cancel request [2026-07-08 19:15:12,256][ INFO][PID:496563] Checking for cancel request [2026-07-08 19:15:17,257][ INFO][PID:496563] Checking for cancel request [2026-07-08 19:15:22,258][ INFO][PID:496563] Checking for cancel request [2026-07-08 19:15:27,260][ INFO][PID:496563] Checking for cancel request [2026-07-08 19:15:32,261][ INFO][PID:496563] Checking for cancel request [2026-07-08 19:15:37,263][ INFO][PID:496563] Checking for cancel request [2026-07-08 19:15:42,265][ INFO][PID:496563] Checking for cancel request [2026-07-08 19:15:47,267][ INFO][PID:496563] Checking for cancel request [2026-07-08 19:15:52,269][ INFO][PID:496563] Checking for cancel request [2026-07-08 19:15:57,273][ INFO][PID:496563] Checking for cancel request [2026-07-08 19:16:02,275][ INFO][PID:496563] Checking for cancel request [2026-07-08 19:16:07,276][ INFO][PID:496563] Checking for cancel request [2026-07-08 19:16:12,280][ INFO][PID:496563] Checking for cancel request [2026-07-08 19:16:17,281][ INFO][PID:496563] Checking for cancel request [2026-07-08 19:16:22,283][ INFO][PID:496563] Checking for cancel request [2026-07-08 19:16:27,286][ INFO][PID:496563] Checking for cancel request [2026-07-08 19:16:32,288][ INFO][PID:496563] Checking for cancel request [2026-07-08 19:16:37,289][ INFO][PID:496563] Checking for cancel request [2026-07-08 19:16:42,291][ INFO][PID:496563] Checking for cancel request [2026-07-08 19:16:47,293][ INFO][PID:496563] Checking for cancel request [2026-07-08 19:16:52,295][ INFO][PID:496563] Checking for cancel request [2026-07-08 19:16:57,297][ INFO][PID:496563] Checking for cancel request [2026-07-08 19:17:02,298][ INFO][PID:496563] Checking for cancel request [2026-07-08 19:17:07,301][ INFO][PID:496563] Checking for cancel request [2026-07-08 19:17:12,303][ INFO][PID:496563] Checking for cancel request [2026-07-08 19:17:17,305][ INFO][PID:496563] Checking for cancel request [2026-07-08 19:17:22,306][ INFO][PID:496563] Checking for cancel request [2026-07-08 19:17:27,310][ INFO][PID:496563] Checking for cancel request [2026-07-08 19:17:32,314][ INFO][PID:496563] Checking for cancel request [2026-07-08 19:17:37,866][ INFO][PID:496563] Periodic builder liveness probe: alive [2026-07-08 19:17:37,916][ INFO][PID:496563] Checking for cancel request [2026-07-08 19:17:42,920][ INFO][PID:496563] Checking for cancel request [2026-07-08 19:17:47,922][ INFO][PID:496563] Checking for cancel request [2026-07-08 19:17:50,148][ INFO][PID:496563] Downloading results from builder [2026-07-08 19:17:50,172][ INFO][PID:496563] rsyncing of mockbuilder@98.93.121.145:/var/lib/copr-rpmbuild/results/ to /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5392/srpm-builds/10699136 started [2026-07-08 19:17:50,229][ INFO][PID:496563] Popen command started: /usr/bin/rsync -rltDvH --chmod=D755,F644 -e 'ssh -F /home/copr/.ssh/config' mockbuilder@98.93.121.145:/var/lib/copr-rpmbuild/results/ /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5392/srpm-builds/10699136/ &> /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5392/srpm-builds/10699136/build-10699136.rsync.log [2026-07-08 19:17:56,031][ INFO][PID:496563] rsyncing finished. [2026-07-08 19:17:56,035][ INFO][PID:496563] VM Release request [2026-07-08 19:17:56,069][ INFO][PID:496563] Searching for 'success' file in resultdir [2026-07-08 19:17:56,123][ INFO][PID:496563] Getting build details [2026-07-08 19:17:56,125][ INFO][PID:496563] Retrieving SRPM info from /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5392/srpm-builds/10699136 [2026-07-08 19:17:56,197][ INFO][PID:496563] SRPM URL: https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5392/srpm-builds/10699136/Sunshine-0.0.5392-1.src.rpm [2026-07-08 19:17:56,199][ INFO][PID:496563] build details: {'srpm_url': 'https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5392/srpm-builds/10699136/Sunshine-0.0.5392-1.src.rpm', 'pkg_name': 'Sunshine', 'pkg_version': '0.0.5392-1'} [2026-07-08 19:17:56,213][ INFO][PID:496563] Finished build: id=10699136 failed=False timeout=108000 destdir=/var/lib/copr/public_html/results/lizardbyte/pulls:pr:5392 chroot=srpm-builds [2026-07-08 19:17:56,325][ INFO][PID:496563] Worker succeeded build, took 625.8783481121063 [2026-07-08 19:17:56,346][ INFO][PID:496563] 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:5392", "submitter": null, "ended_on": 1783538276.3246374, "started_on": 1783537650.4462893, "submitted_on": null, "status": 1, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10699136", "build_id": 10699136, "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\": \"tmpk9xi1ywo\", \"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:5392/srpm-builds/10699136/Sunshine-0.0.5392-1.src.rpm", "uses_devel_repo": null, "sandbox": "lizardbyte/pulls--a78946b2-6f64-4384-8a91-a43ec61826f1", "results": { "architecture_specific_tags": { "fedora-43": {}, "fedora-44": {}, "fedora-rawhide": {}, "opensuse-leap-15.6": {} }, "name": "Sunshine", "epoch": null, "version": "0.0.5392", "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:5392", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5392", "result_dir": "10699136", "built_packages": "", "tags": [ "arch_x86_64" ], "rpmeta_prediction": null, "pkg_version": "0.0.5392-1", "id": 10699136, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2026-07-08 19:17:57,251][ INFO][PID:496563] Sending fedora-messaging bus message in build.end [2026-07-08 19:17:57,636][ INFO][PID:496563] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5392/srpm-builds/10699136/builder-live.log by gzip [2026-07-08 19:17:57,656][ INFO][PID:496563] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5392/srpm-builds/10699136/builder-live.log' as PID 566668 [2026-07-08 19:17:57,677][ INFO][PID:496563] Finished after 0 seconds with exit code 0 (gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5392/srpm-builds/10699136/builder-live.log) [2026-07-08 19:17:57,683][ INFO][PID:496563] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5392/srpm-builds/10699136/backend.log by gzip [2026-07-08 19:17:57,685][ INFO][PID:496563] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5392/srpm-builds/10699136/backend.log' as PID 566670