[2026-08-14 15:31:39,536][ INFO][PID:2040698] Marking build as starting [2026-08-14 15:31:39,588][ INFO][PID:2040698] Checking for cancel request [2026-08-14 15:31:39,591][ INFO][PID:2040698] VM allocation process starts [2026-08-14 15:31:39,602][ INFO][PID:2040698] Trying to allocate VM: ResallocHost, ticket_id=4451168, requested_tags=['arch_x86_64', 'copr_builder'] [2026-08-14 15:31:44,604][ INFO][PID:2040698] Checking for cancel request [2026-08-14 15:31:45,626][ INFO][PID:2040698] Allocated host ResallocHost, ticket_id=4451168, hostname=44.192.45.164, name=aws_x86_64_reserved_prod_18508622_20260814_152523, requested_tags=['arch_x86_64', 'copr_builder'] [2026-08-14 15:31:45,627][ INFO][PID:2040698] Allocating ssh connection to builder [2026-08-14 15:31:45,629][ INFO][PID:2040698] Checking that builder machine is OK [2026-08-14 15:31:45,943][ INFO][PID:2040698] Installed copr-rpmbuild version: 1.9 [2026-08-14 15:31:45,944][ INFO][PID:2040698] Running remote command: copr-builder-ready srpm-builds [2026-08-14 15:31:46,119][ INFO][PID:2040698] Red Hat subscription not needed for srpm-builds Builder is ready to be used [2026-08-14 15:31:46,120][ INFO][PID:2040698] Filling build.info file with builder info [2026-08-14 15:31:46,121][ INFO][PID:2040698] Checking for cancel request [2026-08-14 15:31:46,122][ INFO][PID:2040698] Sending build state back to frontend: { "builds": [ { "timeout": 108000, "frontend_base_url": "https://copr.fedorainfracloud.org", "memory_reqs": null, "enable_net": true, "project_owner": "lizardbyte", "project_name": "pulls", "project_dirname": "pulls:pr:5368", "submitter": null, "ended_on": null, "started_on": 1786721506.1223493, "submitted_on": null, "status": 3, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10865592", "build_id": 10865592, "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\": \"tmpffpzoavu\", \"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--d1c09943-817d-4345-a6ca-a0231521c431", "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" ], "distributions_in_project": [ "fedora-43", "fedora-44", "fedora-rawhide" ], "destdir": "/var/lib/copr/public_html/results/lizardbyte/pulls:pr:5368", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5368", "result_dir": "10865592", "built_packages": "", "tags": [ "arch_x86_64" ], "rpmeta_prediction": null, "id": 10865592, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2026-08-14 15:31:46,223][ INFO][PID:2040698] Sending fedora-messaging bus message in build.start [2026-08-14 15:31:46,869][ INFO][PID:2040698] Sending fedora-messaging bus message in chroot.start [2026-08-14 15:31:46,908][ INFO][PID:2040698] Starting remote build: copr-rpmbuild --verbose --drop-resultdir --srpm --task-url https://copr.fedorainfracloud.org/backend/get-srpm-build-task/10865592 --detached [2026-08-14 15:31:47,370][ INFO][PID:2040698] The copr-rpmbuild seems started, per: stdout: stderr: Warning: Permanently added '44.192.45.164' (ED25519) to the list of known hosts. [2026-08-14 15:31:47,371][ INFO][PID:2040698] Downloading the builder-live.log file, attempt 1 [2026-08-14 15:31:47,373][ INFO][PID:2040698] Popen command started: ssh -F /home/copr/.ssh/config mockbuilder@44.192.45.164 copr-rpmbuild-log [2026-08-14 15:31:52,387][ INFO][PID:2040698] Periodic builder liveness probe: alive [2026-08-14 15:31:52,388][ INFO][PID:2040698] Checking for cancel request [2026-08-14 15:31:57,391][ INFO][PID:2040698] Checking for cancel request [2026-08-14 15:32:02,392][ INFO][PID:2040698] Checking for cancel request [2026-08-14 15:32:07,393][ INFO][PID:2040698] Checking for cancel request [2026-08-14 15:32:12,395][ INFO][PID:2040698] Checking for cancel request [2026-08-14 15:32:17,396][ INFO][PID:2040698] Checking for cancel request [2026-08-14 15:32:22,398][ INFO][PID:2040698] Checking for cancel request [2026-08-14 15:32:27,399][ INFO][PID:2040698] Checking for cancel request [2026-08-14 15:32:32,401][ INFO][PID:2040698] Checking for cancel request [2026-08-14 15:32:37,403][ INFO][PID:2040698] Checking for cancel request [2026-08-14 15:32:42,406][ INFO][PID:2040698] Checking for cancel request [2026-08-14 15:32:47,407][ INFO][PID:2040698] Checking for cancel request [2026-08-14 15:32:52,409][ INFO][PID:2040698] Checking for cancel request [2026-08-14 15:32:57,410][ INFO][PID:2040698] Checking for cancel request [2026-08-14 15:33:02,412][ INFO][PID:2040698] Checking for cancel request [2026-08-14 15:33:07,415][ INFO][PID:2040698] Checking for cancel request [2026-08-14 15:33:12,416][ INFO][PID:2040698] Checking for cancel request [2026-08-14 15:33:17,418][ INFO][PID:2040698] Checking for cancel request [2026-08-14 15:33:22,419][ INFO][PID:2040698] Checking for cancel request [2026-08-14 15:33:27,425][ INFO][PID:2040698] Checking for cancel request [2026-08-14 15:33:32,427][ INFO][PID:2040698] Checking for cancel request [2026-08-14 15:33:37,428][ INFO][PID:2040698] Checking for cancel request [2026-08-14 15:33:42,430][ INFO][PID:2040698] Checking for cancel request [2026-08-14 15:33:47,432][ INFO][PID:2040698] Checking for cancel request [2026-08-14 15:33:52,433][ INFO][PID:2040698] Checking for cancel request [2026-08-14 15:33:57,434][ INFO][PID:2040698] Checking for cancel request [2026-08-14 15:34:02,436][ INFO][PID:2040698] Checking for cancel request [2026-08-14 15:34:07,439][ INFO][PID:2040698] Checking for cancel request [2026-08-14 15:34:12,441][ INFO][PID:2040698] Checking for cancel request [2026-08-14 15:34:17,444][ INFO][PID:2040698] Checking for cancel request [2026-08-14 15:34:22,446][ INFO][PID:2040698] Checking for cancel request [2026-08-14 15:34:27,449][ INFO][PID:2040698] Checking for cancel request [2026-08-14 15:34:32,450][ INFO][PID:2040698] Checking for cancel request [2026-08-14 15:34:37,453][ INFO][PID:2040698] Checking for cancel request [2026-08-14 15:34:42,458][ INFO][PID:2040698] Checking for cancel request [2026-08-14 15:34:47,463][ INFO][PID:2040698] Checking for cancel request [2026-08-14 15:34:52,472][ INFO][PID:2040698] Checking for cancel request [2026-08-14 15:34:57,475][ INFO][PID:2040698] Checking for cancel request [2026-08-14 15:35:02,476][ INFO][PID:2040698] Checking for cancel request [2026-08-14 15:35:07,478][ INFO][PID:2040698] Checking for cancel request [2026-08-14 15:35:12,483][ INFO][PID:2040698] Checking for cancel request [2026-08-14 15:35:17,505][ INFO][PID:2040698] Checking for cancel request [2026-08-14 15:35:22,511][ INFO][PID:2040698] Checking for cancel request [2026-08-14 15:35:27,513][ INFO][PID:2040698] Checking for cancel request [2026-08-14 15:35:32,678][ INFO][PID:2040698] Checking for cancel request [2026-08-14 15:35:37,679][ INFO][PID:2040698] Checking for cancel request [2026-08-14 15:35:42,681][ INFO][PID:2040698] Checking for cancel request [2026-08-14 15:35:47,690][ INFO][PID:2040698] Checking for cancel request [2026-08-14 15:35:52,701][ INFO][PID:2040698] Checking for cancel request [2026-08-14 15:35:57,707][ INFO][PID:2040698] Checking for cancel request [2026-08-14 15:36:02,725][ INFO][PID:2040698] Checking for cancel request [2026-08-14 15:36:07,778][ INFO][PID:2040698] Checking for cancel request [2026-08-14 15:36:12,842][ INFO][PID:2040698] Checking for cancel request [2026-08-14 15:36:17,855][ INFO][PID:2040698] Checking for cancel request [2026-08-14 15:36:22,858][ INFO][PID:2040698] Checking for cancel request [2026-08-14 15:36:27,881][ INFO][PID:2040698] Checking for cancel request [2026-08-14 15:36:32,883][ INFO][PID:2040698] Checking for cancel request [2026-08-14 15:36:37,885][ INFO][PID:2040698] Checking for cancel request [2026-08-14 15:36:42,887][ INFO][PID:2040698] Checking for cancel request [2026-08-14 15:36:47,888][ INFO][PID:2040698] Checking for cancel request [2026-08-14 15:36:52,890][ INFO][PID:2040698] Checking for cancel request [2026-08-14 15:36:57,891][ INFO][PID:2040698] Checking for cancel request [2026-08-14 15:37:02,893][ INFO][PID:2040698] Checking for cancel request [2026-08-14 15:37:07,898][ INFO][PID:2040698] Checking for cancel request [2026-08-14 15:37:12,901][ INFO][PID:2040698] Checking for cancel request [2026-08-14 15:37:17,902][ INFO][PID:2040698] Checking for cancel request [2026-08-14 15:37:22,903][ INFO][PID:2040698] Checking for cancel request [2026-08-14 15:37:27,907][ INFO][PID:2040698] Checking for cancel request [2026-08-14 15:37:32,912][ INFO][PID:2040698] Checking for cancel request [2026-08-14 15:37:37,914][ INFO][PID:2040698] Checking for cancel request [2026-08-14 15:37:42,915][ INFO][PID:2040698] Checking for cancel request [2026-08-14 15:37:47,916][ INFO][PID:2040698] Checking for cancel request [2026-08-14 15:37:52,918][ INFO][PID:2040698] Checking for cancel request [2026-08-14 15:37:57,920][ INFO][PID:2040698] Checking for cancel request [2026-08-14 15:38:02,921][ INFO][PID:2040698] Checking for cancel request [2026-08-14 15:38:07,924][ INFO][PID:2040698] Checking for cancel request [2026-08-14 15:38:12,930][ INFO][PID:2040698] Checking for cancel request [2026-08-14 15:38:17,931][ INFO][PID:2040698] Checking for cancel request [2026-08-14 15:38:22,932][ INFO][PID:2040698] Checking for cancel request [2026-08-14 15:38:27,936][ INFO][PID:2040698] Checking for cancel request [2026-08-14 15:38:32,938][ INFO][PID:2040698] Checking for cancel request [2026-08-14 15:38:37,939][ INFO][PID:2040698] Checking for cancel request [2026-08-14 15:38:42,941][ INFO][PID:2040698] Checking for cancel request [2026-08-14 15:38:47,942][ INFO][PID:2040698] Checking for cancel request [2026-08-14 15:38:52,943][ INFO][PID:2040698] Checking for cancel request [2026-08-14 15:38:57,945][ INFO][PID:2040698] Checking for cancel request [2026-08-14 15:39:02,993][ INFO][PID:2040698] Checking for cancel request [2026-08-14 15:39:07,997][ INFO][PID:2040698] Checking for cancel request [2026-08-14 15:39:13,213][ INFO][PID:2040698] Checking for cancel request [2026-08-14 15:39:18,219][ INFO][PID:2040698] Checking for cancel request [2026-08-14 15:39:23,220][ INFO][PID:2040698] Checking for cancel request [2026-08-14 15:39:28,480][ INFO][PID:2040698] Checking for cancel request [2026-08-14 15:39:33,497][ INFO][PID:2040698] Checking for cancel request [2026-08-14 15:39:38,501][ INFO][PID:2040698] Checking for cancel request [2026-08-14 15:39:43,502][ INFO][PID:2040698] Checking for cancel request [2026-08-14 15:39:48,506][ INFO][PID:2040698] Checking for cancel request [2026-08-14 15:39:53,507][ INFO][PID:2040698] Checking for cancel request [2026-08-14 15:39:58,509][ INFO][PID:2040698] Checking for cancel request [2026-08-14 15:40:03,510][ INFO][PID:2040698] Checking for cancel request [2026-08-14 15:40:08,520][ INFO][PID:2040698] Checking for cancel request [2026-08-14 15:40:13,522][ INFO][PID:2040698] Checking for cancel request [2026-08-14 15:40:18,528][ INFO][PID:2040698] Checking for cancel request [2026-08-14 15:40:23,529][ INFO][PID:2040698] Checking for cancel request [2026-08-14 15:40:28,531][ INFO][PID:2040698] Checking for cancel request [2026-08-14 15:40:33,534][ INFO][PID:2040698] Checking for cancel request [2026-08-14 15:40:38,536][ INFO][PID:2040698] Checking for cancel request [2026-08-14 15:40:43,537][ INFO][PID:2040698] Checking for cancel request [2026-08-14 15:40:48,538][ INFO][PID:2040698] Checking for cancel request [2026-08-14 15:40:53,539][ INFO][PID:2040698] Checking for cancel request [2026-08-14 15:40:58,541][ INFO][PID:2040698] Checking for cancel request [2026-08-14 15:41:03,543][ INFO][PID:2040698] Checking for cancel request [2026-08-14 15:41:08,555][ INFO][PID:2040698] Checking for cancel request [2026-08-14 15:41:13,557][ INFO][PID:2040698] Checking for cancel request [2026-08-14 15:41:18,562][ INFO][PID:2040698] Checking for cancel request [2026-08-14 15:41:23,563][ INFO][PID:2040698] Checking for cancel request [2026-08-14 15:41:28,565][ INFO][PID:2040698] Checking for cancel request [2026-08-14 15:41:33,567][ INFO][PID:2040698] Checking for cancel request [2026-08-14 15:41:38,571][ INFO][PID:2040698] Checking for cancel request [2026-08-14 15:41:43,572][ INFO][PID:2040698] Checking for cancel request [2026-08-14 15:41:48,574][ INFO][PID:2040698] Checking for cancel request [2026-08-14 15:41:53,587][ INFO][PID:2040698] Periodic builder liveness probe: alive [2026-08-14 15:41:53,588][ INFO][PID:2040698] Checking for cancel request [2026-08-14 15:41:58,590][ INFO][PID:2040698] Checking for cancel request [2026-08-14 15:42:03,592][ INFO][PID:2040698] Checking for cancel request [2026-08-14 15:42:08,594][ INFO][PID:2040698] Checking for cancel request [2026-08-14 15:42:13,595][ INFO][PID:2040698] Checking for cancel request [2026-08-14 15:42:18,599][ INFO][PID:2040698] Checking for cancel request [2026-08-14 15:42:23,602][ INFO][PID:2040698] Checking for cancel request [2026-08-14 15:42:28,603][ INFO][PID:2040698] Checking for cancel request [2026-08-14 15:42:33,605][ INFO][PID:2040698] Checking for cancel request [2026-08-14 15:42:38,607][ INFO][PID:2040698] Checking for cancel request [2026-08-14 15:42:43,609][ INFO][PID:2040698] Checking for cancel request [2026-08-14 15:42:48,610][ INFO][PID:2040698] Checking for cancel request [2026-08-14 15:42:53,611][ INFO][PID:2040698] Checking for cancel request [2026-08-14 15:42:58,613][ INFO][PID:2040698] Checking for cancel request [2026-08-14 15:43:03,615][ INFO][PID:2040698] Checking for cancel request [2026-08-14 15:43:07,691][ INFO][PID:2040698] Downloading results from builder [2026-08-14 15:43:07,691][ INFO][PID:2040698] rsyncing of mockbuilder@44.192.45.164:/var/lib/copr-rpmbuild/results/ to /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5368/srpm-builds/10865592 started [2026-08-14 15:43:07,692][ INFO][PID:2040698] Popen command started: /usr/bin/rsync -rltDvH --chmod=D755,F644 -e 'ssh -F /home/copr/.ssh/config' mockbuilder@44.192.45.164:/var/lib/copr-rpmbuild/results/ /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5368/srpm-builds/10865592/ &> /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5368/srpm-builds/10865592/build-10865592.rsync.log [2026-08-14 15:43:13,014][ INFO][PID:2040698] rsyncing finished. [2026-08-14 15:43:13,015][ INFO][PID:2040698] VM Release request [2026-08-14 15:43:13,028][ INFO][PID:2040698] Searching for 'success' file in resultdir [2026-08-14 15:43:13,030][ INFO][PID:2040698] Getting build details [2026-08-14 15:43:13,031][ INFO][PID:2040698] Retrieving SRPM info from /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5368/srpm-builds/10865592 [2026-08-14 15:43:13,032][ INFO][PID:2040698] SRPM URL: https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5368/srpm-builds/10865592/Sunshine-0.0.5368-1.src.rpm [2026-08-14 15:43:13,032][ INFO][PID:2040698] build details: {'srpm_url': 'https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5368/srpm-builds/10865592/Sunshine-0.0.5368-1.src.rpm', 'pkg_name': 'Sunshine', 'pkg_version': '0.0.5368-1'} [2026-08-14 15:43:13,033][ INFO][PID:2040698] Finished build: id=10865592 failed=False timeout=108000 destdir=/var/lib/copr/public_html/results/lizardbyte/pulls:pr:5368 chroot=srpm-builds [2026-08-14 15:43:13,035][ INFO][PID:2040698] Worker succeeded build, took 686.9132969379425 [2026-08-14 15:43:13,036][ INFO][PID:2040698] Sending build state back to frontend: { "builds": [ { "timeout": 108000, "frontend_base_url": "https://copr.fedorainfracloud.org", "memory_reqs": null, "enable_net": true, "project_owner": "lizardbyte", "project_name": "pulls", "project_dirname": "pulls:pr:5368", "submitter": null, "ended_on": 1786722193.0356462, "started_on": 1786721506.1223493, "submitted_on": null, "status": 1, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10865592", "build_id": 10865592, "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\": \"tmpffpzoavu\", \"hook_data\": true}", "pkg_name": "Sunshine", "pkg_main_version": null, "pkg_epoch": null, "pkg_release": null, "srpm_url": "https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5368/srpm-builds/10865592/Sunshine-0.0.5368-1.src.rpm", "uses_devel_repo": null, "sandbox": "lizardbyte/pulls--d1c09943-817d-4345-a6ca-a0231521c431", "results": { "architecture_specific_tags": { "fedora-43": {}, "fedora-44": {}, "fedora-rawhide": {} }, "name": "Sunshine", "epoch": null, "version": "0.0.5368", "release": "1" }, "appstream": false, "allow_user_ssh": null, "ssh_public_keys": null, "storage": null, "repos": [], "background": true, "distributions_in_build": [ "fedora-43", "fedora-44", "fedora-rawhide" ], "distributions_in_project": [ "fedora-43", "fedora-44", "fedora-rawhide" ], "destdir": "/var/lib/copr/public_html/results/lizardbyte/pulls:pr:5368", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5368", "result_dir": "10865592", "built_packages": "", "tags": [ "arch_x86_64" ], "rpmeta_prediction": null, "pkg_version": "0.0.5368-1", "id": 10865592, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2026-08-14 15:43:13,112][ INFO][PID:2040698] Sending fedora-messaging bus message in build.end [2026-08-14 15:43:13,141][ INFO][PID:2040698] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5368/srpm-builds/10865592/builder-live.log by gzip [2026-08-14 15:43:13,142][ INFO][PID:2040698] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5368/srpm-builds/10865592/builder-live.log' as PID 2115184 [2026-08-14 15:43:13,208][ INFO][PID:2040698] Finished after 0 seconds with exit code 0 (gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5368/srpm-builds/10865592/builder-live.log) [2026-08-14 15:43:13,209][ INFO][PID:2040698] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5368/srpm-builds/10865592/backend.log by gzip [2026-08-14 15:43:13,210][ INFO][PID:2040698] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5368/srpm-builds/10865592/backend.log' as PID 2115186