[2026-09-14 05:48:09,627][ INFO][PID:4189961] Marking build as starting [2026-09-14 05:48:39,702][ INFO][PID:4189961] Checking for cancel request [2026-09-14 05:48:39,707][ INFO][PID:4189961] VM allocation process starts [2026-09-14 05:48:39,720][ INFO][PID:4189961] Trying to allocate VM: ResallocHost, ticket_id=5007352, requested_tags=['arch_x86_64', 'copr_builder'] [2026-09-14 05:48:42,734][ INFO][PID:4189961] Allocated host ResallocHost, ticket_id=5007352, hostname=34.229.45.6, name=aws_x86_64_reserved_prod_37012982_20260914_052747, requested_tags=['arch_x86_64', 'copr_builder'] [2026-09-14 05:48:43,266][ INFO][PID:4189961] Allocating ssh connection to builder [2026-09-14 05:48:43,266][ INFO][PID:4189961] Checking that builder machine is OK [2026-09-14 05:48:43,556][ INFO][PID:4189961] Installed copr-rpmbuild version: 1.9 [2026-09-14 05:48:43,556][ INFO][PID:4189961] Running remote command: copr-builder-ready srpm-builds [2026-09-14 05:48:43,713][ INFO][PID:4189961] Red Hat subscription not needed for srpm-builds Builder is ready to be used [2026-09-14 05:48:43,714][ INFO][PID:4189961] Filling build.info file with builder info [2026-09-14 05:48:43,714][ INFO][PID:4189961] Checking for cancel request [2026-09-14 05:48:43,714][ INFO][PID:4189961] 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:5711", "submitter": null, "ended_on": null, "started_on": 1789364923.714766, "submitted_on": null, "status": 3, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10983161", "build_id": 10983161, "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\": \"tmpljdkug4e\", \"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--db4639cd-a2a8-4651-bfb7-d867c048e420", "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:5711", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5711", "result_dir": "10983161", "built_packages": "", "tags": [ "arch_x86_64" ], "rpmeta_prediction": null, "id": 10983161, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2026-09-14 05:49:13,775][ INFO][PID:4189961] Sending fedora-messaging bus message in build.start [2026-09-14 05:49:14,159][ INFO][PID:4189961] Sending fedora-messaging bus message in chroot.start [2026-09-14 05:49:14,196][ INFO][PID:4189961] Starting remote build: copr-rpmbuild --verbose --drop-resultdir --srpm --task-url https://copr.fedorainfracloud.org/backend/get-srpm-build-task/10983161 --detached [2026-09-14 05:49:14,769][ INFO][PID:4189961] The copr-rpmbuild seems started, per: stdout: stderr: Warning: Permanently added '34.229.45.6' (ED25519) to the list of known hosts. [2026-09-14 05:49:14,769][ INFO][PID:4189961] Downloading the builder-live.log file, attempt 1 [2026-09-14 05:49:14,771][ INFO][PID:4189961] Popen command started: ssh -F /home/copr/.ssh/config mockbuilder@34.229.45.6 copr-rpmbuild-log [2026-09-14 05:49:19,773][ INFO][PID:4189961] Periodic builder liveness probe: alive [2026-09-14 05:49:19,773][ INFO][PID:4189961] Checking for cancel request [2026-09-14 05:49:24,774][ INFO][PID:4189961] Checking for cancel request [2026-09-14 05:49:29,775][ INFO][PID:4189961] Checking for cancel request [2026-09-14 05:49:34,776][ INFO][PID:4189961] Checking for cancel request [2026-09-14 05:49:39,776][ INFO][PID:4189961] Checking for cancel request [2026-09-14 05:49:44,874][ INFO][PID:4189961] Checking for cancel request [2026-09-14 05:49:49,875][ INFO][PID:4189961] Checking for cancel request [2026-09-14 05:49:54,876][ INFO][PID:4189961] Checking for cancel request [2026-09-14 05:49:59,877][ INFO][PID:4189961] Checking for cancel request [2026-09-14 05:50:04,878][ INFO][PID:4189961] Checking for cancel request [2026-09-14 05:50:09,878][ INFO][PID:4189961] Checking for cancel request [2026-09-14 05:50:14,879][ INFO][PID:4189961] Checking for cancel request [2026-09-14 05:50:19,880][ INFO][PID:4189961] Checking for cancel request [2026-09-14 05:50:24,881][ INFO][PID:4189961] Checking for cancel request [2026-09-14 05:50:29,882][ INFO][PID:4189961] Checking for cancel request [2026-09-14 05:50:34,883][ INFO][PID:4189961] Checking for cancel request [2026-09-14 05:50:39,883][ INFO][PID:4189961] Checking for cancel request [2026-09-14 05:50:44,884][ INFO][PID:4189961] Checking for cancel request [2026-09-14 05:50:49,885][ INFO][PID:4189961] Checking for cancel request [2026-09-14 05:50:54,886][ INFO][PID:4189961] Checking for cancel request [2026-09-14 05:50:59,887][ INFO][PID:4189961] Checking for cancel request [2026-09-14 05:51:04,887][ INFO][PID:4189961] Checking for cancel request [2026-09-14 05:51:09,888][ INFO][PID:4189961] Checking for cancel request [2026-09-14 05:51:14,889][ INFO][PID:4189961] Checking for cancel request [2026-09-14 05:51:19,890][ INFO][PID:4189961] Checking for cancel request [2026-09-14 05:51:24,891][ INFO][PID:4189961] Checking for cancel request [2026-09-14 05:51:29,891][ INFO][PID:4189961] Checking for cancel request [2026-09-14 05:51:34,892][ INFO][PID:4189961] Checking for cancel request [2026-09-14 05:51:39,893][ INFO][PID:4189961] Checking for cancel request [2026-09-14 05:51:44,894][ INFO][PID:4189961] Checking for cancel request [2026-09-14 05:51:49,895][ INFO][PID:4189961] Checking for cancel request [2026-09-14 05:51:54,896][ INFO][PID:4189961] Checking for cancel request [2026-09-14 05:51:59,896][ INFO][PID:4189961] Checking for cancel request [2026-09-14 05:52:04,897][ INFO][PID:4189961] Checking for cancel request [2026-09-14 05:52:09,898][ INFO][PID:4189961] Checking for cancel request [2026-09-14 05:52:14,899][ INFO][PID:4189961] Checking for cancel request [2026-09-14 05:52:19,900][ INFO][PID:4189961] Checking for cancel request [2026-09-14 05:52:24,900][ INFO][PID:4189961] Checking for cancel request [2026-09-14 05:52:29,901][ INFO][PID:4189961] Checking for cancel request [2026-09-14 05:52:34,902][ INFO][PID:4189961] Checking for cancel request [2026-09-14 05:52:39,903][ INFO][PID:4189961] Checking for cancel request [2026-09-14 05:52:44,904][ INFO][PID:4189961] Checking for cancel request [2026-09-14 05:52:49,904][ INFO][PID:4189961] Checking for cancel request [2026-09-14 05:52:54,905][ INFO][PID:4189961] Checking for cancel request [2026-09-14 05:52:59,907][ INFO][PID:4189961] Checking for cancel request [2026-09-14 05:53:04,907][ INFO][PID:4189961] Checking for cancel request [2026-09-14 05:53:09,908][ INFO][PID:4189961] Checking for cancel request [2026-09-14 05:53:15,141][ INFO][PID:4189961] Checking for cancel request [2026-09-14 05:53:20,142][ INFO][PID:4189961] Checking for cancel request [2026-09-14 05:53:25,143][ INFO][PID:4189961] Checking for cancel request [2026-09-14 05:53:30,144][ INFO][PID:4189961] Checking for cancel request [2026-09-14 05:53:35,145][ INFO][PID:4189961] Checking for cancel request [2026-09-14 05:53:40,145][ INFO][PID:4189961] Checking for cancel request [2026-09-14 05:53:45,146][ INFO][PID:4189961] Checking for cancel request [2026-09-14 05:53:50,147][ INFO][PID:4189961] Checking for cancel request [2026-09-14 05:53:55,148][ INFO][PID:4189961] Checking for cancel request [2026-09-14 05:54:00,149][ INFO][PID:4189961] Checking for cancel request [2026-09-14 05:54:05,149][ INFO][PID:4189961] Checking for cancel request [2026-09-14 05:54:10,150][ INFO][PID:4189961] Checking for cancel request [2026-09-14 05:54:15,151][ INFO][PID:4189961] Checking for cancel request [2026-09-14 05:54:20,152][ INFO][PID:4189961] Checking for cancel request [2026-09-14 05:54:25,152][ INFO][PID:4189961] Checking for cancel request [2026-09-14 05:54:30,188][ INFO][PID:4189961] Checking for cancel request [2026-09-14 05:54:35,273][ INFO][PID:4189961] Checking for cancel request [2026-09-14 05:54:40,274][ INFO][PID:4189961] Checking for cancel request [2026-09-14 05:54:45,275][ INFO][PID:4189961] Checking for cancel request [2026-09-14 05:54:50,276][ INFO][PID:4189961] Checking for cancel request [2026-09-14 05:54:55,277][ INFO][PID:4189961] Checking for cancel request [2026-09-14 05:55:00,278][ INFO][PID:4189961] Checking for cancel request [2026-09-14 05:55:05,279][ INFO][PID:4189961] Checking for cancel request [2026-09-14 05:55:10,280][ INFO][PID:4189961] Checking for cancel request [2026-09-14 05:55:15,431][ INFO][PID:4189961] Checking for cancel request [2026-09-14 05:55:20,549][ INFO][PID:4189961] Checking for cancel request [2026-09-14 05:55:25,853][ INFO][PID:4189961] Checking for cancel request [2026-09-14 05:55:30,854][ INFO][PID:4189961] Checking for cancel request [2026-09-14 05:55:35,854][ INFO][PID:4189961] Checking for cancel request [2026-09-14 05:55:40,855][ INFO][PID:4189961] Checking for cancel request [2026-09-14 05:55:45,879][ INFO][PID:4189961] Checking for cancel request [2026-09-14 05:55:50,880][ INFO][PID:4189961] Checking for cancel request [2026-09-14 05:55:55,881][ INFO][PID:4189961] Checking for cancel request [2026-09-14 05:56:00,882][ INFO][PID:4189961] Checking for cancel request [2026-09-14 05:56:05,883][ INFO][PID:4189961] Checking for cancel request [2026-09-14 05:56:10,883][ INFO][PID:4189961] Checking for cancel request [2026-09-14 05:56:15,884][ INFO][PID:4189961] Checking for cancel request [2026-09-14 05:56:20,885][ INFO][PID:4189961] Checking for cancel request [2026-09-14 05:56:25,886][ INFO][PID:4189961] Checking for cancel request [2026-09-14 05:56:30,887][ INFO][PID:4189961] Checking for cancel request [2026-09-14 05:56:35,888][ INFO][PID:4189961] Checking for cancel request [2026-09-14 05:56:40,889][ INFO][PID:4189961] Checking for cancel request [2026-09-14 05:56:45,890][ INFO][PID:4189961] Checking for cancel request [2026-09-14 05:56:50,890][ INFO][PID:4189961] Checking for cancel request [2026-09-14 05:56:55,891][ INFO][PID:4189961] Checking for cancel request [2026-09-14 05:57:00,892][ INFO][PID:4189961] Checking for cancel request [2026-09-14 05:57:05,893][ INFO][PID:4189961] Checking for cancel request [2026-09-14 05:57:10,894][ INFO][PID:4189961] Checking for cancel request [2026-09-14 05:57:15,895][ INFO][PID:4189961] Checking for cancel request [2026-09-14 05:57:20,896][ INFO][PID:4189961] Checking for cancel request [2026-09-14 05:57:25,896][ INFO][PID:4189961] Checking for cancel request [2026-09-14 05:57:30,978][ INFO][PID:4189961] Checking for cancel request [2026-09-14 05:57:35,979][ INFO][PID:4189961] Checking for cancel request [2026-09-14 05:57:40,998][ INFO][PID:4189961] Checking for cancel request [2026-09-14 05:57:45,999][ INFO][PID:4189961] Checking for cancel request [2026-09-14 05:57:51,000][ INFO][PID:4189961] Checking for cancel request [2026-09-14 05:57:56,000][ INFO][PID:4189961] Checking for cancel request [2026-09-14 05:58:01,001][ INFO][PID:4189961] Checking for cancel request [2026-09-14 05:58:06,002][ INFO][PID:4189961] Checking for cancel request [2026-09-14 05:58:11,002][ INFO][PID:4189961] Checking for cancel request [2026-09-14 05:58:16,003][ INFO][PID:4189961] Checking for cancel request [2026-09-14 05:58:21,004][ INFO][PID:4189961] Checking for cancel request [2026-09-14 05:58:26,005][ INFO][PID:4189961] Checking for cancel request [2026-09-14 05:58:31,005][ INFO][PID:4189961] Checking for cancel request [2026-09-14 05:58:36,006][ INFO][PID:4189961] Checking for cancel request [2026-09-14 05:58:41,007][ INFO][PID:4189961] Checking for cancel request [2026-09-14 05:58:46,008][ INFO][PID:4189961] Checking for cancel request [2026-09-14 05:58:51,009][ INFO][PID:4189961] Checking for cancel request [2026-09-14 05:58:56,010][ INFO][PID:4189961] Checking for cancel request [2026-09-14 05:59:01,010][ INFO][PID:4189961] Checking for cancel request [2026-09-14 05:59:06,011][ INFO][PID:4189961] Checking for cancel request [2026-09-14 05:59:11,012][ INFO][PID:4189961] Checking for cancel request [2026-09-14 05:59:16,013][ INFO][PID:4189961] Checking for cancel request [2026-09-14 05:59:21,018][ INFO][PID:4189961] Periodic builder liveness probe: alive [2026-09-14 05:59:21,018][ INFO][PID:4189961] Checking for cancel request [2026-09-14 05:59:26,019][ INFO][PID:4189961] Checking for cancel request [2026-09-14 05:59:31,019][ INFO][PID:4189961] Checking for cancel request [2026-09-14 05:59:36,020][ INFO][PID:4189961] Checking for cancel request [2026-09-14 05:59:41,021][ INFO][PID:4189961] Checking for cancel request [2026-09-14 05:59:46,022][ INFO][PID:4189961] Checking for cancel request [2026-09-14 05:59:51,022][ INFO][PID:4189961] Checking for cancel request [2026-09-14 05:59:51,698][ INFO][PID:4189961] Downloading results from builder [2026-09-14 05:59:51,698][ INFO][PID:4189961] rsyncing of mockbuilder@34.229.45.6:/var/lib/copr-rpmbuild/results/ to /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5711/srpm-builds/10983161 started [2026-09-14 05:59:51,699][ INFO][PID:4189961] Popen command started: /usr/bin/rsync -rltDvH --chmod=D755,F644 -e 'ssh -F /home/copr/.ssh/config' mockbuilder@34.229.45.6:/var/lib/copr-rpmbuild/results/ /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5711/srpm-builds/10983161/ &> /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5711/srpm-builds/10983161/build-10983161.rsync.log [2026-09-14 05:59:54,648][ INFO][PID:4189961] rsyncing finished. [2026-09-14 05:59:54,648][ INFO][PID:4189961] VM Release request [2026-09-14 05:59:54,652][ INFO][PID:4189961] Searching for 'success' file in resultdir [2026-09-14 05:59:54,653][ INFO][PID:4189961] Getting build details [2026-09-14 05:59:54,653][ INFO][PID:4189961] Retrieving SRPM info from /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5711/srpm-builds/10983161 [2026-09-14 05:59:54,654][ INFO][PID:4189961] SRPM URL: https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5711/srpm-builds/10983161/Sunshine-0.0.5711-1.src.rpm [2026-09-14 05:59:54,654][ INFO][PID:4189961] build details: {'srpm_url': 'https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5711/srpm-builds/10983161/Sunshine-0.0.5711-1.src.rpm', 'pkg_name': 'Sunshine', 'pkg_version': '0.0.5711-1'} [2026-09-14 05:59:54,654][ INFO][PID:4189961] Finished build: id=10983161 failed=False timeout=108000 destdir=/var/lib/copr/public_html/results/lizardbyte/pulls:pr:5711 chroot=srpm-builds [2026-09-14 05:59:54,654][ INFO][PID:4189961] Worker succeeded build, took 670.9401891231537 [2026-09-14 05:59:54,655][ INFO][PID:4189961] 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:5711", "submitter": null, "ended_on": 1789365594.6549551, "started_on": 1789364923.714766, "submitted_on": null, "status": 1, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10983161", "build_id": 10983161, "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\": \"tmpljdkug4e\", \"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:5711/srpm-builds/10983161/Sunshine-0.0.5711-1.src.rpm", "uses_devel_repo": null, "sandbox": "lizardbyte/pulls--db4639cd-a2a8-4651-bfb7-d867c048e420", "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.5711", "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:5711", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5711", "result_dir": "10983161", "built_packages": "", "tags": [ "arch_x86_64" ], "rpmeta_prediction": null, "pkg_version": "0.0.5711-1", "id": 10983161, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2026-09-14 06:00:24,746][ INFO][PID:4189961] Sending fedora-messaging bus message in build.end [2026-09-14 06:00:24,766][ INFO][PID:4189961] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5711/srpm-builds/10983161/builder-live.log by gzip [2026-09-14 06:00:24,767][ INFO][PID:4189961] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5711/srpm-builds/10983161/builder-live.log' as PID 138190 [2026-09-14 06:00:24,806][ INFO][PID:4189961] Finished after 0 seconds with exit code 0 (gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5711/srpm-builds/10983161/builder-live.log) [2026-09-14 06:00:24,807][ INFO][PID:4189961] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5711/srpm-builds/10983161/backend.log by gzip [2026-09-14 06:00:24,808][ INFO][PID:4189961] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5711/srpm-builds/10983161/backend.log' as PID 138203