[2026-05-30 06:39:26,021][ INFO][PID:1062786] Marking build as starting [2026-05-30 06:39:26,059][ INFO][PID:1062786] Checking for cancel request [2026-05-30 06:39:26,061][ INFO][PID:1062786] VM allocation process starts [2026-05-30 06:39:26,071][ INFO][PID:1062786] Trying to allocate VM: ResallocHost, ticket_id=3140011, requested_tags=['arch_x86_64', 'copr_builder'] [2026-05-30 06:39:29,101][ INFO][PID:1062786] Allocated host ResallocHost, ticket_id=3140011, hostname=98.80.125.208, name=aws_x86_64_reserved_prod_10399598_20260530_060010, requested_tags=['arch_x86_64', 'copr_builder'] [2026-05-30 06:39:29,101][ INFO][PID:1062786] Allocating ssh connection to builder [2026-05-30 06:39:29,102][ INFO][PID:1062786] Checking that builder machine is OK [2026-05-30 06:39:29,441][ INFO][PID:1062786] Installed copr-rpmbuild version: 1.8 [2026-05-30 06:39:29,442][ INFO][PID:1062786] Running remote command: copr-builder-ready srpm-builds [2026-05-30 06:39:29,655][ INFO][PID:1062786] Red Hat subscription not needed for srpm-builds Builder is ready to be used [2026-05-30 06:39:29,656][ INFO][PID:1062786] Filling build.info file with builder info [2026-05-30 06:39:29,657][ INFO][PID:1062786] Checking for cancel request [2026-05-30 06:39:29,658][ INFO][PID:1062786] 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:5216", "submitter": null, "ended_on": null, "started_on": 1780123169.6581948, "submitted_on": null, "status": 3, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10526109", "build_id": 10526109, "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\": \"tmp3fwljq_6\", \"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--7f5f0db5-610a-41d7-815a-5ef8e45ed440", "results": null, "appstream": false, "allow_user_ssh": null, "ssh_public_keys": null, "storage": null, "repos": [], "background": true, "distributions_in_build": [ "fedora-42", "fedora-43", "fedora-44", "fedora-rawhide", "opensuse-leap-15.6" ], "distributions_in_project": [ "fedora-42", "fedora-43", "fedora-44", "fedora-rawhide", "opensuse-leap-15.6" ], "destdir": "/var/lib/copr/public_html/results/lizardbyte/pulls:pr:5216", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5216", "result_dir": "10526109", "built_packages": "", "tags": [ "arch_x86_64" ], "id": 10526109, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2026-05-30 06:39:29,700][ INFO][PID:1062786] Sending fedora-messaging bus message in build.start [2026-05-30 06:39:30,157][ INFO][PID:1062786] Sending fedora-messaging bus message in chroot.start [2026-05-30 06:39:30,185][ INFO][PID:1062786] Starting remote build: copr-rpmbuild --verbose --drop-resultdir --srpm --task-url https://copr.fedorainfracloud.org/backend/get-srpm-build-task/10526109 --detached [2026-05-30 06:39:30,635][ INFO][PID:1062786] The copr-rpmbuild seems started, per: stdout: stderr: Warning: Permanently added '98.80.125.208' (ED25519) to the list of known hosts. [2026-05-30 06:39:30,636][ INFO][PID:1062786] Downloading the builder-live.log file, attempt 1 [2026-05-30 06:39:30,637][ INFO][PID:1062786] Popen command started: ssh -F /home/copr/.ssh/config mockbuilder@98.80.125.208 copr-rpmbuild-log [2026-05-30 06:39:35,641][ INFO][PID:1062786] Periodic builder liveness probe: alive [2026-05-30 06:39:35,956][ INFO][PID:1062786] Checking for cancel request [2026-05-30 06:39:40,959][ INFO][PID:1062786] Checking for cancel request [2026-05-30 06:39:46,338][ INFO][PID:1062786] Checking for cancel request [2026-05-30 06:39:51,340][ INFO][PID:1062786] Checking for cancel request [2026-05-30 06:39:56,342][ INFO][PID:1062786] Checking for cancel request [2026-05-30 06:40:01,343][ INFO][PID:1062786] Checking for cancel request [2026-05-30 06:40:06,344][ INFO][PID:1062786] Checking for cancel request [2026-05-30 06:40:11,346][ INFO][PID:1062786] Checking for cancel request [2026-05-30 06:40:16,347][ INFO][PID:1062786] Checking for cancel request [2026-05-30 06:40:21,413][ INFO][PID:1062786] Checking for cancel request [2026-05-30 06:40:26,416][ INFO][PID:1062786] Checking for cancel request [2026-05-30 06:40:31,418][ INFO][PID:1062786] Checking for cancel request [2026-05-30 06:40:36,420][ INFO][PID:1062786] Checking for cancel request [2026-05-30 06:40:41,472][ INFO][PID:1062786] Checking for cancel request [2026-05-30 06:40:46,474][ INFO][PID:1062786] Checking for cancel request [2026-05-30 06:40:51,475][ INFO][PID:1062786] Checking for cancel request [2026-05-30 06:40:56,544][ INFO][PID:1062786] Checking for cancel request [2026-05-30 06:41:02,018][ INFO][PID:1062786] Checking for cancel request [2026-05-30 06:41:07,019][ INFO][PID:1062786] Checking for cancel request [2026-05-30 06:41:12,021][ INFO][PID:1062786] Checking for cancel request [2026-05-30 06:41:17,022][ INFO][PID:1062786] Checking for cancel request [2026-05-30 06:41:22,024][ INFO][PID:1062786] Checking for cancel request [2026-05-30 06:41:27,025][ INFO][PID:1062786] Checking for cancel request [2026-05-30 06:41:32,026][ INFO][PID:1062786] Checking for cancel request [2026-05-30 06:41:37,027][ INFO][PID:1062786] Checking for cancel request [2026-05-30 06:41:42,029][ INFO][PID:1062786] Checking for cancel request [2026-05-30 06:41:47,030][ INFO][PID:1062786] Checking for cancel request [2026-05-30 06:41:52,032][ INFO][PID:1062786] Checking for cancel request [2026-05-30 06:41:57,034][ INFO][PID:1062786] Checking for cancel request [2026-05-30 06:42:02,035][ INFO][PID:1062786] Checking for cancel request [2026-05-30 06:42:07,036][ INFO][PID:1062786] Checking for cancel request [2026-05-30 06:42:12,037][ INFO][PID:1062786] Checking for cancel request [2026-05-30 06:42:17,039][ INFO][PID:1062786] Checking for cancel request [2026-05-30 06:42:22,040][ INFO][PID:1062786] Checking for cancel request [2026-05-30 06:42:27,041][ INFO][PID:1062786] Checking for cancel request [2026-05-30 06:42:32,043][ INFO][PID:1062786] Checking for cancel request [2026-05-30 06:42:37,044][ INFO][PID:1062786] Checking for cancel request [2026-05-30 06:42:42,045][ INFO][PID:1062786] Checking for cancel request [2026-05-30 06:42:47,047][ INFO][PID:1062786] Checking for cancel request [2026-05-30 06:42:52,048][ INFO][PID:1062786] Checking for cancel request [2026-05-30 06:42:57,049][ INFO][PID:1062786] Checking for cancel request [2026-05-30 06:43:02,051][ INFO][PID:1062786] Checking for cancel request [2026-05-30 06:43:07,052][ INFO][PID:1062786] Checking for cancel request [2026-05-30 06:43:12,053][ INFO][PID:1062786] Checking for cancel request [2026-05-30 06:43:17,054][ INFO][PID:1062786] Checking for cancel request [2026-05-30 06:43:22,056][ INFO][PID:1062786] Checking for cancel request [2026-05-30 06:43:27,057][ INFO][PID:1062786] Checking for cancel request [2026-05-30 06:43:32,058][ INFO][PID:1062786] Checking for cancel request [2026-05-30 06:43:37,173][ INFO][PID:1062786] Checking for cancel request [2026-05-30 06:43:42,175][ INFO][PID:1062786] Checking for cancel request [2026-05-30 06:43:47,177][ INFO][PID:1062786] Checking for cancel request [2026-05-30 06:43:52,203][ INFO][PID:1062786] Checking for cancel request [2026-05-30 06:43:57,206][ INFO][PID:1062786] Checking for cancel request [2026-05-30 06:44:02,208][ INFO][PID:1062786] Checking for cancel request [2026-05-30 06:44:07,211][ INFO][PID:1062786] Checking for cancel request [2026-05-30 06:44:12,213][ INFO][PID:1062786] Checking for cancel request [2026-05-30 06:44:17,214][ INFO][PID:1062786] Checking for cancel request [2026-05-30 06:44:22,216][ INFO][PID:1062786] Checking for cancel request [2026-05-30 06:44:27,217][ INFO][PID:1062786] Checking for cancel request [2026-05-30 06:44:32,218][ INFO][PID:1062786] Checking for cancel request [2026-05-30 06:44:37,219][ INFO][PID:1062786] Checking for cancel request [2026-05-30 06:44:42,221][ INFO][PID:1062786] Checking for cancel request [2026-05-30 06:44:47,223][ INFO][PID:1062786] Checking for cancel request [2026-05-30 06:44:52,225][ INFO][PID:1062786] Checking for cancel request [2026-05-30 06:44:57,227][ INFO][PID:1062786] Checking for cancel request [2026-05-30 06:45:02,243][ INFO][PID:1062786] Checking for cancel request [2026-05-30 06:45:07,256][ INFO][PID:1062786] Checking for cancel request [2026-05-30 06:45:12,257][ INFO][PID:1062786] Checking for cancel request [2026-05-30 06:45:17,259][ INFO][PID:1062786] Checking for cancel request [2026-05-30 06:45:22,260][ INFO][PID:1062786] Checking for cancel request [2026-05-30 06:45:27,261][ INFO][PID:1062786] Checking for cancel request [2026-05-30 06:45:32,264][ INFO][PID:1062786] Checking for cancel request [2026-05-30 06:45:37,272][ INFO][PID:1062786] Checking for cancel request [2026-05-30 06:45:42,274][ INFO][PID:1062786] Checking for cancel request [2026-05-30 06:45:47,275][ INFO][PID:1062786] Checking for cancel request [2026-05-30 06:45:52,277][ INFO][PID:1062786] Checking for cancel request [2026-05-30 06:45:57,281][ INFO][PID:1062786] Checking for cancel request [2026-05-30 06:46:02,285][ INFO][PID:1062786] Checking for cancel request [2026-05-30 06:46:07,294][ INFO][PID:1062786] Checking for cancel request [2026-05-30 06:46:12,296][ INFO][PID:1062786] Checking for cancel request [2026-05-30 06:46:17,299][ INFO][PID:1062786] Checking for cancel request [2026-05-30 06:46:22,301][ INFO][PID:1062786] Checking for cancel request [2026-05-30 06:46:27,304][ INFO][PID:1062786] Checking for cancel request [2026-05-30 06:46:32,305][ INFO][PID:1062786] Checking for cancel request [2026-05-30 06:46:37,307][ INFO][PID:1062786] Checking for cancel request [2026-05-30 06:46:42,308][ INFO][PID:1062786] Checking for cancel request [2026-05-30 06:46:47,310][ INFO][PID:1062786] Checking for cancel request [2026-05-30 06:46:52,313][ INFO][PID:1062786] Checking for cancel request [2026-05-30 06:46:57,315][ INFO][PID:1062786] Checking for cancel request [2026-05-30 06:47:02,324][ INFO][PID:1062786] Checking for cancel request [2026-05-30 06:47:07,326][ INFO][PID:1062786] Checking for cancel request [2026-05-30 06:47:12,328][ INFO][PID:1062786] Checking for cancel request [2026-05-30 06:47:17,329][ INFO][PID:1062786] Checking for cancel request [2026-05-30 06:47:22,330][ INFO][PID:1062786] Checking for cancel request [2026-05-30 06:47:27,331][ INFO][PID:1062786] Checking for cancel request [2026-05-30 06:47:32,332][ INFO][PID:1062786] Checking for cancel request [2026-05-30 06:47:37,334][ INFO][PID:1062786] Checking for cancel request [2026-05-30 06:47:42,336][ INFO][PID:1062786] Checking for cancel request [2026-05-30 06:47:47,338][ INFO][PID:1062786] Checking for cancel request [2026-05-30 06:47:52,340][ INFO][PID:1062786] Checking for cancel request [2026-05-30 06:47:54,044][ INFO][PID:1062786] Downloading results from builder [2026-05-30 06:47:54,045][ INFO][PID:1062786] rsyncing of mockbuilder@98.80.125.208:/var/lib/copr-rpmbuild/results/ to /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5216/srpm-builds/10526109 started [2026-05-30 06:47:54,046][ INFO][PID:1062786] Popen command started: /usr/bin/rsync -rltDvH --chmod=D755,F644 -e 'ssh -F /home/copr/.ssh/config' mockbuilder@98.80.125.208:/var/lib/copr-rpmbuild/results/ /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5216/srpm-builds/10526109/ &> /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5216/srpm-builds/10526109/build-10526109.rsync.log [2026-05-30 06:47:58,392][ INFO][PID:1062786] rsyncing finished. [2026-05-30 06:47:58,393][ INFO][PID:1062786] VM Release request [2026-05-30 06:47:58,406][ INFO][PID:1062786] Searching for 'success' file in resultdir [2026-05-30 06:47:58,408][ INFO][PID:1062786] Getting build details [2026-05-30 06:47:58,409][ INFO][PID:1062786] Retrieving SRPM info from /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5216/srpm-builds/10526109 [2026-05-30 06:47:58,411][ INFO][PID:1062786] SRPM URL: https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5216/srpm-builds/10526109/Sunshine-0.0.5216-1.src.rpm [2026-05-30 06:47:58,412][ INFO][PID:1062786] build details: {'srpm_url': 'https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5216/srpm-builds/10526109/Sunshine-0.0.5216-1.src.rpm', 'pkg_name': 'Sunshine', 'pkg_version': '0.0.5216-1'} [2026-05-30 06:47:58,412][ INFO][PID:1062786] Finished build: id=10526109 failed=False timeout=108000 destdir=/var/lib/copr/public_html/results/lizardbyte/pulls:pr:5216 chroot=srpm-builds [2026-05-30 06:47:58,415][ INFO][PID:1062786] Worker succeeded build, took 508.7569591999054 [2026-05-30 06:47:58,416][ INFO][PID:1062786] 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:5216", "submitter": null, "ended_on": 1780123678.415154, "started_on": 1780123169.6581948, "submitted_on": null, "status": 1, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10526109", "build_id": 10526109, "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\": \"tmp3fwljq_6\", \"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:5216/srpm-builds/10526109/Sunshine-0.0.5216-1.src.rpm", "uses_devel_repo": null, "sandbox": "lizardbyte/pulls--7f5f0db5-610a-41d7-815a-5ef8e45ed440", "results": { "architecture_specific_tags": { "fedora-42": {}, "fedora-43": {}, "fedora-44": {}, "fedora-rawhide": {}, "opensuse-leap-15.6": {} }, "name": "Sunshine", "epoch": null, "version": "0.0.5216", "release": "1" }, "appstream": false, "allow_user_ssh": null, "ssh_public_keys": null, "storage": null, "repos": [], "background": true, "distributions_in_build": [ "fedora-42", "fedora-43", "fedora-44", "fedora-rawhide", "opensuse-leap-15.6" ], "distributions_in_project": [ "fedora-42", "fedora-43", "fedora-44", "fedora-rawhide", "opensuse-leap-15.6" ], "destdir": "/var/lib/copr/public_html/results/lizardbyte/pulls:pr:5216", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5216", "result_dir": "10526109", "built_packages": "", "tags": [ "arch_x86_64" ], "pkg_version": "0.0.5216-1", "id": 10526109, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2026-05-30 06:47:58,471][ INFO][PID:1062786] Sending fedora-messaging bus message in build.end [2026-05-30 06:47:58,506][ INFO][PID:1062786] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5216/srpm-builds/10526109/builder-live.log by gzip [2026-05-30 06:47:58,508][ INFO][PID:1062786] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5216/srpm-builds/10526109/builder-live.log' as PID 1112295 [2026-05-30 06:47:58,531][ INFO][PID:1062786] Finished after 0 seconds with exit code 0 (gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5216/srpm-builds/10526109/builder-live.log) [2026-05-30 06:47:58,532][ INFO][PID:1062786] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5216/srpm-builds/10526109/backend.log by gzip [2026-05-30 06:47:58,533][ INFO][PID:1062786] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5216/srpm-builds/10526109/backend.log' as PID 1112296