[2026-09-17 11:15:26,351][ INFO][PID:3233059] Marking build as starting [2026-09-17 11:15:26,380][ INFO][PID:3233059] Checking for cancel request [2026-09-17 11:15:26,380][ INFO][PID:3233059] VM allocation process starts [2026-09-17 11:15:26,386][ INFO][PID:3233059] Trying to allocate VM: ResallocHost, ticket_id=5080307, requested_tags=['arch_x86_64', 'copr_builder'] [2026-09-17 11:15:29,415][ INFO][PID:3233059] Allocated host ResallocHost, ticket_id=5080307, hostname=100.56.14.207, name=aws_x86_64_reserved_prod_39530895_20260917_111159, requested_tags=['arch_x86_64', 'copr_builder'] [2026-09-17 11:15:29,416][ INFO][PID:3233059] Allocating ssh connection to builder [2026-09-17 11:15:29,416][ INFO][PID:3233059] Checking that builder machine is OK [2026-09-17 11:15:29,690][ INFO][PID:3233059] Installed copr-rpmbuild version: 1.9 [2026-09-17 11:15:29,691][ INFO][PID:3233059] Running remote command: copr-builder-ready srpm-builds [2026-09-17 11:15:29,883][ INFO][PID:3233059] Red Hat subscription not needed for srpm-builds Builder is ready to be used [2026-09-17 11:15:29,883][ INFO][PID:3233059] Filling build.info file with builder info [2026-09-17 11:15:29,884][ INFO][PID:3233059] Checking for cancel request [2026-09-17 11:15:29,884][ INFO][PID:3233059] 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:5741", "submitter": null, "ended_on": null, "started_on": 1789643729.884446, "submitted_on": null, "status": 3, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10995924", "build_id": 10995924, "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\": \"tmpbmqvgu70\", \"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--6f06e72f-f9a9-4369-92cc-e1f0571e334e", "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:5741", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5741", "result_dir": "10995924", "built_packages": "", "tags": [ "arch_x86_64" ], "rpmeta_prediction": null, "id": 10995924, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2026-09-17 11:15:29,917][ INFO][PID:3233059] Sending fedora-messaging bus message in build.start [2026-09-17 11:15:30,292][ INFO][PID:3233059] Sending fedora-messaging bus message in chroot.start [2026-09-17 11:15:30,321][ INFO][PID:3233059] Starting remote build: copr-rpmbuild --verbose --drop-resultdir --srpm --task-url https://copr.fedorainfracloud.org/backend/get-srpm-build-task/10995924 --detached [2026-09-17 11:15:30,904][ INFO][PID:3233059] The copr-rpmbuild seems started, per: stdout: stderr: Warning: Permanently added '100.56.14.207' (ED25519) to the list of known hosts. [2026-09-17 11:15:30,904][ INFO][PID:3233059] Downloading the builder-live.log file, attempt 1 [2026-09-17 11:15:30,906][ INFO][PID:3233059] Popen command started: ssh -F /home/copr/.ssh/config mockbuilder@100.56.14.207 copr-rpmbuild-log [2026-09-17 11:15:35,910][ INFO][PID:3233059] Periodic builder liveness probe: alive [2026-09-17 11:15:36,062][ INFO][PID:3233059] Checking for cancel request [2026-09-17 11:15:41,062][ INFO][PID:3233059] Checking for cancel request [2026-09-17 11:15:46,063][ INFO][PID:3233059] Checking for cancel request [2026-09-17 11:15:51,064][ INFO][PID:3233059] Checking for cancel request [2026-09-17 11:15:56,065][ INFO][PID:3233059] Checking for cancel request [2026-09-17 11:16:01,066][ INFO][PID:3233059] Checking for cancel request [2026-09-17 11:16:06,067][ INFO][PID:3233059] Checking for cancel request [2026-09-17 11:16:11,068][ INFO][PID:3233059] Checking for cancel request [2026-09-17 11:16:16,069][ INFO][PID:3233059] Checking for cancel request [2026-09-17 11:16:21,069][ INFO][PID:3233059] Checking for cancel request [2026-09-17 11:16:26,070][ INFO][PID:3233059] Checking for cancel request [2026-09-17 11:16:31,071][ INFO][PID:3233059] Checking for cancel request [2026-09-17 11:16:36,072][ INFO][PID:3233059] Checking for cancel request [2026-09-17 11:16:41,073][ INFO][PID:3233059] Checking for cancel request [2026-09-17 11:16:46,074][ INFO][PID:3233059] Checking for cancel request [2026-09-17 11:16:51,113][ INFO][PID:3233059] Checking for cancel request [2026-09-17 11:16:56,113][ INFO][PID:3233059] Checking for cancel request [2026-09-17 11:17:01,162][ INFO][PID:3233059] Checking for cancel request [2026-09-17 11:17:06,162][ INFO][PID:3233059] Checking for cancel request [2026-09-17 11:17:11,163][ INFO][PID:3233059] Checking for cancel request [2026-09-17 11:17:16,441][ INFO][PID:3233059] Checking for cancel request [2026-09-17 11:17:21,442][ INFO][PID:3233059] Checking for cancel request [2026-09-17 11:17:26,472][ INFO][PID:3233059] Checking for cancel request [2026-09-17 11:17:31,551][ INFO][PID:3233059] Checking for cancel request [2026-09-17 11:17:36,552][ INFO][PID:3233059] Checking for cancel request [2026-09-17 11:17:41,559][ INFO][PID:3233059] Checking for cancel request [2026-09-17 11:17:46,560][ INFO][PID:3233059] Checking for cancel request [2026-09-17 11:17:51,561][ INFO][PID:3233059] Checking for cancel request [2026-09-17 11:17:56,562][ INFO][PID:3233059] Checking for cancel request [2026-09-17 11:18:01,564][ INFO][PID:3233059] Checking for cancel request [2026-09-17 11:18:06,565][ INFO][PID:3233059] Checking for cancel request [2026-09-17 11:18:11,566][ INFO][PID:3233059] Checking for cancel request [2026-09-17 11:18:16,957][ INFO][PID:3233059] Checking for cancel request [2026-09-17 11:18:21,958][ INFO][PID:3233059] Checking for cancel request [2026-09-17 11:18:26,958][ INFO][PID:3233059] Checking for cancel request [2026-09-17 11:18:31,959][ INFO][PID:3233059] Checking for cancel request [2026-09-17 11:18:36,960][ INFO][PID:3233059] Checking for cancel request [2026-09-17 11:18:41,961][ INFO][PID:3233059] Checking for cancel request [2026-09-17 11:18:46,961][ INFO][PID:3233059] Checking for cancel request [2026-09-17 11:18:51,962][ INFO][PID:3233059] Checking for cancel request [2026-09-17 11:18:56,963][ INFO][PID:3233059] Checking for cancel request [2026-09-17 11:19:01,964][ INFO][PID:3233059] Checking for cancel request [2026-09-17 11:19:06,965][ INFO][PID:3233059] Checking for cancel request [2026-09-17 11:19:11,965][ INFO][PID:3233059] Checking for cancel request [2026-09-17 11:19:16,966][ INFO][PID:3233059] Checking for cancel request [2026-09-17 11:19:21,967][ INFO][PID:3233059] Checking for cancel request [2026-09-17 11:19:26,968][ INFO][PID:3233059] Checking for cancel request [2026-09-17 11:19:31,968][ INFO][PID:3233059] Checking for cancel request [2026-09-17 11:19:37,252][ INFO][PID:3233059] Checking for cancel request [2026-09-17 11:19:42,253][ INFO][PID:3233059] Checking for cancel request [2026-09-17 11:19:47,254][ INFO][PID:3233059] Checking for cancel request [2026-09-17 11:19:52,254][ INFO][PID:3233059] Checking for cancel request [2026-09-17 11:19:57,255][ INFO][PID:3233059] Checking for cancel request [2026-09-17 11:20:02,256][ INFO][PID:3233059] Checking for cancel request [2026-09-17 11:20:07,257][ INFO][PID:3233059] Checking for cancel request [2026-09-17 11:20:12,258][ INFO][PID:3233059] Checking for cancel request [2026-09-17 11:20:17,259][ INFO][PID:3233059] Checking for cancel request [2026-09-17 11:20:22,259][ INFO][PID:3233059] Checking for cancel request [2026-09-17 11:20:27,260][ INFO][PID:3233059] Checking for cancel request [2026-09-17 11:20:32,261][ INFO][PID:3233059] Checking for cancel request [2026-09-17 11:20:37,262][ INFO][PID:3233059] Checking for cancel request [2026-09-17 11:20:42,263][ INFO][PID:3233059] Checking for cancel request [2026-09-17 11:20:47,264][ INFO][PID:3233059] Checking for cancel request [2026-09-17 11:20:52,264][ INFO][PID:3233059] Checking for cancel request [2026-09-17 11:20:57,265][ INFO][PID:3233059] Checking for cancel request [2026-09-17 11:21:02,266][ INFO][PID:3233059] Checking for cancel request [2026-09-17 11:21:07,267][ INFO][PID:3233059] Checking for cancel request [2026-09-17 11:21:12,268][ INFO][PID:3233059] Checking for cancel request [2026-09-17 11:21:17,268][ INFO][PID:3233059] Checking for cancel request [2026-09-17 11:21:22,269][ INFO][PID:3233059] Checking for cancel request [2026-09-17 11:21:27,270][ INFO][PID:3233059] Checking for cancel request [2026-09-17 11:21:32,271][ INFO][PID:3233059] Checking for cancel request [2026-09-17 11:21:37,272][ INFO][PID:3233059] Checking for cancel request [2026-09-17 11:21:42,316][ INFO][PID:3233059] Checking for cancel request [2026-09-17 11:21:47,316][ INFO][PID:3233059] Checking for cancel request [2026-09-17 11:21:52,317][ INFO][PID:3233059] Checking for cancel request [2026-09-17 11:21:57,318][ INFO][PID:3233059] Checking for cancel request [2026-09-17 11:22:02,319][ INFO][PID:3233059] Checking for cancel request [2026-09-17 11:22:07,320][ INFO][PID:3233059] Checking for cancel request [2026-09-17 11:22:12,372][ INFO][PID:3233059] Checking for cancel request [2026-09-17 11:22:17,673][ INFO][PID:3233059] Checking for cancel request [2026-09-17 11:22:22,674][ INFO][PID:3233059] Checking for cancel request [2026-09-17 11:22:27,676][ INFO][PID:3233059] Checking for cancel request [2026-09-17 11:22:32,678][ INFO][PID:3233059] Checking for cancel request [2026-09-17 11:22:37,679][ INFO][PID:3233059] Checking for cancel request [2026-09-17 11:22:42,680][ INFO][PID:3233059] Checking for cancel request [2026-09-17 11:22:47,681][ INFO][PID:3233059] Checking for cancel request [2026-09-17 11:22:52,682][ INFO][PID:3233059] Checking for cancel request [2026-09-17 11:22:57,683][ INFO][PID:3233059] Checking for cancel request [2026-09-17 11:23:02,683][ INFO][PID:3233059] Checking for cancel request [2026-09-17 11:23:07,684][ INFO][PID:3233059] Checking for cancel request [2026-09-17 11:23:12,685][ INFO][PID:3233059] Checking for cancel request [2026-09-17 11:23:17,686][ INFO][PID:3233059] Checking for cancel request [2026-09-17 11:23:22,686][ INFO][PID:3233059] Checking for cancel request [2026-09-17 11:23:27,687][ INFO][PID:3233059] Checking for cancel request [2026-09-17 11:23:32,688][ INFO][PID:3233059] Checking for cancel request [2026-09-17 11:23:37,689][ INFO][PID:3233059] Checking for cancel request [2026-09-17 11:23:42,910][ INFO][PID:3233059] Checking for cancel request [2026-09-17 11:23:47,937][ INFO][PID:3233059] Checking for cancel request [2026-09-17 11:23:52,939][ INFO][PID:3233059] Checking for cancel request [2026-09-17 11:23:57,940][ INFO][PID:3233059] Checking for cancel request [2026-09-17 11:24:02,940][ INFO][PID:3233059] Checking for cancel request [2026-09-17 11:24:07,941][ INFO][PID:3233059] Checking for cancel request [2026-09-17 11:24:13,120][ INFO][PID:3233059] Checking for cancel request [2026-09-17 11:24:18,121][ INFO][PID:3233059] Checking for cancel request [2026-09-17 11:24:23,352][ INFO][PID:3233059] Checking for cancel request [2026-09-17 11:24:28,353][ INFO][PID:3233059] Checking for cancel request [2026-09-17 11:24:33,354][ INFO][PID:3233059] Checking for cancel request [2026-09-17 11:24:38,355][ INFO][PID:3233059] Checking for cancel request [2026-09-17 11:24:43,356][ INFO][PID:3233059] Checking for cancel request [2026-09-17 11:24:48,357][ INFO][PID:3233059] Checking for cancel request [2026-09-17 11:24:53,358][ INFO][PID:3233059] Checking for cancel request [2026-09-17 11:24:58,359][ INFO][PID:3233059] Checking for cancel request [2026-09-17 11:25:03,360][ INFO][PID:3233059] Checking for cancel request [2026-09-17 11:25:08,362][ INFO][PID:3233059] Checking for cancel request [2026-09-17 11:25:13,362][ INFO][PID:3233059] Checking for cancel request [2026-09-17 11:25:18,363][ INFO][PID:3233059] Checking for cancel request [2026-09-17 11:25:23,364][ INFO][PID:3233059] Checking for cancel request [2026-09-17 11:25:28,365][ INFO][PID:3233059] Checking for cancel request [2026-09-17 11:25:33,366][ INFO][PID:3233059] Checking for cancel request [2026-09-17 11:25:38,371][ INFO][PID:3233059] Periodic builder liveness probe: alive [2026-09-17 11:25:38,372][ INFO][PID:3233059] Checking for cancel request [2026-09-17 11:25:43,372][ INFO][PID:3233059] Checking for cancel request [2026-09-17 11:25:48,410][ INFO][PID:3233059] Checking for cancel request [2026-09-17 11:25:53,411][ INFO][PID:3233059] Checking for cancel request [2026-09-17 11:25:58,461][ INFO][PID:3233059] Checking for cancel request [2026-09-17 11:26:03,462][ INFO][PID:3233059] Checking for cancel request [2026-09-17 11:26:08,464][ INFO][PID:3233059] Checking for cancel request [2026-09-17 11:26:13,465][ INFO][PID:3233059] Checking for cancel request [2026-09-17 11:26:18,467][ INFO][PID:3233059] Checking for cancel request [2026-09-17 11:26:23,521][ INFO][PID:3233059] Checking for cancel request [2026-09-17 11:26:28,523][ INFO][PID:3233059] Checking for cancel request [2026-09-17 11:26:33,804][ INFO][PID:3233059] Checking for cancel request [2026-09-17 11:26:38,805][ INFO][PID:3233059] Checking for cancel request [2026-09-17 11:26:43,806][ INFO][PID:3233059] Checking for cancel request [2026-09-17 11:26:48,847][ INFO][PID:3233059] Checking for cancel request [2026-09-17 11:26:50,590][ INFO][PID:3233059] Downloading results from builder [2026-09-17 11:26:50,591][ INFO][PID:3233059] rsyncing of mockbuilder@100.56.14.207:/var/lib/copr-rpmbuild/results/ to /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5741/srpm-builds/10995924 started [2026-09-17 11:26:50,591][ INFO][PID:3233059] Popen command started: /usr/bin/rsync -rltDvH --chmod=D755,F644 -e 'ssh -F /home/copr/.ssh/config' mockbuilder@100.56.14.207:/var/lib/copr-rpmbuild/results/ /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5741/srpm-builds/10995924/ &> /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5741/srpm-builds/10995924/build-10995924.rsync.log [2026-09-17 11:26:52,623][ INFO][PID:3233059] rsyncing finished. [2026-09-17 11:26:52,623][ INFO][PID:3233059] VM Release request [2026-09-17 11:26:52,628][ INFO][PID:3233059] Searching for 'success' file in resultdir [2026-09-17 11:26:52,628][ INFO][PID:3233059] Getting build details [2026-09-17 11:26:52,629][ INFO][PID:3233059] Retrieving SRPM info from /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5741/srpm-builds/10995924 [2026-09-17 11:26:52,629][ INFO][PID:3233059] SRPM URL: https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5741/srpm-builds/10995924/Sunshine-0.0.5741-1.src.rpm [2026-09-17 11:26:52,629][ INFO][PID:3233059] build details: {'srpm_url': 'https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5741/srpm-builds/10995924/Sunshine-0.0.5741-1.src.rpm', 'pkg_name': 'Sunshine', 'pkg_version': '0.0.5741-1'} [2026-09-17 11:26:52,630][ INFO][PID:3233059] Finished build: id=10995924 failed=False timeout=108000 destdir=/var/lib/copr/public_html/results/lizardbyte/pulls:pr:5741 chroot=srpm-builds [2026-09-17 11:26:52,630][ INFO][PID:3233059] Worker succeeded build, took 682.7458882331848 [2026-09-17 11:26:52,630][ INFO][PID:3233059] 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:5741", "submitter": null, "ended_on": 1789644412.6303341, "started_on": 1789643729.884446, "submitted_on": null, "status": 1, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10995924", "build_id": 10995924, "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\": \"tmpbmqvgu70\", \"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:5741/srpm-builds/10995924/Sunshine-0.0.5741-1.src.rpm", "uses_devel_repo": null, "sandbox": "lizardbyte/pulls--6f06e72f-f9a9-4369-92cc-e1f0571e334e", "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.5741", "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:5741", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5741", "result_dir": "10995924", "built_packages": "", "tags": [ "arch_x86_64" ], "rpmeta_prediction": null, "pkg_version": "0.0.5741-1", "id": 10995924, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2026-09-17 11:26:52,697][ INFO][PID:3233059] Sending fedora-messaging bus message in build.end [2026-09-17 11:26:52,742][ INFO][PID:3233059] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5741/srpm-builds/10995924/builder-live.log by gzip [2026-09-17 11:26:52,743][ INFO][PID:3233059] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5741/srpm-builds/10995924/builder-live.log' as PID 3354102 [2026-09-17 11:26:52,760][ INFO][PID:3233059] Finished after 0 seconds with exit code 0 (gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5741/srpm-builds/10995924/builder-live.log) [2026-09-17 11:26:52,760][ INFO][PID:3233059] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5741/srpm-builds/10995924/backend.log by gzip [2026-09-17 11:26:52,761][ INFO][PID:3233059] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5741/srpm-builds/10995924/backend.log' as PID 3354111