[2026-09-14 11:15:34,770][ INFO][PID:390111] Marking build as starting [2026-09-14 11:16:04,831][ INFO][PID:390111] Checking for cancel request [2026-09-14 11:16:04,832][ INFO][PID:390111] VM allocation process starts [2026-09-14 11:16:04,849][ INFO][PID:390111] Trying to allocate VM: ResallocHost, ticket_id=5010939, requested_tags=['arch_x86_64', 'copr_builder'] [2026-09-14 11:16:07,876][ INFO][PID:390111] Allocated host ResallocHost, ticket_id=5010939, hostname=44.201.44.170, name=aws_x86_64_reserved_prod_37256904_20260914_110538, requested_tags=['arch_x86_64', 'copr_builder'] [2026-09-14 11:16:07,877][ INFO][PID:390111] Allocating ssh connection to builder [2026-09-14 11:16:07,877][ INFO][PID:390111] Checking that builder machine is OK [2026-09-14 11:16:08,162][ INFO][PID:390111] Installed copr-rpmbuild version: 1.9 [2026-09-14 11:16:08,163][ INFO][PID:390111] Running remote command: copr-builder-ready srpm-builds [2026-09-14 11:16:08,318][ INFO][PID:390111] Red Hat subscription not needed for srpm-builds Builder is ready to be used [2026-09-14 11:16:08,318][ INFO][PID:390111] Filling build.info file with builder info [2026-09-14 11:16:08,318][ INFO][PID:390111] Checking for cancel request [2026-09-14 11:16:08,319][ INFO][PID:390111] 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:5654", "submitter": null, "ended_on": null, "started_on": 1789384568.319101, "submitted_on": null, "status": 3, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10983812", "build_id": 10983812, "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\": \"tmpkawm5vcq\", \"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--19d16217-8a53-4b79-8846-a1f0e055c0b9", "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:5654", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5654", "result_dir": "10983812", "built_packages": "", "tags": [ "arch_x86_64" ], "rpmeta_prediction": null, "id": 10983812, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2026-09-14 11:16:38,377][ INFO][PID:390111] Sending fedora-messaging bus message in build.start [2026-09-14 11:16:38,995][ INFO][PID:390111] Sending fedora-messaging bus message in chroot.start [2026-09-14 11:16:39,029][ INFO][PID:390111] Starting remote build: copr-rpmbuild --verbose --drop-resultdir --srpm --task-url https://copr.fedorainfracloud.org/backend/get-srpm-build-task/10983812 --detached [2026-09-14 11:16:39,724][ INFO][PID:390111] The copr-rpmbuild seems started, per: stdout: stderr: Warning: Permanently added '44.201.44.170' (ED25519) to the list of known hosts. [2026-09-14 11:16:39,724][ INFO][PID:390111] Downloading the builder-live.log file, attempt 1 [2026-09-14 11:16:39,725][ INFO][PID:390111] Popen command started: ssh -F /home/copr/.ssh/config mockbuilder@44.201.44.170 copr-rpmbuild-log [2026-09-14 11:16:44,730][ INFO][PID:390111] Periodic builder liveness probe: alive [2026-09-14 11:16:44,732][ INFO][PID:390111] Checking for cancel request [2026-09-14 11:16:49,734][ INFO][PID:390111] Checking for cancel request [2026-09-14 11:16:54,735][ INFO][PID:390111] Checking for cancel request [2026-09-14 11:16:59,736][ INFO][PID:390111] Checking for cancel request [2026-09-14 11:17:04,737][ INFO][PID:390111] Checking for cancel request [2026-09-14 11:17:09,738][ INFO][PID:390111] Checking for cancel request [2026-09-14 11:17:14,738][ INFO][PID:390111] Checking for cancel request [2026-09-14 11:17:19,739][ INFO][PID:390111] Checking for cancel request [2026-09-14 11:17:24,740][ INFO][PID:390111] Checking for cancel request [2026-09-14 11:17:29,741][ INFO][PID:390111] Checking for cancel request [2026-09-14 11:17:34,742][ INFO][PID:390111] Checking for cancel request [2026-09-14 11:17:39,743][ INFO][PID:390111] Checking for cancel request [2026-09-14 11:17:44,744][ INFO][PID:390111] Checking for cancel request [2026-09-14 11:17:49,744][ INFO][PID:390111] Checking for cancel request [2026-09-14 11:17:54,745][ INFO][PID:390111] Checking for cancel request [2026-09-14 11:17:59,746][ INFO][PID:390111] Checking for cancel request [2026-09-14 11:18:04,747][ INFO][PID:390111] Checking for cancel request [2026-09-14 11:18:09,748][ INFO][PID:390111] Checking for cancel request [2026-09-14 11:18:14,749][ INFO][PID:390111] Checking for cancel request [2026-09-14 11:18:19,750][ INFO][PID:390111] Checking for cancel request [2026-09-14 11:18:24,750][ INFO][PID:390111] Checking for cancel request [2026-09-14 11:18:29,751][ INFO][PID:390111] Checking for cancel request [2026-09-14 11:18:34,752][ INFO][PID:390111] Checking for cancel request [2026-09-14 11:18:39,753][ INFO][PID:390111] Checking for cancel request [2026-09-14 11:18:44,754][ INFO][PID:390111] Checking for cancel request [2026-09-14 11:18:49,754][ INFO][PID:390111] Checking for cancel request [2026-09-14 11:18:54,755][ INFO][PID:390111] Checking for cancel request [2026-09-14 11:18:59,756][ INFO][PID:390111] Checking for cancel request [2026-09-14 11:19:04,757][ INFO][PID:390111] Checking for cancel request [2026-09-14 11:19:09,758][ INFO][PID:390111] Checking for cancel request [2026-09-14 11:19:14,759][ INFO][PID:390111] Checking for cancel request [2026-09-14 11:19:19,759][ INFO][PID:390111] Checking for cancel request [2026-09-14 11:19:24,760][ INFO][PID:390111] Checking for cancel request [2026-09-14 11:19:29,761][ INFO][PID:390111] Checking for cancel request [2026-09-14 11:19:34,762][ INFO][PID:390111] Checking for cancel request [2026-09-14 11:19:39,763][ INFO][PID:390111] Checking for cancel request [2026-09-14 11:19:44,764][ INFO][PID:390111] Checking for cancel request [2026-09-14 11:19:49,765][ INFO][PID:390111] Checking for cancel request [2026-09-14 11:19:54,766][ INFO][PID:390111] Checking for cancel request [2026-09-14 11:19:59,767][ INFO][PID:390111] Checking for cancel request [2026-09-14 11:20:04,767][ INFO][PID:390111] Checking for cancel request [2026-09-14 11:20:09,768][ INFO][PID:390111] Checking for cancel request [2026-09-14 11:20:14,769][ INFO][PID:390111] Checking for cancel request [2026-09-14 11:20:19,770][ INFO][PID:390111] Checking for cancel request [2026-09-14 11:20:24,771][ INFO][PID:390111] Checking for cancel request [2026-09-14 11:20:29,772][ INFO][PID:390111] Checking for cancel request [2026-09-14 11:20:34,773][ INFO][PID:390111] Checking for cancel request [2026-09-14 11:20:39,774][ INFO][PID:390111] Checking for cancel request [2026-09-14 11:20:44,775][ INFO][PID:390111] Checking for cancel request [2026-09-14 11:20:49,776][ INFO][PID:390111] Checking for cancel request [2026-09-14 11:20:54,777][ INFO][PID:390111] Checking for cancel request [2026-09-14 11:20:59,777][ INFO][PID:390111] Checking for cancel request [2026-09-14 11:21:04,778][ INFO][PID:390111] Checking for cancel request [2026-09-14 11:21:09,779][ INFO][PID:390111] Checking for cancel request [2026-09-14 11:21:14,780][ INFO][PID:390111] Checking for cancel request [2026-09-14 11:21:19,781][ INFO][PID:390111] Checking for cancel request [2026-09-14 11:21:24,782][ INFO][PID:390111] Checking for cancel request [2026-09-14 11:21:29,783][ INFO][PID:390111] Checking for cancel request [2026-09-14 11:21:34,784][ INFO][PID:390111] Checking for cancel request [2026-09-14 11:21:39,785][ INFO][PID:390111] Checking for cancel request [2026-09-14 11:21:44,786][ INFO][PID:390111] Checking for cancel request [2026-09-14 11:21:49,787][ INFO][PID:390111] Checking for cancel request [2026-09-14 11:21:54,787][ INFO][PID:390111] Checking for cancel request [2026-09-14 11:21:59,788][ INFO][PID:390111] Checking for cancel request [2026-09-14 11:22:04,789][ INFO][PID:390111] Checking for cancel request [2026-09-14 11:22:09,790][ INFO][PID:390111] Checking for cancel request [2026-09-14 11:22:14,791][ INFO][PID:390111] Checking for cancel request [2026-09-14 11:22:19,794][ INFO][PID:390111] Checking for cancel request [2026-09-14 11:22:24,795][ INFO][PID:390111] Checking for cancel request [2026-09-14 11:22:29,796][ INFO][PID:390111] Checking for cancel request [2026-09-14 11:22:34,797][ INFO][PID:390111] Checking for cancel request [2026-09-14 11:22:39,798][ INFO][PID:390111] Checking for cancel request [2026-09-14 11:22:44,798][ INFO][PID:390111] Checking for cancel request [2026-09-14 11:22:49,799][ INFO][PID:390111] Checking for cancel request [2026-09-14 11:22:54,800][ INFO][PID:390111] Checking for cancel request [2026-09-14 11:22:59,801][ INFO][PID:390111] Checking for cancel request [2026-09-14 11:23:04,802][ INFO][PID:390111] Checking for cancel request [2026-09-14 11:23:09,803][ INFO][PID:390111] Checking for cancel request [2026-09-14 11:23:14,804][ INFO][PID:390111] Checking for cancel request [2026-09-14 11:23:19,805][ INFO][PID:390111] Checking for cancel request [2026-09-14 11:23:24,806][ INFO][PID:390111] Checking for cancel request [2026-09-14 11:23:29,807][ INFO][PID:390111] Checking for cancel request [2026-09-14 11:23:34,808][ INFO][PID:390111] Checking for cancel request [2026-09-14 11:23:39,809][ INFO][PID:390111] Checking for cancel request [2026-09-14 11:23:44,810][ INFO][PID:390111] Checking for cancel request [2026-09-14 11:23:49,811][ INFO][PID:390111] Checking for cancel request [2026-09-14 11:23:54,811][ INFO][PID:390111] Checking for cancel request [2026-09-14 11:23:59,812][ INFO][PID:390111] Checking for cancel request [2026-09-14 11:24:04,813][ INFO][PID:390111] Checking for cancel request [2026-09-14 11:24:09,814][ INFO][PID:390111] Checking for cancel request [2026-09-14 11:24:14,815][ INFO][PID:390111] Checking for cancel request [2026-09-14 11:24:19,816][ INFO][PID:390111] Checking for cancel request [2026-09-14 11:24:24,816][ INFO][PID:390111] Checking for cancel request [2026-09-14 11:24:29,817][ INFO][PID:390111] Checking for cancel request [2026-09-14 11:24:34,818][ INFO][PID:390111] Checking for cancel request [2026-09-14 11:24:39,819][ INFO][PID:390111] Checking for cancel request [2026-09-14 11:24:44,823][ INFO][PID:390111] Checking for cancel request [2026-09-14 11:24:49,826][ INFO][PID:390111] Checking for cancel request [2026-09-14 11:24:54,828][ INFO][PID:390111] Checking for cancel request [2026-09-14 11:24:59,829][ INFO][PID:390111] Checking for cancel request [2026-09-14 11:25:04,829][ INFO][PID:390111] Checking for cancel request [2026-09-14 11:25:09,830][ INFO][PID:390111] Checking for cancel request [2026-09-14 11:25:14,831][ INFO][PID:390111] Checking for cancel request [2026-09-14 11:25:19,832][ INFO][PID:390111] Checking for cancel request [2026-09-14 11:25:24,833][ INFO][PID:390111] Checking for cancel request [2026-09-14 11:25:29,834][ INFO][PID:390111] Checking for cancel request [2026-09-14 11:25:34,835][ INFO][PID:390111] Checking for cancel request [2026-09-14 11:25:39,836][ INFO][PID:390111] Checking for cancel request [2026-09-14 11:25:44,836][ INFO][PID:390111] Checking for cancel request [2026-09-14 11:25:49,837][ INFO][PID:390111] Checking for cancel request [2026-09-14 11:25:54,838][ INFO][PID:390111] Checking for cancel request [2026-09-14 11:25:59,839][ INFO][PID:390111] Checking for cancel request [2026-09-14 11:26:04,840][ INFO][PID:390111] Checking for cancel request [2026-09-14 11:26:09,840][ INFO][PID:390111] Checking for cancel request [2026-09-14 11:26:14,841][ INFO][PID:390111] Checking for cancel request [2026-09-14 11:26:19,842][ INFO][PID:390111] Checking for cancel request [2026-09-14 11:26:24,843][ INFO][PID:390111] Checking for cancel request [2026-09-14 11:26:30,087][ INFO][PID:390111] Checking for cancel request [2026-09-14 11:26:35,088][ INFO][PID:390111] Checking for cancel request [2026-09-14 11:26:40,088][ INFO][PID:390111] Checking for cancel request [2026-09-14 11:26:45,096][ INFO][PID:390111] Periodic builder liveness probe: alive [2026-09-14 11:26:45,097][ INFO][PID:390111] Checking for cancel request [2026-09-14 11:26:50,098][ INFO][PID:390111] Checking for cancel request [2026-09-14 11:26:55,098][ INFO][PID:390111] Checking for cancel request [2026-09-14 11:27:00,099][ INFO][PID:390111] Checking for cancel request [2026-09-14 11:27:05,100][ INFO][PID:390111] Checking for cancel request [2026-09-14 11:27:10,101][ INFO][PID:390111] Checking for cancel request [2026-09-14 11:27:15,103][ INFO][PID:390111] Checking for cancel request [2026-09-14 11:27:20,103][ INFO][PID:390111] Checking for cancel request [2026-09-14 11:27:25,104][ INFO][PID:390111] Checking for cancel request [2026-09-14 11:27:30,105][ INFO][PID:390111] Checking for cancel request [2026-09-14 11:27:35,106][ INFO][PID:390111] Checking for cancel request [2026-09-14 11:27:40,107][ INFO][PID:390111] Checking for cancel request [2026-09-14 11:27:45,108][ INFO][PID:390111] Checking for cancel request [2026-09-14 11:27:50,109][ INFO][PID:390111] Checking for cancel request [2026-09-14 11:27:55,109][ INFO][PID:390111] Checking for cancel request [2026-09-14 11:28:00,111][ INFO][PID:390111] Checking for cancel request [2026-09-14 11:28:05,111][ INFO][PID:390111] Checking for cancel request [2026-09-14 11:28:10,112][ INFO][PID:390111] Checking for cancel request [2026-09-14 11:28:15,113][ INFO][PID:390111] Checking for cancel request [2026-09-14 11:28:20,114][ INFO][PID:390111] Checking for cancel request [2026-09-14 11:28:20,968][ INFO][PID:390111] Downloading results from builder [2026-09-14 11:28:20,969][ INFO][PID:390111] rsyncing of mockbuilder@44.201.44.170:/var/lib/copr-rpmbuild/results/ to /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5654/srpm-builds/10983812 started [2026-09-14 11:28:20,970][ INFO][PID:390111] Popen command started: /usr/bin/rsync -rltDvH --chmod=D755,F644 -e 'ssh -F /home/copr/.ssh/config' mockbuilder@44.201.44.170:/var/lib/copr-rpmbuild/results/ /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5654/srpm-builds/10983812/ &> /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5654/srpm-builds/10983812/build-10983812.rsync.log [2026-09-14 11:28:23,067][ INFO][PID:390111] rsyncing finished. [2026-09-14 11:28:23,068][ INFO][PID:390111] VM Release request [2026-09-14 11:28:23,073][ INFO][PID:390111] Searching for 'success' file in resultdir [2026-09-14 11:28:23,074][ INFO][PID:390111] Getting build details [2026-09-14 11:28:23,074][ INFO][PID:390111] Retrieving SRPM info from /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5654/srpm-builds/10983812 [2026-09-14 11:28:23,074][ INFO][PID:390111] SRPM URL: https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5654/srpm-builds/10983812/Sunshine-0.0.5654-1.src.rpm [2026-09-14 11:28:23,075][ INFO][PID:390111] build details: {'srpm_url': 'https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5654/srpm-builds/10983812/Sunshine-0.0.5654-1.src.rpm', 'pkg_name': 'Sunshine', 'pkg_version': '0.0.5654-1'} [2026-09-14 11:28:23,075][ INFO][PID:390111] Finished build: id=10983812 failed=False timeout=108000 destdir=/var/lib/copr/public_html/results/lizardbyte/pulls:pr:5654 chroot=srpm-builds [2026-09-14 11:28:23,075][ INFO][PID:390111] Worker succeeded build, took 734.7566637992859 [2026-09-14 11:28:23,076][ INFO][PID:390111] 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:5654", "submitter": null, "ended_on": 1789385303.075765, "started_on": 1789384568.319101, "submitted_on": null, "status": 1, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10983812", "build_id": 10983812, "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\": \"tmpkawm5vcq\", \"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:5654/srpm-builds/10983812/Sunshine-0.0.5654-1.src.rpm", "uses_devel_repo": null, "sandbox": "lizardbyte/pulls--19d16217-8a53-4b79-8846-a1f0e055c0b9", "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.5654", "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:5654", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5654", "result_dir": "10983812", "built_packages": "", "tags": [ "arch_x86_64" ], "rpmeta_prediction": null, "pkg_version": "0.0.5654-1", "id": 10983812, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2026-09-14 11:28:53,159][ INFO][PID:390111] Sending fedora-messaging bus message in build.end [2026-09-14 11:28:53,194][ INFO][PID:390111] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5654/srpm-builds/10983812/builder-live.log by gzip [2026-09-14 11:28:53,195][ INFO][PID:390111] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5654/srpm-builds/10983812/builder-live.log' as PID 604321 [2026-09-14 11:28:53,199][ INFO][PID:390111] Finished after 0 seconds with exit code 0 (gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5654/srpm-builds/10983812/builder-live.log) [2026-09-14 11:28:53,200][ INFO][PID:390111] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5654/srpm-builds/10983812/backend.log by gzip [2026-09-14 11:28:53,200][ INFO][PID:390111] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5654/srpm-builds/10983812/backend.log' as PID 604325