[2026-09-15 06:47:45,115][ INFO][PID:3944115] Marking build as starting [2026-09-15 06:47:45,143][ INFO][PID:3944115] Checking for cancel request [2026-09-15 06:47:45,144][ INFO][PID:3944115] VM allocation process starts [2026-09-15 06:47:45,149][ INFO][PID:3944115] Trying to allocate VM: ResallocHost, ticket_id=5029960, requested_tags=['arch_x86_64', 'copr_builder'] [2026-09-15 06:47:48,159][ INFO][PID:3944115] Allocated host ResallocHost, ticket_id=5029960, hostname=18.232.121.15, name=aws_x86_64_reserved_prod_37650630_20260915_063324, requested_tags=['arch_x86_64', 'copr_builder'] [2026-09-15 06:47:48,241][ INFO][PID:3944115] Allocating ssh connection to builder [2026-09-15 06:47:48,241][ INFO][PID:3944115] Checking that builder machine is OK [2026-09-15 06:47:48,503][ INFO][PID:3944115] Installed copr-rpmbuild version: 1.9 [2026-09-15 06:47:48,503][ INFO][PID:3944115] Running remote command: copr-builder-ready srpm-builds [2026-09-15 06:47:48,656][ INFO][PID:3944115] Red Hat subscription not needed for srpm-builds Builder is ready to be used [2026-09-15 06:47:48,657][ INFO][PID:3944115] Filling build.info file with builder info [2026-09-15 06:47:48,657][ INFO][PID:3944115] Checking for cancel request [2026-09-15 06:47:48,658][ INFO][PID:3944115] 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:5618", "submitter": null, "ended_on": null, "started_on": 1789454868.658049, "submitted_on": null, "status": 3, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10986792", "build_id": 10986792, "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\": \"tmpqam0cwab\", \"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--710f7ab3-1eee-4d88-b65c-6e7037e2984c", "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:5618", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5618", "result_dir": "10986792", "built_packages": "", "tags": [ "arch_x86_64" ], "rpmeta_prediction": null, "id": 10986792, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2026-09-15 06:47:48,686][ INFO][PID:3944115] Sending fedora-messaging bus message in build.start [2026-09-15 06:47:49,058][ INFO][PID:3944115] Sending fedora-messaging bus message in chroot.start [2026-09-15 06:47:49,078][ INFO][PID:3944115] Starting remote build: copr-rpmbuild --verbose --drop-resultdir --srpm --task-url https://copr.fedorainfracloud.org/backend/get-srpm-build-task/10986792 --detached [2026-09-15 06:47:49,485][ INFO][PID:3944115] The copr-rpmbuild seems started, per: stdout: stderr: Warning: Permanently added '18.232.121.15' (ED25519) to the list of known hosts. [2026-09-15 06:47:49,486][ INFO][PID:3944115] Downloading the builder-live.log file, attempt 1 [2026-09-15 06:47:49,487][ INFO][PID:3944115] Popen command started: ssh -F /home/copr/.ssh/config mockbuilder@18.232.121.15 copr-rpmbuild-log [2026-09-15 06:47:54,491][ INFO][PID:3944115] Periodic builder liveness probe: alive [2026-09-15 06:47:54,491][ INFO][PID:3944115] Checking for cancel request [2026-09-15 06:47:59,492][ INFO][PID:3944115] Checking for cancel request [2026-09-15 06:48:04,492][ INFO][PID:3944115] Checking for cancel request [2026-09-15 06:48:09,493][ INFO][PID:3944115] Checking for cancel request [2026-09-15 06:48:14,494][ INFO][PID:3944115] Checking for cancel request [2026-09-15 06:48:19,495][ INFO][PID:3944115] Checking for cancel request [2026-09-15 06:48:24,496][ INFO][PID:3944115] Checking for cancel request [2026-09-15 06:48:29,497][ INFO][PID:3944115] Checking for cancel request [2026-09-15 06:48:34,498][ INFO][PID:3944115] Checking for cancel request [2026-09-15 06:48:39,499][ INFO][PID:3944115] Checking for cancel request [2026-09-15 06:48:44,500][ INFO][PID:3944115] Checking for cancel request [2026-09-15 06:48:49,501][ INFO][PID:3944115] Checking for cancel request [2026-09-15 06:48:54,502][ INFO][PID:3944115] Checking for cancel request [2026-09-15 06:48:59,503][ INFO][PID:3944115] Checking for cancel request [2026-09-15 06:49:04,504][ INFO][PID:3944115] Checking for cancel request [2026-09-15 06:49:09,504][ INFO][PID:3944115] Checking for cancel request [2026-09-15 06:49:14,506][ INFO][PID:3944115] Checking for cancel request [2026-09-15 06:49:19,507][ INFO][PID:3944115] Checking for cancel request [2026-09-15 06:49:24,508][ INFO][PID:3944115] Checking for cancel request [2026-09-15 06:49:29,508][ INFO][PID:3944115] Checking for cancel request [2026-09-15 06:49:34,509][ INFO][PID:3944115] Checking for cancel request [2026-09-15 06:49:39,511][ INFO][PID:3944115] Checking for cancel request [2026-09-15 06:49:44,512][ INFO][PID:3944115] Checking for cancel request [2026-09-15 06:49:49,513][ INFO][PID:3944115] Checking for cancel request [2026-09-15 06:49:54,513][ INFO][PID:3944115] Checking for cancel request [2026-09-15 06:49:59,514][ INFO][PID:3944115] Checking for cancel request [2026-09-15 06:50:04,515][ INFO][PID:3944115] Checking for cancel request [2026-09-15 06:50:09,516][ INFO][PID:3944115] Checking for cancel request [2026-09-15 06:50:14,517][ INFO][PID:3944115] Checking for cancel request [2026-09-15 06:50:19,518][ INFO][PID:3944115] Checking for cancel request [2026-09-15 06:50:24,519][ INFO][PID:3944115] Checking for cancel request [2026-09-15 06:50:29,519][ INFO][PID:3944115] Checking for cancel request [2026-09-15 06:50:34,520][ INFO][PID:3944115] Checking for cancel request [2026-09-15 06:50:39,521][ INFO][PID:3944115] Checking for cancel request [2026-09-15 06:50:44,635][ INFO][PID:3944115] Checking for cancel request [2026-09-15 06:50:49,637][ INFO][PID:3944115] Checking for cancel request [2026-09-15 06:50:54,637][ INFO][PID:3944115] Checking for cancel request [2026-09-15 06:50:59,683][ INFO][PID:3944115] Checking for cancel request [2026-09-15 06:51:04,937][ INFO][PID:3944115] Checking for cancel request [2026-09-15 06:51:09,939][ INFO][PID:3944115] Checking for cancel request [2026-09-15 06:51:14,940][ INFO][PID:3944115] Checking for cancel request [2026-09-15 06:51:19,941][ INFO][PID:3944115] Checking for cancel request [2026-09-15 06:51:24,943][ INFO][PID:3944115] Checking for cancel request [2026-09-15 06:51:29,945][ INFO][PID:3944115] Checking for cancel request [2026-09-15 06:51:34,946][ INFO][PID:3944115] Checking for cancel request [2026-09-15 06:51:39,947][ INFO][PID:3944115] Checking for cancel request [2026-09-15 06:51:45,218][ INFO][PID:3944115] Checking for cancel request [2026-09-15 06:51:50,219][ INFO][PID:3944115] Checking for cancel request [2026-09-15 06:51:55,220][ INFO][PID:3944115] Checking for cancel request [2026-09-15 06:52:00,220][ INFO][PID:3944115] Checking for cancel request [2026-09-15 06:52:05,221][ INFO][PID:3944115] Checking for cancel request [2026-09-15 06:52:10,222][ INFO][PID:3944115] Checking for cancel request [2026-09-15 06:52:15,223][ INFO][PID:3944115] Checking for cancel request [2026-09-15 06:52:20,223][ INFO][PID:3944115] Checking for cancel request [2026-09-15 06:52:25,487][ INFO][PID:3944115] Checking for cancel request [2026-09-15 06:52:30,488][ INFO][PID:3944115] Checking for cancel request [2026-09-15 06:52:35,489][ INFO][PID:3944115] Checking for cancel request [2026-09-15 06:52:40,490][ INFO][PID:3944115] Checking for cancel request [2026-09-15 06:52:45,490][ INFO][PID:3944115] Checking for cancel request [2026-09-15 06:52:50,550][ INFO][PID:3944115] Checking for cancel request [2026-09-15 06:52:55,551][ INFO][PID:3944115] Checking for cancel request [2026-09-15 06:53:00,552][ INFO][PID:3944115] Checking for cancel request [2026-09-15 06:53:05,553][ INFO][PID:3944115] Checking for cancel request [2026-09-15 06:53:10,553][ INFO][PID:3944115] Checking for cancel request [2026-09-15 06:53:15,554][ INFO][PID:3944115] Checking for cancel request [2026-09-15 06:53:20,555][ INFO][PID:3944115] Checking for cancel request [2026-09-15 06:53:25,556][ INFO][PID:3944115] Checking for cancel request [2026-09-15 06:53:30,557][ INFO][PID:3944115] Checking for cancel request [2026-09-15 06:53:35,633][ INFO][PID:3944115] Checking for cancel request [2026-09-15 06:53:40,843][ INFO][PID:3944115] Checking for cancel request [2026-09-15 06:53:45,844][ INFO][PID:3944115] Checking for cancel request [2026-09-15 06:53:50,845][ INFO][PID:3944115] Checking for cancel request [2026-09-15 06:53:55,846][ INFO][PID:3944115] Checking for cancel request [2026-09-15 06:54:00,847][ INFO][PID:3944115] Checking for cancel request [2026-09-15 06:54:05,848][ INFO][PID:3944115] Checking for cancel request [2026-09-15 06:54:10,848][ INFO][PID:3944115] Checking for cancel request [2026-09-15 06:54:15,887][ INFO][PID:3944115] Checking for cancel request [2026-09-15 06:54:20,888][ INFO][PID:3944115] Checking for cancel request [2026-09-15 06:54:25,889][ INFO][PID:3944115] Checking for cancel request [2026-09-15 06:54:30,889][ INFO][PID:3944115] Checking for cancel request [2026-09-15 06:54:35,890][ INFO][PID:3944115] Checking for cancel request [2026-09-15 06:54:41,020][ INFO][PID:3944115] Checking for cancel request [2026-09-15 06:54:46,030][ INFO][PID:3944115] Checking for cancel request [2026-09-15 06:54:51,210][ INFO][PID:3944115] Checking for cancel request [2026-09-15 06:54:56,212][ INFO][PID:3944115] Checking for cancel request [2026-09-15 06:55:01,213][ INFO][PID:3944115] Checking for cancel request [2026-09-15 06:55:06,215][ INFO][PID:3944115] Checking for cancel request [2026-09-15 06:55:11,216][ INFO][PID:3944115] Checking for cancel request [2026-09-15 06:55:16,990][ INFO][PID:3944115] Checking for cancel request [2026-09-15 06:55:21,992][ INFO][PID:3944115] Checking for cancel request [2026-09-15 06:55:26,995][ INFO][PID:3944115] Checking for cancel request [2026-09-15 06:55:31,997][ INFO][PID:3944115] Checking for cancel request [2026-09-15 06:55:36,999][ INFO][PID:3944115] Checking for cancel request [2026-09-15 06:55:42,000][ INFO][PID:3944115] Checking for cancel request [2026-09-15 06:55:47,001][ INFO][PID:3944115] Checking for cancel request [2026-09-15 06:55:52,002][ INFO][PID:3944115] Checking for cancel request [2026-09-15 06:55:57,003][ INFO][PID:3944115] Checking for cancel request [2026-09-15 06:56:02,004][ INFO][PID:3944115] Checking for cancel request [2026-09-15 06:56:07,006][ INFO][PID:3944115] Checking for cancel request [2026-09-15 06:56:12,007][ INFO][PID:3944115] Checking for cancel request [2026-09-15 06:56:17,008][ INFO][PID:3944115] Checking for cancel request [2026-09-15 06:56:22,009][ INFO][PID:3944115] Checking for cancel request [2026-09-15 06:56:27,009][ INFO][PID:3944115] Checking for cancel request [2026-09-15 06:56:32,010][ INFO][PID:3944115] Checking for cancel request [2026-09-15 06:56:37,011][ INFO][PID:3944115] Checking for cancel request [2026-09-15 06:56:42,012][ INFO][PID:3944115] Checking for cancel request [2026-09-15 06:56:47,012][ INFO][PID:3944115] Checking for cancel request [2026-09-15 06:56:52,013][ INFO][PID:3944115] Checking for cancel request [2026-09-15 06:56:57,014][ INFO][PID:3944115] Checking for cancel request [2026-09-15 06:57:02,015][ INFO][PID:3944115] Checking for cancel request [2026-09-15 06:57:07,015][ INFO][PID:3944115] Checking for cancel request [2026-09-15 06:57:12,016][ INFO][PID:3944115] Checking for cancel request [2026-09-15 06:57:17,017][ INFO][PID:3944115] Checking for cancel request [2026-09-15 06:57:22,018][ INFO][PID:3944115] Checking for cancel request [2026-09-15 06:57:27,018][ INFO][PID:3944115] Checking for cancel request [2026-09-15 06:57:32,019][ INFO][PID:3944115] Checking for cancel request [2026-09-15 06:57:37,020][ INFO][PID:3944115] Checking for cancel request [2026-09-15 06:57:42,021][ INFO][PID:3944115] Checking for cancel request [2026-09-15 06:57:47,022][ INFO][PID:3944115] Checking for cancel request [2026-09-15 06:57:52,023][ INFO][PID:3944115] Checking for cancel request [2026-09-15 06:57:57,028][ INFO][PID:3944115] Periodic builder liveness probe: alive [2026-09-15 06:57:57,029][ INFO][PID:3944115] Checking for cancel request [2026-09-15 06:58:02,029][ INFO][PID:3944115] Checking for cancel request [2026-09-15 06:58:07,030][ INFO][PID:3944115] Checking for cancel request [2026-09-15 06:58:12,031][ INFO][PID:3944115] Checking for cancel request [2026-09-15 06:58:17,033][ INFO][PID:3944115] Checking for cancel request [2026-09-15 06:58:22,035][ INFO][PID:3944115] Checking for cancel request [2026-09-15 06:58:27,036][ INFO][PID:3944115] Checking for cancel request [2026-09-15 06:58:32,037][ INFO][PID:3944115] Checking for cancel request [2026-09-15 06:58:37,037][ INFO][PID:3944115] Checking for cancel request [2026-09-15 06:58:37,090][ INFO][PID:3944115] Downloading results from builder [2026-09-15 06:58:37,090][ INFO][PID:3944115] rsyncing of mockbuilder@18.232.121.15:/var/lib/copr-rpmbuild/results/ to /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5618/srpm-builds/10986792 started [2026-09-15 06:58:37,091][ INFO][PID:3944115] Popen command started: /usr/bin/rsync -rltDvH --chmod=D755,F644 -e 'ssh -F /home/copr/.ssh/config' mockbuilder@18.232.121.15:/var/lib/copr-rpmbuild/results/ /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5618/srpm-builds/10986792/ &> /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5618/srpm-builds/10986792/build-10986792.rsync.log [2026-09-15 06:58:39,081][ INFO][PID:3944115] rsyncing finished. [2026-09-15 06:58:39,082][ INFO][PID:3944115] VM Release request [2026-09-15 06:58:39,089][ INFO][PID:3944115] Searching for 'success' file in resultdir [2026-09-15 06:58:39,090][ INFO][PID:3944115] Getting build details [2026-09-15 06:58:39,091][ INFO][PID:3944115] Retrieving SRPM info from /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5618/srpm-builds/10986792 [2026-09-15 06:58:39,091][ INFO][PID:3944115] SRPM URL: https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5618/srpm-builds/10986792/Sunshine-0.0.5618-1.src.rpm [2026-09-15 06:58:39,092][ INFO][PID:3944115] build details: {'srpm_url': 'https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5618/srpm-builds/10986792/Sunshine-0.0.5618-1.src.rpm', 'pkg_name': 'Sunshine', 'pkg_version': '0.0.5618-1'} [2026-09-15 06:58:39,092][ INFO][PID:3944115] Finished build: id=10986792 failed=False timeout=108000 destdir=/var/lib/copr/public_html/results/lizardbyte/pulls:pr:5618 chroot=srpm-builds [2026-09-15 06:58:39,092][ INFO][PID:3944115] Worker succeeded build, took 650.4349081516266 [2026-09-15 06:58:39,093][ INFO][PID:3944115] 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:5618", "submitter": null, "ended_on": 1789455519.0929573, "started_on": 1789454868.658049, "submitted_on": null, "status": 1, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10986792", "build_id": 10986792, "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\": \"tmpqam0cwab\", \"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:5618/srpm-builds/10986792/Sunshine-0.0.5618-1.src.rpm", "uses_devel_repo": null, "sandbox": "lizardbyte/pulls--710f7ab3-1eee-4d88-b65c-6e7037e2984c", "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.5618", "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:5618", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5618", "result_dir": "10986792", "built_packages": "", "tags": [ "arch_x86_64" ], "rpmeta_prediction": null, "pkg_version": "0.0.5618-1", "id": 10986792, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2026-09-15 06:58:39,134][ INFO][PID:3944115] Sending fedora-messaging bus message in build.end [2026-09-15 06:58:39,154][ INFO][PID:3944115] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5618/srpm-builds/10986792/builder-live.log by gzip [2026-09-15 06:58:39,155][ INFO][PID:3944115] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5618/srpm-builds/10986792/builder-live.log' as PID 4069589 [2026-09-15 06:58:39,205][ INFO][PID:3944115] Finished after 0 seconds with exit code 0 (gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5618/srpm-builds/10986792/builder-live.log) [2026-09-15 06:58:39,206][ INFO][PID:3944115] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5618/srpm-builds/10986792/backend.log by gzip [2026-09-15 06:58:39,206][ INFO][PID:3944115] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5618/srpm-builds/10986792/backend.log' as PID 4069611