[2026-08-11 16:36:26,958][ INFO][PID:3910934] Marking build as starting [2026-08-11 16:36:27,008][ INFO][PID:3910934] Checking for cancel request [2026-08-11 16:36:27,015][ INFO][PID:3910934] VM allocation process starts [2026-08-11 16:36:27,045][ INFO][PID:3910934] Trying to allocate VM: ResallocHost, ticket_id=4397455, requested_tags=['arch_x86_64', 'copr_builder'] [2026-08-11 16:36:30,072][ INFO][PID:3910934] Allocated host ResallocHost, ticket_id=4397455, hostname=100.58.233.55, name=aws_x86_64_reserved_prod_17887320_20260811_163350, requested_tags=['arch_x86_64', 'copr_builder'] [2026-08-11 16:36:30,073][ INFO][PID:3910934] Allocating ssh connection to builder [2026-08-11 16:36:30,075][ INFO][PID:3910934] Checking that builder machine is OK [2026-08-11 16:36:30,442][ INFO][PID:3910934] Installed copr-rpmbuild version: 1.8 [2026-08-11 16:36:30,443][ INFO][PID:3910934] Running remote command: copr-builder-ready srpm-builds [2026-08-11 16:36:30,630][ INFO][PID:3910934] Red Hat subscription not needed for srpm-builds Builder is ready to be used [2026-08-11 16:36:30,631][ INFO][PID:3910934] Filling build.info file with builder info [2026-08-11 16:36:30,632][ INFO][PID:3910934] Checking for cancel request [2026-08-11 16:36:30,633][ INFO][PID:3910934] 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": 1786466190.6331482, "submitted_on": null, "status": 3, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10848977", "build_id": 10848977, "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\": \"tmpotj3c4s3\", \"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--6ad5710e-6808-4485-a2f3-35752bb7f7e3", "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": "10848977", "built_packages": "", "tags": [ "arch_x86_64" ], "rpmeta_prediction": null, "id": 10848977, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2026-08-11 16:36:30,677][ INFO][PID:3910934] Sending fedora-messaging bus message in build.start [2026-08-11 16:36:31,260][ INFO][PID:3910934] Sending fedora-messaging bus message in chroot.start [2026-08-11 16:36:31,297][ INFO][PID:3910934] Starting remote build: copr-rpmbuild --verbose --drop-resultdir --srpm --task-url https://copr.fedorainfracloud.org/backend/get-srpm-build-task/10848977 --detached [2026-08-11 16:36:31,795][ INFO][PID:3910934] The copr-rpmbuild seems started, per: stdout: stderr: Warning: Permanently added '100.58.233.55' (ED25519) to the list of known hosts. [2026-08-11 16:36:31,801][ INFO][PID:3910934] Downloading the builder-live.log file, attempt 1 [2026-08-11 16:36:31,805][ INFO][PID:3910934] Popen command started: ssh -F /home/copr/.ssh/config mockbuilder@100.58.233.55 copr-rpmbuild-log [2026-08-11 16:36:36,855][ INFO][PID:3910934] Periodic builder liveness probe: alive [2026-08-11 16:36:36,856][ INFO][PID:3910934] Checking for cancel request [2026-08-11 16:36:41,858][ INFO][PID:3910934] Checking for cancel request [2026-08-11 16:36:46,861][ INFO][PID:3910934] Checking for cancel request [2026-08-11 16:36:51,863][ INFO][PID:3910934] Checking for cancel request [2026-08-11 16:36:56,869][ INFO][PID:3910934] Checking for cancel request [2026-08-11 16:37:01,872][ INFO][PID:3910934] Checking for cancel request [2026-08-11 16:37:06,875][ INFO][PID:3910934] Checking for cancel request [2026-08-11 16:37:11,879][ INFO][PID:3910934] Checking for cancel request [2026-08-11 16:37:16,888][ INFO][PID:3910934] Checking for cancel request [2026-08-11 16:37:21,892][ INFO][PID:3910934] Checking for cancel request [2026-08-11 16:37:26,895][ INFO][PID:3910934] Checking for cancel request [2026-08-11 16:37:31,900][ INFO][PID:3910934] Checking for cancel request [2026-08-11 16:37:36,907][ INFO][PID:3910934] Checking for cancel request [2026-08-11 16:37:41,911][ INFO][PID:3910934] Checking for cancel request [2026-08-11 16:37:46,917][ INFO][PID:3910934] Checking for cancel request [2026-08-11 16:37:51,921][ INFO][PID:3910934] Checking for cancel request [2026-08-11 16:37:56,942][ INFO][PID:3910934] Checking for cancel request [2026-08-11 16:38:01,945][ INFO][PID:3910934] Checking for cancel request [2026-08-11 16:38:06,953][ INFO][PID:3910934] Checking for cancel request [2026-08-11 16:38:11,958][ INFO][PID:3910934] Checking for cancel request [2026-08-11 16:38:16,961][ INFO][PID:3910934] Checking for cancel request [2026-08-11 16:38:21,963][ INFO][PID:3910934] Checking for cancel request [2026-08-11 16:38:26,965][ INFO][PID:3910934] Checking for cancel request [2026-08-11 16:38:31,968][ INFO][PID:3910934] Checking for cancel request [2026-08-11 16:38:36,970][ INFO][PID:3910934] Checking for cancel request [2026-08-11 16:38:41,971][ INFO][PID:3910934] Checking for cancel request [2026-08-11 16:38:46,973][ INFO][PID:3910934] Checking for cancel request [2026-08-11 16:38:51,976][ INFO][PID:3910934] Checking for cancel request [2026-08-11 16:38:56,981][ INFO][PID:3910934] Checking for cancel request [2026-08-11 16:39:01,983][ INFO][PID:3910934] Checking for cancel request [2026-08-11 16:39:06,987][ INFO][PID:3910934] Checking for cancel request [2026-08-11 16:39:11,990][ INFO][PID:3910934] Checking for cancel request [2026-08-11 16:39:16,994][ INFO][PID:3910934] Checking for cancel request [2026-08-11 16:39:21,996][ INFO][PID:3910934] Checking for cancel request [2026-08-11 16:39:26,998][ INFO][PID:3910934] Checking for cancel request [2026-08-11 16:39:32,000][ INFO][PID:3910934] Checking for cancel request [2026-08-11 16:39:37,002][ INFO][PID:3910934] Checking for cancel request [2026-08-11 16:39:42,003][ INFO][PID:3910934] Checking for cancel request [2026-08-11 16:39:47,005][ INFO][PID:3910934] Checking for cancel request [2026-08-11 16:39:52,007][ INFO][PID:3910934] Checking for cancel request [2026-08-11 16:39:57,009][ INFO][PID:3910934] Checking for cancel request [2026-08-11 16:40:02,011][ INFO][PID:3910934] Checking for cancel request [2026-08-11 16:40:07,018][ INFO][PID:3910934] Checking for cancel request [2026-08-11 16:40:12,021][ INFO][PID:3910934] Checking for cancel request [2026-08-11 16:40:17,024][ INFO][PID:3910934] Checking for cancel request [2026-08-11 16:40:22,030][ INFO][PID:3910934] Checking for cancel request [2026-08-11 16:40:27,032][ INFO][PID:3910934] Checking for cancel request [2026-08-11 16:40:32,034][ INFO][PID:3910934] Checking for cancel request [2026-08-11 16:40:37,036][ INFO][PID:3910934] Checking for cancel request [2026-08-11 16:40:42,037][ INFO][PID:3910934] Checking for cancel request [2026-08-11 16:40:47,039][ INFO][PID:3910934] Checking for cancel request [2026-08-11 16:40:52,040][ INFO][PID:3910934] Checking for cancel request [2026-08-11 16:40:57,042][ INFO][PID:3910934] Checking for cancel request [2026-08-11 16:41:02,044][ INFO][PID:3910934] Checking for cancel request [2026-08-11 16:41:07,045][ INFO][PID:3910934] Checking for cancel request [2026-08-11 16:41:12,047][ INFO][PID:3910934] Checking for cancel request [2026-08-11 16:41:17,048][ INFO][PID:3910934] Checking for cancel request [2026-08-11 16:41:22,050][ INFO][PID:3910934] Checking for cancel request [2026-08-11 16:41:27,052][ INFO][PID:3910934] Checking for cancel request [2026-08-11 16:41:32,055][ INFO][PID:3910934] Checking for cancel request [2026-08-11 16:41:37,063][ INFO][PID:3910934] Checking for cancel request [2026-08-11 16:41:42,064][ INFO][PID:3910934] Checking for cancel request [2026-08-11 16:41:47,066][ INFO][PID:3910934] Checking for cancel request [2026-08-11 16:41:52,067][ INFO][PID:3910934] Checking for cancel request [2026-08-11 16:41:57,069][ INFO][PID:3910934] Checking for cancel request [2026-08-11 16:42:02,070][ INFO][PID:3910934] Checking for cancel request [2026-08-11 16:42:07,072][ INFO][PID:3910934] Checking for cancel request [2026-08-11 16:42:12,073][ INFO][PID:3910934] Checking for cancel request [2026-08-11 16:42:17,075][ INFO][PID:3910934] Checking for cancel request [2026-08-11 16:42:22,076][ INFO][PID:3910934] Checking for cancel request [2026-08-11 16:42:27,077][ INFO][PID:3910934] Checking for cancel request [2026-08-11 16:42:32,079][ INFO][PID:3910934] Checking for cancel request [2026-08-11 16:42:37,080][ INFO][PID:3910934] Checking for cancel request [2026-08-11 16:42:42,081][ INFO][PID:3910934] Checking for cancel request [2026-08-11 16:42:47,083][ INFO][PID:3910934] Checking for cancel request [2026-08-11 16:42:52,085][ INFO][PID:3910934] Checking for cancel request [2026-08-11 16:42:57,086][ INFO][PID:3910934] Checking for cancel request [2026-08-11 16:43:02,088][ INFO][PID:3910934] Checking for cancel request [2026-08-11 16:43:07,089][ INFO][PID:3910934] Checking for cancel request [2026-08-11 16:43:12,090][ INFO][PID:3910934] Checking for cancel request [2026-08-11 16:43:17,092][ INFO][PID:3910934] Checking for cancel request [2026-08-11 16:43:22,093][ INFO][PID:3910934] Checking for cancel request [2026-08-11 16:43:27,094][ INFO][PID:3910934] Checking for cancel request [2026-08-11 16:43:32,096][ INFO][PID:3910934] Checking for cancel request [2026-08-11 16:43:37,098][ INFO][PID:3910934] Checking for cancel request [2026-08-11 16:43:42,100][ INFO][PID:3910934] Checking for cancel request [2026-08-11 16:43:47,101][ INFO][PID:3910934] Checking for cancel request [2026-08-11 16:43:52,103][ INFO][PID:3910934] Checking for cancel request [2026-08-11 16:43:57,110][ INFO][PID:3910934] Checking for cancel request [2026-08-11 16:44:02,112][ INFO][PID:3910934] Checking for cancel request [2026-08-11 16:44:07,114][ INFO][PID:3910934] Checking for cancel request [2026-08-11 16:44:12,116][ INFO][PID:3910934] Checking for cancel request [2026-08-11 16:44:17,125][ INFO][PID:3910934] Checking for cancel request [2026-08-11 16:44:22,128][ INFO][PID:3910934] Checking for cancel request [2026-08-11 16:44:27,130][ INFO][PID:3910934] Checking for cancel request [2026-08-11 16:44:32,131][ INFO][PID:3910934] Checking for cancel request [2026-08-11 16:44:37,133][ INFO][PID:3910934] Checking for cancel request [2026-08-11 16:44:42,134][ INFO][PID:3910934] Checking for cancel request [2026-08-11 16:44:47,136][ INFO][PID:3910934] Checking for cancel request [2026-08-11 16:44:52,138][ INFO][PID:3910934] Checking for cancel request [2026-08-11 16:44:57,144][ INFO][PID:3910934] Checking for cancel request [2026-08-11 16:45:02,146][ INFO][PID:3910934] Checking for cancel request [2026-08-11 16:45:07,147][ INFO][PID:3910934] Checking for cancel request [2026-08-11 16:45:12,149][ INFO][PID:3910934] Checking for cancel request [2026-08-11 16:45:17,150][ INFO][PID:3910934] Checking for cancel request [2026-08-11 16:45:22,152][ INFO][PID:3910934] Checking for cancel request [2026-08-11 16:45:27,153][ INFO][PID:3910934] Checking for cancel request [2026-08-11 16:45:32,160][ INFO][PID:3910934] Checking for cancel request [2026-08-11 16:45:37,161][ INFO][PID:3910934] Checking for cancel request [2026-08-11 16:45:42,162][ INFO][PID:3910934] Checking for cancel request [2026-08-11 16:45:47,164][ INFO][PID:3910934] Checking for cancel request [2026-08-11 16:45:52,170][ INFO][PID:3910934] Checking for cancel request [2026-08-11 16:45:57,172][ INFO][PID:3910934] Checking for cancel request [2026-08-11 16:46:02,173][ INFO][PID:3910934] Checking for cancel request [2026-08-11 16:46:07,175][ INFO][PID:3910934] Checking for cancel request [2026-08-11 16:46:12,177][ INFO][PID:3910934] Checking for cancel request [2026-08-11 16:46:17,180][ INFO][PID:3910934] Checking for cancel request [2026-08-11 16:46:22,181][ INFO][PID:3910934] Checking for cancel request [2026-08-11 16:46:27,182][ INFO][PID:3910934] Checking for cancel request [2026-08-11 16:46:32,184][ INFO][PID:3910934] Checking for cancel request [2026-08-11 16:46:37,192][ INFO][PID:3910934] Periodic builder liveness probe: alive [2026-08-11 16:46:37,193][ INFO][PID:3910934] Checking for cancel request [2026-08-11 16:46:42,194][ INFO][PID:3910934] Checking for cancel request [2026-08-11 16:46:47,195][ INFO][PID:3910934] Checking for cancel request [2026-08-11 16:46:52,197][ INFO][PID:3910934] Checking for cancel request [2026-08-11 16:46:57,198][ INFO][PID:3910934] Checking for cancel request [2026-08-11 16:47:02,200][ INFO][PID:3910934] Checking for cancel request [2026-08-11 16:47:07,201][ INFO][PID:3910934] Checking for cancel request [2026-08-11 16:47:12,203][ INFO][PID:3910934] Checking for cancel request [2026-08-11 16:47:17,208][ INFO][PID:3910934] Checking for cancel request [2026-08-11 16:47:22,210][ INFO][PID:3910934] Checking for cancel request [2026-08-11 16:47:27,211][ INFO][PID:3910934] Checking for cancel request [2026-08-11 16:47:28,979][ INFO][PID:3910934] Downloading results from builder [2026-08-11 16:47:28,981][ INFO][PID:3910934] rsyncing of mockbuilder@100.58.233.55:/var/lib/copr-rpmbuild/results/ to /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5368/srpm-builds/10848977 started [2026-08-11 16:47:28,983][ INFO][PID:3910934] Popen command started: /usr/bin/rsync -rltDvH --chmod=D755,F644 -e 'ssh -F /home/copr/.ssh/config' mockbuilder@100.58.233.55:/var/lib/copr-rpmbuild/results/ /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5368/srpm-builds/10848977/ &> /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5368/srpm-builds/10848977/build-10848977.rsync.log [2026-08-11 16:47:34,102][ INFO][PID:3910934] rsyncing finished. [2026-08-11 16:47:34,103][ INFO][PID:3910934] VM Release request [2026-08-11 16:47:34,112][ INFO][PID:3910934] Searching for 'success' file in resultdir [2026-08-11 16:47:34,113][ INFO][PID:3910934] Getting build details [2026-08-11 16:47:34,114][ INFO][PID:3910934] Retrieving SRPM info from /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5368/srpm-builds/10848977 [2026-08-11 16:47:34,115][ INFO][PID:3910934] SRPM URL: https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5368/srpm-builds/10848977/Sunshine-0.0.5368-1.src.rpm [2026-08-11 16:47:34,116][ INFO][PID:3910934] build details: {'srpm_url': 'https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5368/srpm-builds/10848977/Sunshine-0.0.5368-1.src.rpm', 'pkg_name': 'Sunshine', 'pkg_version': '0.0.5368-1'} [2026-08-11 16:47:34,116][ INFO][PID:3910934] Finished build: id=10848977 failed=False timeout=108000 destdir=/var/lib/copr/public_html/results/lizardbyte/pulls:pr:5368 chroot=srpm-builds [2026-08-11 16:47:34,119][ INFO][PID:3910934] Worker succeeded build, took 663.4858396053314 [2026-08-11 16:47:34,120][ INFO][PID:3910934] 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": 1786466854.1189878, "started_on": 1786466190.6331482, "submitted_on": null, "status": 1, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10848977", "build_id": 10848977, "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\": \"tmpotj3c4s3\", \"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/10848977/Sunshine-0.0.5368-1.src.rpm", "uses_devel_repo": null, "sandbox": "lizardbyte/pulls--6ad5710e-6808-4485-a2f3-35752bb7f7e3", "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": "10848977", "built_packages": "", "tags": [ "arch_x86_64" ], "rpmeta_prediction": null, "pkg_version": "0.0.5368-1", "id": 10848977, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2026-08-11 16:47:34,173][ INFO][PID:3910934] Sending fedora-messaging bus message in build.end [2026-08-11 16:47:34,202][ INFO][PID:3910934] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5368/srpm-builds/10848977/builder-live.log by gzip [2026-08-11 16:47:34,203][ INFO][PID:3910934] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5368/srpm-builds/10848977/builder-live.log' as PID 4004102 [2026-08-11 16:47:34,247][ INFO][PID:3910934] Finished after 0 seconds with exit code 0 (gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5368/srpm-builds/10848977/builder-live.log) [2026-08-11 16:47:34,248][ INFO][PID:3910934] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5368/srpm-builds/10848977/backend.log by gzip [2026-08-11 16:47:34,250][ INFO][PID:3910934] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5368/srpm-builds/10848977/backend.log' as PID 4004115