[2026-09-14 16:23:00,271][ INFO][PID:4135240] Marking build as starting [2026-09-14 16:23:00,300][ INFO][PID:4135240] Checking for cancel request [2026-09-14 16:23:00,300][ INFO][PID:4135240] VM allocation process starts [2026-09-14 16:23:00,305][ INFO][PID:4135240] Trying to allocate VM: ResallocHost, ticket_id=5018442, requested_tags=['arch_x86_64', 'copr_builder'] [2026-09-14 16:23:05,306][ INFO][PID:4135240] Checking for cancel request [2026-09-14 16:23:06,317][ INFO][PID:4135240] Allocated host ResallocHost, ticket_id=5018442, hostname=2620:52:6:1161:dead:beef:cafe:c11e, name=vmhost_x86_04_prod_37357492_20260914_161440, requested_tags=['arch_x86_64', 'copr_builder'] [2026-09-14 16:23:06,317][ INFO][PID:4135240] Allocating ssh connection to builder [2026-09-14 16:23:06,317][ INFO][PID:4135240] Checking that builder machine is OK [2026-09-14 16:23:06,896][ INFO][PID:4135240] Installed copr-rpmbuild version: 1.9 [2026-09-14 16:23:06,897][ INFO][PID:4135240] Running remote command: copr-builder-ready srpm-builds [2026-09-14 16:23:07,210][ INFO][PID:4135240] Red Hat subscription not needed for srpm-builds Builder is ready to be used [2026-09-14 16:23:07,211][ INFO][PID:4135240] Filling build.info file with builder info [2026-09-14 16:23:07,211][ INFO][PID:4135240] Checking for cancel request [2026-09-14 16:23:07,211][ INFO][PID:4135240] 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:5719", "submitter": null, "ended_on": null, "started_on": 1789402987.21178, "submitted_on": null, "status": 3, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10985159", "build_id": 10985159, "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-45-x86_64\", \"builddeps\": \"git jq python3 rpmlint\", \"resultdir\": \"\", \"repos\": \"\", \"tmp\": \"tmpysladmw1\", \"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--876d6963-7493-45d6-a2ab-d98265ab3bae", "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-45", "fedora-rawhide", "opensuse-leap-16.0", "opensuse-tumbleweed" ], "distributions_in_project": [ "fedora-43", "fedora-44", "fedora-45", "fedora-rawhide", "opensuse-leap-16.0", "opensuse-tumbleweed" ], "destdir": "/var/lib/copr/public_html/results/lizardbyte/pulls:pr:5719", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5719", "result_dir": "10985159", "built_packages": "", "tags": [ "arch_x86_64" ], "rpmeta_prediction": null, "id": 10985159, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2026-09-14 16:23:07,238][ INFO][PID:4135240] Sending fedora-messaging bus message in build.start [2026-09-14 16:23:07,585][ INFO][PID:4135240] Sending fedora-messaging bus message in chroot.start [2026-09-14 16:23:07,603][ INFO][PID:4135240] Starting remote build: copr-rpmbuild --verbose --drop-resultdir --srpm --task-url https://copr.fedorainfracloud.org/backend/get-srpm-build-task/10985159 --detached [2026-09-14 16:23:08,200][ INFO][PID:4135240] The copr-rpmbuild seems started, per: stdout: stderr: Warning: Permanently added '2620:52:6:1161:dead:beef:cafe:c11e' (ED25519) to the list of known hosts. [2026-09-14 16:23:08,298][ INFO][PID:4135240] Downloading the builder-live.log file, attempt 1 [2026-09-14 16:23:08,299][ INFO][PID:4135240] Popen command started: ssh -F /home/copr/.ssh/config mockbuilder@2620:52:6:1161:dead:beef:cafe:c11e copr-rpmbuild-log [2026-09-14 16:23:13,303][ INFO][PID:4135240] Periodic builder liveness probe: alive [2026-09-14 16:23:13,303][ INFO][PID:4135240] Checking for cancel request [2026-09-14 16:23:18,304][ INFO][PID:4135240] Checking for cancel request [2026-09-14 16:23:23,305][ INFO][PID:4135240] Checking for cancel request [2026-09-14 16:23:28,306][ INFO][PID:4135240] Checking for cancel request [2026-09-14 16:23:33,306][ INFO][PID:4135240] Checking for cancel request [2026-09-14 16:23:38,883][ INFO][PID:4135240] Checking for cancel request [2026-09-14 16:23:43,884][ INFO][PID:4135240] Checking for cancel request [2026-09-14 16:23:48,885][ INFO][PID:4135240] Checking for cancel request [2026-09-14 16:23:53,885][ INFO][PID:4135240] Checking for cancel request [2026-09-14 16:23:58,886][ INFO][PID:4135240] Checking for cancel request [2026-09-14 16:24:03,887][ INFO][PID:4135240] Checking for cancel request [2026-09-14 16:24:08,888][ INFO][PID:4135240] Checking for cancel request [2026-09-14 16:24:13,889][ INFO][PID:4135240] Checking for cancel request [2026-09-14 16:24:18,889][ INFO][PID:4135240] Checking for cancel request [2026-09-14 16:24:23,890][ INFO][PID:4135240] Checking for cancel request [2026-09-14 16:24:28,891][ INFO][PID:4135240] Checking for cancel request [2026-09-14 16:24:33,892][ INFO][PID:4135240] Checking for cancel request [2026-09-14 16:24:38,892][ INFO][PID:4135240] Checking for cancel request [2026-09-14 16:24:43,893][ INFO][PID:4135240] Checking for cancel request [2026-09-14 16:24:48,894][ INFO][PID:4135240] Checking for cancel request [2026-09-14 16:24:53,895][ INFO][PID:4135240] Checking for cancel request [2026-09-14 16:24:58,896][ INFO][PID:4135240] Checking for cancel request [2026-09-14 16:25:03,896][ INFO][PID:4135240] Checking for cancel request [2026-09-14 16:25:08,898][ INFO][PID:4135240] Checking for cancel request [2026-09-14 16:25:13,900][ INFO][PID:4135240] Checking for cancel request [2026-09-14 16:25:18,900][ INFO][PID:4135240] Checking for cancel request [2026-09-14 16:25:23,904][ INFO][PID:4135240] Checking for cancel request [2026-09-14 16:25:28,906][ INFO][PID:4135240] Checking for cancel request [2026-09-14 16:25:33,906][ INFO][PID:4135240] Checking for cancel request [2026-09-14 16:25:38,907][ INFO][PID:4135240] Checking for cancel request [2026-09-14 16:25:43,908][ INFO][PID:4135240] Checking for cancel request [2026-09-14 16:25:48,909][ INFO][PID:4135240] Checking for cancel request [2026-09-14 16:25:53,910][ INFO][PID:4135240] Checking for cancel request [2026-09-14 16:25:58,911][ INFO][PID:4135240] Checking for cancel request [2026-09-14 16:26:03,912][ INFO][PID:4135240] Checking for cancel request [2026-09-14 16:26:08,913][ INFO][PID:4135240] Checking for cancel request [2026-09-14 16:26:13,914][ INFO][PID:4135240] Checking for cancel request [2026-09-14 16:26:18,915][ INFO][PID:4135240] Checking for cancel request [2026-09-14 16:26:23,916][ INFO][PID:4135240] Checking for cancel request [2026-09-14 16:26:28,916][ INFO][PID:4135240] Checking for cancel request [2026-09-14 16:26:33,917][ INFO][PID:4135240] Checking for cancel request [2026-09-14 16:26:38,919][ INFO][PID:4135240] Checking for cancel request [2026-09-14 16:26:44,731][ INFO][PID:4135240] Checking for cancel request [2026-09-14 16:26:49,732][ INFO][PID:4135240] Checking for cancel request [2026-09-14 16:26:54,732][ INFO][PID:4135240] Checking for cancel request [2026-09-14 16:26:59,733][ INFO][PID:4135240] Checking for cancel request [2026-09-14 16:27:04,734][ INFO][PID:4135240] Checking for cancel request [2026-09-14 16:27:09,888][ INFO][PID:4135240] Checking for cancel request [2026-09-14 16:27:14,890][ INFO][PID:4135240] Checking for cancel request [2026-09-14 16:27:19,892][ INFO][PID:4135240] Checking for cancel request [2026-09-14 16:27:24,894][ INFO][PID:4135240] Checking for cancel request [2026-09-14 16:27:29,895][ INFO][PID:4135240] Checking for cancel request [2026-09-14 16:27:34,897][ INFO][PID:4135240] Checking for cancel request [2026-09-14 16:27:39,898][ INFO][PID:4135240] Checking for cancel request [2026-09-14 16:27:44,900][ INFO][PID:4135240] Checking for cancel request [2026-09-14 16:27:49,901][ INFO][PID:4135240] Checking for cancel request [2026-09-14 16:27:54,903][ INFO][PID:4135240] Checking for cancel request [2026-09-14 16:27:59,905][ INFO][PID:4135240] Checking for cancel request [2026-09-14 16:28:04,906][ INFO][PID:4135240] Checking for cancel request [2026-09-14 16:28:09,911][ INFO][PID:4135240] Checking for cancel request [2026-09-14 16:28:14,912][ INFO][PID:4135240] Checking for cancel request [2026-09-14 16:28:20,034][ INFO][PID:4135240] Checking for cancel request [2026-09-14 16:28:25,036][ INFO][PID:4135240] Checking for cancel request [2026-09-14 16:28:30,040][ INFO][PID:4135240] Checking for cancel request [2026-09-14 16:28:35,042][ INFO][PID:4135240] Checking for cancel request [2026-09-14 16:28:40,043][ INFO][PID:4135240] Checking for cancel request [2026-09-14 16:28:45,044][ INFO][PID:4135240] Checking for cancel request [2026-09-14 16:28:50,045][ INFO][PID:4135240] Checking for cancel request [2026-09-14 16:28:55,046][ INFO][PID:4135240] Checking for cancel request [2026-09-14 16:29:00,048][ INFO][PID:4135240] Checking for cancel request [2026-09-14 16:29:05,050][ INFO][PID:4135240] Checking for cancel request [2026-09-14 16:29:10,050][ INFO][PID:4135240] Checking for cancel request [2026-09-14 16:29:15,051][ INFO][PID:4135240] Checking for cancel request [2026-09-14 16:29:20,052][ INFO][PID:4135240] Checking for cancel request [2026-09-14 16:29:25,053][ INFO][PID:4135240] Checking for cancel request [2026-09-14 16:29:30,054][ INFO][PID:4135240] Checking for cancel request [2026-09-14 16:29:35,256][ INFO][PID:4135240] Checking for cancel request [2026-09-14 16:29:40,257][ INFO][PID:4135240] Checking for cancel request [2026-09-14 16:29:45,257][ INFO][PID:4135240] Checking for cancel request [2026-09-14 16:29:50,258][ INFO][PID:4135240] Checking for cancel request [2026-09-14 16:29:55,259][ INFO][PID:4135240] Checking for cancel request [2026-09-14 16:30:00,260][ INFO][PID:4135240] Checking for cancel request [2026-09-14 16:30:05,261][ INFO][PID:4135240] Checking for cancel request [2026-09-14 16:30:10,262][ INFO][PID:4135240] Checking for cancel request [2026-09-14 16:30:15,264][ INFO][PID:4135240] Checking for cancel request [2026-09-14 16:30:20,267][ INFO][PID:4135240] Checking for cancel request [2026-09-14 16:30:25,268][ INFO][PID:4135240] Checking for cancel request [2026-09-14 16:30:30,269][ INFO][PID:4135240] Checking for cancel request [2026-09-14 16:30:35,269][ INFO][PID:4135240] Checking for cancel request [2026-09-14 16:30:40,270][ INFO][PID:4135240] Checking for cancel request [2026-09-14 16:30:45,271][ INFO][PID:4135240] Checking for cancel request [2026-09-14 16:30:50,272][ INFO][PID:4135240] Checking for cancel request [2026-09-14 16:30:55,273][ INFO][PID:4135240] Checking for cancel request [2026-09-14 16:31:00,273][ INFO][PID:4135240] Checking for cancel request [2026-09-14 16:31:05,274][ INFO][PID:4135240] Checking for cancel request [2026-09-14 16:31:10,275][ INFO][PID:4135240] Checking for cancel request [2026-09-14 16:31:15,276][ INFO][PID:4135240] Checking for cancel request [2026-09-14 16:31:20,277][ INFO][PID:4135240] Checking for cancel request [2026-09-14 16:31:25,278][ INFO][PID:4135240] Checking for cancel request [2026-09-14 16:31:30,278][ INFO][PID:4135240] Checking for cancel request [2026-09-14 16:31:35,279][ INFO][PID:4135240] Checking for cancel request [2026-09-14 16:31:40,280][ INFO][PID:4135240] Checking for cancel request [2026-09-14 16:31:45,281][ INFO][PID:4135240] Checking for cancel request [2026-09-14 16:31:50,282][ INFO][PID:4135240] Checking for cancel request [2026-09-14 16:31:55,283][ INFO][PID:4135240] Checking for cancel request [2026-09-14 16:32:00,284][ INFO][PID:4135240] Checking for cancel request [2026-09-14 16:32:05,284][ INFO][PID:4135240] Checking for cancel request [2026-09-14 16:32:10,285][ INFO][PID:4135240] Checking for cancel request [2026-09-14 16:32:15,286][ INFO][PID:4135240] Checking for cancel request [2026-09-14 16:32:20,287][ INFO][PID:4135240] Checking for cancel request [2026-09-14 16:32:25,288][ INFO][PID:4135240] Checking for cancel request [2026-09-14 16:32:30,289][ INFO][PID:4135240] Checking for cancel request [2026-09-14 16:32:35,290][ INFO][PID:4135240] Checking for cancel request [2026-09-14 16:32:40,291][ INFO][PID:4135240] Checking for cancel request [2026-09-14 16:32:45,291][ INFO][PID:4135240] Checking for cancel request [2026-09-14 16:32:50,292][ INFO][PID:4135240] Checking for cancel request [2026-09-14 16:32:55,293][ INFO][PID:4135240] Checking for cancel request [2026-09-14 16:33:00,295][ INFO][PID:4135240] Checking for cancel request [2026-09-14 16:33:05,296][ INFO][PID:4135240] Checking for cancel request [2026-09-14 16:33:10,296][ INFO][PID:4135240] Checking for cancel request [2026-09-14 16:33:15,301][ INFO][PID:4135240] Periodic builder liveness probe: alive [2026-09-14 16:33:15,302][ INFO][PID:4135240] Checking for cancel request [2026-09-14 16:33:20,302][ INFO][PID:4135240] Checking for cancel request [2026-09-14 16:33:25,303][ INFO][PID:4135240] Checking for cancel request [2026-09-14 16:33:30,304][ INFO][PID:4135240] Checking for cancel request [2026-09-14 16:33:35,305][ INFO][PID:4135240] Checking for cancel request [2026-09-14 16:33:40,305][ INFO][PID:4135240] Checking for cancel request [2026-09-14 16:33:45,306][ INFO][PID:4135240] Checking for cancel request [2026-09-14 16:33:50,307][ INFO][PID:4135240] Checking for cancel request [2026-09-14 16:33:55,308][ INFO][PID:4135240] Checking for cancel request [2026-09-14 16:34:00,309][ INFO][PID:4135240] Checking for cancel request [2026-09-14 16:34:05,309][ INFO][PID:4135240] Checking for cancel request [2026-09-14 16:34:10,310][ INFO][PID:4135240] Checking for cancel request [2026-09-14 16:34:15,311][ INFO][PID:4135240] Checking for cancel request [2026-09-14 16:34:20,312][ INFO][PID:4135240] Checking for cancel request [2026-09-14 16:34:22,505][ INFO][PID:4135240] Downloading results from builder [2026-09-14 16:34:22,506][ INFO][PID:4135240] rsyncing of mockbuilder@[2620:52:6:1161:dead:beef:cafe:c11e]:/var/lib/copr-rpmbuild/results/ to /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5719/srpm-builds/10985159 started [2026-09-14 16:34:22,507][ INFO][PID:4135240] Popen command started: /usr/bin/rsync -rltDvH --chmod=D755,F644 -e 'ssh -F /home/copr/.ssh/config' mockbuilder@[2620:52:6:1161:dead:beef:cafe:c11e]:/var/lib/copr-rpmbuild/results/ /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5719/srpm-builds/10985159/ &> /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5719/srpm-builds/10985159/build-10985159.rsync.log [2026-09-14 16:34:31,752][ INFO][PID:4135240] rsyncing finished. [2026-09-14 16:34:31,753][ INFO][PID:4135240] VM Release request [2026-09-14 16:34:31,760][ INFO][PID:4135240] Searching for 'success' file in resultdir [2026-09-14 16:34:31,761][ INFO][PID:4135240] Getting build details [2026-09-14 16:34:31,761][ INFO][PID:4135240] Retrieving SRPM info from /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5719/srpm-builds/10985159 [2026-09-14 16:34:31,761][ INFO][PID:4135240] SRPM URL: https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5719/srpm-builds/10985159/Sunshine-0.0.5719-1.src.rpm [2026-09-14 16:34:31,762][ INFO][PID:4135240] build details: {'srpm_url': 'https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5719/srpm-builds/10985159/Sunshine-0.0.5719-1.src.rpm', 'pkg_name': 'Sunshine', 'pkg_version': '0.0.5719-1'} [2026-09-14 16:34:31,762][ INFO][PID:4135240] Finished build: id=10985159 failed=False timeout=108000 destdir=/var/lib/copr/public_html/results/lizardbyte/pulls:pr:5719 chroot=srpm-builds [2026-09-14 16:34:31,762][ INFO][PID:4135240] Worker succeeded build, took 684.5509190559387 [2026-09-14 16:34:31,763][ INFO][PID:4135240] 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:5719", "submitter": null, "ended_on": 1789403671.7626991, "started_on": 1789402987.21178, "submitted_on": null, "status": 1, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10985159", "build_id": 10985159, "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-45-x86_64\", \"builddeps\": \"git jq python3 rpmlint\", \"resultdir\": \"\", \"repos\": \"\", \"tmp\": \"tmpysladmw1\", \"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:5719/srpm-builds/10985159/Sunshine-0.0.5719-1.src.rpm", "uses_devel_repo": null, "sandbox": "lizardbyte/pulls--876d6963-7493-45d6-a2ab-d98265ab3bae", "results": { "architecture_specific_tags": { "fedora-43": {}, "fedora-44": {}, "fedora-45": {}, "fedora-rawhide": {}, "opensuse-leap-16.0": {}, "opensuse-tumbleweed": {} }, "name": "Sunshine", "epoch": null, "version": "0.0.5719", "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-45", "fedora-rawhide", "opensuse-leap-16.0", "opensuse-tumbleweed" ], "distributions_in_project": [ "fedora-43", "fedora-44", "fedora-45", "fedora-rawhide", "opensuse-leap-16.0", "opensuse-tumbleweed" ], "destdir": "/var/lib/copr/public_html/results/lizardbyte/pulls:pr:5719", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5719", "result_dir": "10985159", "built_packages": "", "tags": [ "arch_x86_64" ], "rpmeta_prediction": null, "pkg_version": "0.0.5719-1", "id": 10985159, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2026-09-14 16:34:31,842][ INFO][PID:4135240] Sending fedora-messaging bus message in build.end [2026-09-14 16:34:31,861][ INFO][PID:4135240] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5719/srpm-builds/10985159/builder-live.log by gzip [2026-09-14 16:34:31,862][ INFO][PID:4135240] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5719/srpm-builds/10985159/builder-live.log' as PID 42832 [2026-09-14 16:34:31,866][ INFO][PID:4135240] Finished after 0 seconds with exit code 0 (gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5719/srpm-builds/10985159/builder-live.log) [2026-09-14 16:34:31,867][ INFO][PID:4135240] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5719/srpm-builds/10985159/backend.log by gzip [2026-09-14 16:34:31,867][ INFO][PID:4135240] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5719/srpm-builds/10985159/backend.log' as PID 42841