[2026-08-22 12:44:50,908][ INFO][PID:2046621] Marking build as starting [2026-08-22 12:44:50,959][ INFO][PID:2046621] Checking for cancel request [2026-08-22 12:44:50,961][ INFO][PID:2046621] VM allocation process starts [2026-08-22 12:44:50,971][ INFO][PID:2046621] Trying to allocate VM: ResallocHost, ticket_id=4576145, requested_tags=['arch_x86_64', 'copr_builder'] [2026-08-22 12:44:53,987][ INFO][PID:2046621] Allocated host ResallocHost, ticket_id=4576145, hostname=34.229.133.51, name=aws_x86_64_reserved_prod_20044738_20260822_121737, requested_tags=['arch_x86_64', 'copr_builder'] [2026-08-22 12:44:53,987][ INFO][PID:2046621] Allocating ssh connection to builder [2026-08-22 12:44:53,988][ INFO][PID:2046621] Checking that builder machine is OK [2026-08-22 12:44:54,302][ INFO][PID:2046621] Installed copr-rpmbuild version: 1.9 [2026-08-22 12:44:54,303][ INFO][PID:2046621] Running remote command: copr-builder-ready srpm-builds [2026-08-22 12:44:54,511][ INFO][PID:2046621] Red Hat subscription not needed for srpm-builds Builder is ready to be used [2026-08-22 12:44:54,512][ INFO][PID:2046621] Filling build.info file with builder info [2026-08-22 12:44:54,513][ INFO][PID:2046621] Checking for cancel request [2026-08-22 12:44:54,514][ INFO][PID:2046621] 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:5543", "submitter": null, "ended_on": null, "started_on": 1787402694.5139616, "submitted_on": null, "status": 3, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10892209", "build_id": 10892209, "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\": \"tmpjfieqfrs\", \"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--32ea409f-bf20-4186-8e49-2ec9dc16d509", "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" ], "distributions_in_project": [ "fedora-43", "fedora-44", "fedora-45", "fedora-rawhide" ], "destdir": "/var/lib/copr/public_html/results/lizardbyte/pulls:pr:5543", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5543", "result_dir": "10892209", "built_packages": "", "tags": [ "arch_x86_64" ], "rpmeta_prediction": null, "id": 10892209, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2026-08-22 12:44:54,552][ INFO][PID:2046621] Sending fedora-messaging bus message in build.start [2026-08-22 12:44:55,280][ INFO][PID:2046621] Sending fedora-messaging bus message in chroot.start [2026-08-22 12:44:55,326][ INFO][PID:2046621] Starting remote build: copr-rpmbuild --verbose --drop-resultdir --srpm --task-url https://copr.fedorainfracloud.org/backend/get-srpm-build-task/10892209 --detached [2026-08-22 12:44:55,950][ INFO][PID:2046621] The copr-rpmbuild seems started, per: stdout: stderr: Warning: Permanently added '34.229.133.51' (ED25519) to the list of known hosts. [2026-08-22 12:44:55,951][ INFO][PID:2046621] Downloading the builder-live.log file, attempt 1 [2026-08-22 12:44:55,953][ INFO][PID:2046621] Popen command started: ssh -F /home/copr/.ssh/config mockbuilder@34.229.133.51 copr-rpmbuild-log [2026-08-22 12:45:00,957][ INFO][PID:2046621] Periodic builder liveness probe: alive [2026-08-22 12:45:00,958][ INFO][PID:2046621] Checking for cancel request [2026-08-22 12:45:05,959][ INFO][PID:2046621] Checking for cancel request [2026-08-22 12:45:10,961][ INFO][PID:2046621] Checking for cancel request [2026-08-22 12:45:15,962][ INFO][PID:2046621] Checking for cancel request [2026-08-22 12:45:20,963][ INFO][PID:2046621] Checking for cancel request [2026-08-22 12:45:25,965][ INFO][PID:2046621] Checking for cancel request [2026-08-22 12:45:30,966][ INFO][PID:2046621] Checking for cancel request [2026-08-22 12:45:35,968][ INFO][PID:2046621] Checking for cancel request [2026-08-22 12:45:40,969][ INFO][PID:2046621] Checking for cancel request [2026-08-22 12:45:45,970][ INFO][PID:2046621] Checking for cancel request [2026-08-22 12:45:50,972][ INFO][PID:2046621] Checking for cancel request [2026-08-22 12:45:55,973][ INFO][PID:2046621] Checking for cancel request [2026-08-22 12:46:00,974][ INFO][PID:2046621] Checking for cancel request [2026-08-22 12:46:05,976][ INFO][PID:2046621] Checking for cancel request [2026-08-22 12:46:10,977][ INFO][PID:2046621] Checking for cancel request [2026-08-22 12:46:15,979][ INFO][PID:2046621] Checking for cancel request [2026-08-22 12:46:20,982][ INFO][PID:2046621] Checking for cancel request [2026-08-22 12:46:25,984][ INFO][PID:2046621] Checking for cancel request [2026-08-22 12:46:30,986][ INFO][PID:2046621] Checking for cancel request [2026-08-22 12:46:35,987][ INFO][PID:2046621] Checking for cancel request [2026-08-22 12:46:40,988][ INFO][PID:2046621] Checking for cancel request [2026-08-22 12:46:45,990][ INFO][PID:2046621] Checking for cancel request [2026-08-22 12:46:50,991][ INFO][PID:2046621] Checking for cancel request [2026-08-22 12:46:55,993][ INFO][PID:2046621] Checking for cancel request [2026-08-22 12:47:00,994][ INFO][PID:2046621] Checking for cancel request [2026-08-22 12:47:05,995][ INFO][PID:2046621] Checking for cancel request [2026-08-22 12:47:10,997][ INFO][PID:2046621] Checking for cancel request [2026-08-22 12:47:15,998][ INFO][PID:2046621] Checking for cancel request [2026-08-22 12:47:21,000][ INFO][PID:2046621] Checking for cancel request [2026-08-22 12:47:26,001][ INFO][PID:2046621] Checking for cancel request [2026-08-22 12:47:31,003][ INFO][PID:2046621] Checking for cancel request [2026-08-22 12:47:36,004][ INFO][PID:2046621] Checking for cancel request [2026-08-22 12:47:41,005][ INFO][PID:2046621] Checking for cancel request [2026-08-22 12:47:46,007][ INFO][PID:2046621] Checking for cancel request [2026-08-22 12:47:51,008][ INFO][PID:2046621] Checking for cancel request [2026-08-22 12:47:56,009][ INFO][PID:2046621] Checking for cancel request [2026-08-22 12:48:01,011][ INFO][PID:2046621] Checking for cancel request [2026-08-22 12:48:06,012][ INFO][PID:2046621] Checking for cancel request [2026-08-22 12:48:11,014][ INFO][PID:2046621] Checking for cancel request [2026-08-22 12:48:16,015][ INFO][PID:2046621] Checking for cancel request [2026-08-22 12:48:21,017][ INFO][PID:2046621] Checking for cancel request [2026-08-22 12:48:26,018][ INFO][PID:2046621] Checking for cancel request [2026-08-22 12:48:31,019][ INFO][PID:2046621] Checking for cancel request [2026-08-22 12:48:36,020][ INFO][PID:2046621] Checking for cancel request [2026-08-22 12:48:41,022][ INFO][PID:2046621] Checking for cancel request [2026-08-22 12:48:46,023][ INFO][PID:2046621] Checking for cancel request [2026-08-22 12:48:51,025][ INFO][PID:2046621] Checking for cancel request [2026-08-22 12:48:56,026][ INFO][PID:2046621] Checking for cancel request [2026-08-22 12:49:01,027][ INFO][PID:2046621] Checking for cancel request [2026-08-22 12:49:06,029][ INFO][PID:2046621] Checking for cancel request [2026-08-22 12:49:11,030][ INFO][PID:2046621] Checking for cancel request [2026-08-22 12:49:16,031][ INFO][PID:2046621] Checking for cancel request [2026-08-22 12:49:21,033][ INFO][PID:2046621] Checking for cancel request [2026-08-22 12:49:26,034][ INFO][PID:2046621] Checking for cancel request [2026-08-22 12:49:31,036][ INFO][PID:2046621] Checking for cancel request [2026-08-22 12:49:36,037][ INFO][PID:2046621] Checking for cancel request [2026-08-22 12:49:41,039][ INFO][PID:2046621] Checking for cancel request [2026-08-22 12:49:46,040][ INFO][PID:2046621] Checking for cancel request [2026-08-22 12:49:51,041][ INFO][PID:2046621] Checking for cancel request [2026-08-22 12:49:56,043][ INFO][PID:2046621] Checking for cancel request [2026-08-22 12:50:01,044][ INFO][PID:2046621] Checking for cancel request [2026-08-22 12:50:06,045][ INFO][PID:2046621] Checking for cancel request [2026-08-22 12:50:11,047][ INFO][PID:2046621] Checking for cancel request [2026-08-22 12:50:16,048][ INFO][PID:2046621] Checking for cancel request [2026-08-22 12:50:21,050][ INFO][PID:2046621] Checking for cancel request [2026-08-22 12:50:26,051][ INFO][PID:2046621] Checking for cancel request [2026-08-22 12:50:31,052][ INFO][PID:2046621] Checking for cancel request [2026-08-22 12:50:36,054][ INFO][PID:2046621] Checking for cancel request [2026-08-22 12:50:41,055][ INFO][PID:2046621] Checking for cancel request [2026-08-22 12:50:46,056][ INFO][PID:2046621] Checking for cancel request [2026-08-22 12:50:51,058][ INFO][PID:2046621] Checking for cancel request [2026-08-22 12:50:56,059][ INFO][PID:2046621] Checking for cancel request [2026-08-22 12:51:01,060][ INFO][PID:2046621] Checking for cancel request [2026-08-22 12:51:06,061][ INFO][PID:2046621] Checking for cancel request [2026-08-22 12:51:11,063][ INFO][PID:2046621] Checking for cancel request [2026-08-22 12:51:16,064][ INFO][PID:2046621] Checking for cancel request [2026-08-22 12:51:21,065][ INFO][PID:2046621] Checking for cancel request [2026-08-22 12:51:26,067][ INFO][PID:2046621] Checking for cancel request [2026-08-22 12:51:31,068][ INFO][PID:2046621] Checking for cancel request [2026-08-22 12:51:36,069][ INFO][PID:2046621] Checking for cancel request [2026-08-22 12:51:41,071][ INFO][PID:2046621] Checking for cancel request [2026-08-22 12:51:46,073][ INFO][PID:2046621] Checking for cancel request [2026-08-22 12:51:51,074][ INFO][PID:2046621] Checking for cancel request [2026-08-22 12:51:56,075][ INFO][PID:2046621] Checking for cancel request [2026-08-22 12:52:01,076][ INFO][PID:2046621] Checking for cancel request [2026-08-22 12:52:06,078][ INFO][PID:2046621] Checking for cancel request [2026-08-22 12:52:11,079][ INFO][PID:2046621] Checking for cancel request [2026-08-22 12:52:16,081][ INFO][PID:2046621] Checking for cancel request [2026-08-22 12:52:21,082][ INFO][PID:2046621] Checking for cancel request [2026-08-22 12:52:26,084][ INFO][PID:2046621] Checking for cancel request [2026-08-22 12:52:31,085][ INFO][PID:2046621] Checking for cancel request [2026-08-22 12:52:36,086][ INFO][PID:2046621] Checking for cancel request [2026-08-22 12:52:41,087][ INFO][PID:2046621] Checking for cancel request [2026-08-22 12:52:46,089][ INFO][PID:2046621] Checking for cancel request [2026-08-22 12:52:51,090][ INFO][PID:2046621] Checking for cancel request [2026-08-22 12:52:56,091][ INFO][PID:2046621] Checking for cancel request [2026-08-22 12:53:01,093][ INFO][PID:2046621] Checking for cancel request [2026-08-22 12:53:06,094][ INFO][PID:2046621] Checking for cancel request [2026-08-22 12:53:11,095][ INFO][PID:2046621] Checking for cancel request [2026-08-22 12:53:16,097][ INFO][PID:2046621] Checking for cancel request [2026-08-22 12:53:21,098][ INFO][PID:2046621] Checking for cancel request [2026-08-22 12:53:26,099][ INFO][PID:2046621] Checking for cancel request [2026-08-22 12:53:31,100][ INFO][PID:2046621] Checking for cancel request [2026-08-22 12:53:36,102][ INFO][PID:2046621] Checking for cancel request [2026-08-22 12:53:41,103][ INFO][PID:2046621] Checking for cancel request [2026-08-22 12:53:46,104][ INFO][PID:2046621] Checking for cancel request [2026-08-22 12:53:51,106][ INFO][PID:2046621] Checking for cancel request [2026-08-22 12:53:56,107][ INFO][PID:2046621] Checking for cancel request [2026-08-22 12:54:01,108][ INFO][PID:2046621] Checking for cancel request [2026-08-22 12:54:06,109][ INFO][PID:2046621] Checking for cancel request [2026-08-22 12:54:11,111][ INFO][PID:2046621] Checking for cancel request [2026-08-22 12:54:16,112][ INFO][PID:2046621] Checking for cancel request [2026-08-22 12:54:21,113][ INFO][PID:2046621] Checking for cancel request [2026-08-22 12:54:26,114][ INFO][PID:2046621] Checking for cancel request [2026-08-22 12:54:31,116][ INFO][PID:2046621] Checking for cancel request [2026-08-22 12:54:36,117][ INFO][PID:2046621] Checking for cancel request [2026-08-22 12:54:41,118][ INFO][PID:2046621] Checking for cancel request [2026-08-22 12:54:46,120][ INFO][PID:2046621] Checking for cancel request [2026-08-22 12:54:51,122][ INFO][PID:2046621] Checking for cancel request [2026-08-22 12:54:56,124][ INFO][PID:2046621] Checking for cancel request [2026-08-22 12:55:01,131][ INFO][PID:2046621] Periodic builder liveness probe: alive [2026-08-22 12:55:01,132][ INFO][PID:2046621] Checking for cancel request [2026-08-22 12:55:06,134][ INFO][PID:2046621] Checking for cancel request [2026-08-22 12:55:11,135][ INFO][PID:2046621] Checking for cancel request [2026-08-22 12:55:16,138][ INFO][PID:2046621] Checking for cancel request [2026-08-22 12:55:21,139][ INFO][PID:2046621] Checking for cancel request [2026-08-22 12:55:26,143][ INFO][PID:2046621] Checking for cancel request [2026-08-22 12:55:31,144][ INFO][PID:2046621] Checking for cancel request [2026-08-22 12:55:36,146][ INFO][PID:2046621] Checking for cancel request [2026-08-22 12:55:41,148][ INFO][PID:2046621] Checking for cancel request [2026-08-22 12:55:46,150][ INFO][PID:2046621] Checking for cancel request [2026-08-22 12:55:51,152][ INFO][PID:2046621] Checking for cancel request [2026-08-22 12:55:56,153][ INFO][PID:2046621] Checking for cancel request [2026-08-22 12:56:01,156][ INFO][PID:2046621] Checking for cancel request [2026-08-22 12:56:04,074][ INFO][PID:2046621] Downloading results from builder [2026-08-22 12:56:04,075][ INFO][PID:2046621] rsyncing of mockbuilder@34.229.133.51:/var/lib/copr-rpmbuild/results/ to /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5543/srpm-builds/10892209 started [2026-08-22 12:56:04,077][ INFO][PID:2046621] Popen command started: /usr/bin/rsync -rltDvH --chmod=D755,F644 -e 'ssh -F /home/copr/.ssh/config' mockbuilder@34.229.133.51:/var/lib/copr-rpmbuild/results/ /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5543/srpm-builds/10892209/ &> /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5543/srpm-builds/10892209/build-10892209.rsync.log [2026-08-22 12:56:09,373][ INFO][PID:2046621] rsyncing finished. [2026-08-22 12:56:09,374][ INFO][PID:2046621] VM Release request [2026-08-22 12:56:09,396][ INFO][PID:2046621] Searching for 'success' file in resultdir [2026-08-22 12:56:09,398][ INFO][PID:2046621] Getting build details [2026-08-22 12:56:09,399][ INFO][PID:2046621] Retrieving SRPM info from /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5543/srpm-builds/10892209 [2026-08-22 12:56:09,401][ INFO][PID:2046621] SRPM URL: https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5543/srpm-builds/10892209/Sunshine-0.0.5543-1.src.rpm [2026-08-22 12:56:09,402][ INFO][PID:2046621] build details: {'srpm_url': 'https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5543/srpm-builds/10892209/Sunshine-0.0.5543-1.src.rpm', 'pkg_name': 'Sunshine', 'pkg_version': '0.0.5543-1'} [2026-08-22 12:56:09,402][ INFO][PID:2046621] Finished build: id=10892209 failed=False timeout=108000 destdir=/var/lib/copr/public_html/results/lizardbyte/pulls:pr:5543 chroot=srpm-builds [2026-08-22 12:56:09,404][ INFO][PID:2046621] Worker succeeded build, took 674.8902533054352 [2026-08-22 12:56:09,405][ INFO][PID:2046621] 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:5543", "submitter": null, "ended_on": 1787403369.4042149, "started_on": 1787402694.5139616, "submitted_on": null, "status": 1, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10892209", "build_id": 10892209, "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\": \"tmpjfieqfrs\", \"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:5543/srpm-builds/10892209/Sunshine-0.0.5543-1.src.rpm", "uses_devel_repo": null, "sandbox": "lizardbyte/pulls--32ea409f-bf20-4186-8e49-2ec9dc16d509", "results": { "architecture_specific_tags": { "fedora-43": {}, "fedora-44": {}, "fedora-45": {}, "fedora-rawhide": {} }, "name": "Sunshine", "epoch": null, "version": "0.0.5543", "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" ], "distributions_in_project": [ "fedora-43", "fedora-44", "fedora-45", "fedora-rawhide" ], "destdir": "/var/lib/copr/public_html/results/lizardbyte/pulls:pr:5543", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5543", "result_dir": "10892209", "built_packages": "", "tags": [ "arch_x86_64" ], "rpmeta_prediction": null, "pkg_version": "0.0.5543-1", "id": 10892209, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2026-08-22 12:56:09,464][ INFO][PID:2046621] Sending fedora-messaging bus message in build.end [2026-08-22 12:56:09,534][ INFO][PID:2046621] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5543/srpm-builds/10892209/builder-live.log by gzip [2026-08-22 12:56:09,536][ INFO][PID:2046621] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5543/srpm-builds/10892209/builder-live.log' as PID 2127882 [2026-08-22 12:56:09,549][ INFO][PID:2046621] Finished after 0 seconds with exit code 0 (gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5543/srpm-builds/10892209/builder-live.log) [2026-08-22 12:56:09,550][ INFO][PID:2046621] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5543/srpm-builds/10892209/backend.log by gzip [2026-08-22 12:56:09,551][ INFO][PID:2046621] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5543/srpm-builds/10892209/backend.log' as PID 2127883