[2026-06-09 03:22:53,856][ INFO][PID:390519] Marking build as starting [2026-06-09 03:22:53,925][ INFO][PID:390519] Checking for cancel request [2026-06-09 03:22:53,928][ INFO][PID:390519] VM allocation process starts [2026-06-09 03:22:53,967][ INFO][PID:390519] Trying to allocate VM: ResallocHost, ticket_id=3347059, requested_tags=['arch_x86_64', 'copr_builder'] [2026-06-09 03:22:58,987][ INFO][PID:390519] Checking for cancel request [2026-06-09 03:23:04,008][ INFO][PID:390519] Checking for cancel request [2026-06-09 03:23:09,015][ INFO][PID:390519] Checking for cancel request [2026-06-09 03:23:14,017][ INFO][PID:390519] Checking for cancel request [2026-06-09 03:23:19,022][ INFO][PID:390519] Checking for cancel request [2026-06-09 03:23:22,158][ INFO][PID:390519] Allocated host ResallocHost, ticket_id=3347059, hostname=44.200.80.138, name=aws_x86_64_reserved_prod_11680523_20260609_031147, requested_tags=['arch_x86_64', 'copr_builder'] [2026-06-09 03:23:22,160][ INFO][PID:390519] Allocating ssh connection to builder [2026-06-09 03:23:22,163][ INFO][PID:390519] Checking that builder machine is OK [2026-06-09 03:23:22,643][ INFO][PID:390519] Installed copr-rpmbuild version: 1.8 [2026-06-09 03:23:22,649][ INFO][PID:390519] Running remote command: copr-builder-ready srpm-builds [2026-06-09 03:23:23,131][ INFO][PID:390519] Red Hat subscription not needed for srpm-builds Builder is ready to be used [2026-06-09 03:23:23,148][ INFO][PID:390519] Filling build.info file with builder info [2026-06-09 03:23:23,152][ INFO][PID:390519] Checking for cancel request [2026-06-09 03:23:23,158][ INFO][PID:390519] 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": "beta", "project_dirname": "beta", "submitter": null, "ended_on": null, "started_on": 1780975403.1586788, "submitted_on": null, "status": 3, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10581589", "build_id": 10581589, "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\": \"tmpyaomeway\", \"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/beta--b5794ba7-65ea-4e64-95d1-03837ea1bfad", "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/beta", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/lizardbyte/beta", "result_dir": "10581589", "built_packages": "", "tags": [ "arch_x86_64" ], "rpmeta_prediction": null, "id": 10581589, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "beta", "vendor": "Fedora Project COPR (lizardbyte/beta)" } } ] } [2026-06-09 03:23:23,356][ INFO][PID:390519] Sending fedora-messaging bus message in build.start [2026-06-09 03:23:24,319][ INFO][PID:390519] Sending fedora-messaging bus message in chroot.start [2026-06-09 03:23:24,400][ INFO][PID:390519] Starting remote build: copr-rpmbuild --verbose --drop-resultdir --srpm --task-url https://copr.fedorainfracloud.org/backend/get-srpm-build-task/10581589 --detached [2026-06-09 03:23:24,925][ INFO][PID:390519] The copr-rpmbuild seems started, per: stdout: stderr: Warning: Permanently added '44.200.80.138' (ED25519) to the list of known hosts. [2026-06-09 03:23:24,929][ INFO][PID:390519] Downloading the builder-live.log file, attempt 1 [2026-06-09 03:23:24,938][ INFO][PID:390519] Popen command started: ssh -F /home/copr/.ssh/config mockbuilder@44.200.80.138 copr-rpmbuild-log [2026-06-09 03:23:29,955][ INFO][PID:390519] Periodic builder liveness probe: alive [2026-06-09 03:23:29,957][ INFO][PID:390519] Checking for cancel request [2026-06-09 03:23:34,967][ INFO][PID:390519] Checking for cancel request [2026-06-09 03:23:39,984][ INFO][PID:390519] Checking for cancel request [2026-06-09 03:23:44,989][ INFO][PID:390519] Checking for cancel request [2026-06-09 03:23:49,993][ INFO][PID:390519] Checking for cancel request [2026-06-09 03:23:54,997][ INFO][PID:390519] Checking for cancel request [2026-06-09 03:24:00,003][ INFO][PID:390519] Checking for cancel request [2026-06-09 03:24:05,014][ INFO][PID:390519] Checking for cancel request [2026-06-09 03:24:10,026][ INFO][PID:390519] Checking for cancel request [2026-06-09 03:24:15,037][ INFO][PID:390519] Checking for cancel request [2026-06-09 03:24:20,043][ INFO][PID:390519] Checking for cancel request [2026-06-09 03:24:25,045][ INFO][PID:390519] Checking for cancel request [2026-06-09 03:24:30,050][ INFO][PID:390519] Checking for cancel request [2026-06-09 03:24:35,051][ INFO][PID:390519] Checking for cancel request [2026-06-09 03:24:40,053][ INFO][PID:390519] Checking for cancel request [2026-06-09 03:24:45,064][ INFO][PID:390519] Checking for cancel request [2026-06-09 03:24:50,076][ INFO][PID:390519] Checking for cancel request [2026-06-09 03:24:55,091][ INFO][PID:390519] Checking for cancel request [2026-06-09 03:25:00,094][ INFO][PID:390519] Checking for cancel request [2026-06-09 03:25:05,101][ INFO][PID:390519] Checking for cancel request [2026-06-09 03:25:10,109][ INFO][PID:390519] Checking for cancel request [2026-06-09 03:25:15,112][ INFO][PID:390519] Checking for cancel request [2026-06-09 03:25:20,115][ INFO][PID:390519] Checking for cancel request [2026-06-09 03:25:25,119][ INFO][PID:390519] Checking for cancel request [2026-06-09 03:25:30,126][ INFO][PID:390519] Checking for cancel request [2026-06-09 03:25:35,131][ INFO][PID:390519] Checking for cancel request [2026-06-09 03:25:40,134][ INFO][PID:390519] Checking for cancel request [2026-06-09 03:25:45,136][ INFO][PID:390519] Checking for cancel request [2026-06-09 03:25:50,138][ INFO][PID:390519] Checking for cancel request [2026-06-09 03:25:55,390][ INFO][PID:390519] Checking for cancel request [2026-06-09 03:26:00,391][ INFO][PID:390519] Checking for cancel request [2026-06-09 03:26:05,393][ INFO][PID:390519] Checking for cancel request [2026-06-09 03:26:10,394][ INFO][PID:390519] Checking for cancel request [2026-06-09 03:26:15,395][ INFO][PID:390519] Checking for cancel request [2026-06-09 03:26:20,396][ INFO][PID:390519] Checking for cancel request [2026-06-09 03:26:25,397][ INFO][PID:390519] Checking for cancel request [2026-06-09 03:26:30,398][ INFO][PID:390519] Checking for cancel request [2026-06-09 03:26:35,400][ INFO][PID:390519] Checking for cancel request [2026-06-09 03:26:40,401][ INFO][PID:390519] Checking for cancel request [2026-06-09 03:26:45,403][ INFO][PID:390519] Checking for cancel request [2026-06-09 03:26:50,404][ INFO][PID:390519] Checking for cancel request [2026-06-09 03:26:55,405][ INFO][PID:390519] Checking for cancel request [2026-06-09 03:27:00,407][ INFO][PID:390519] Checking for cancel request [2026-06-09 03:27:05,408][ INFO][PID:390519] Checking for cancel request [2026-06-09 03:27:10,410][ INFO][PID:390519] Checking for cancel request [2026-06-09 03:27:15,411][ INFO][PID:390519] Checking for cancel request [2026-06-09 03:27:20,413][ INFO][PID:390519] Checking for cancel request [2026-06-09 03:27:25,418][ INFO][PID:390519] Checking for cancel request [2026-06-09 03:27:30,462][ INFO][PID:390519] Checking for cancel request [2026-06-09 03:27:35,465][ INFO][PID:390519] Checking for cancel request [2026-06-09 03:27:40,545][ INFO][PID:390519] Checking for cancel request [2026-06-09 03:27:45,683][ INFO][PID:390519] Checking for cancel request [2026-06-09 03:27:50,910][ INFO][PID:390519] Checking for cancel request [2026-06-09 03:27:55,912][ INFO][PID:390519] Checking for cancel request [2026-06-09 03:28:00,925][ INFO][PID:390519] Checking for cancel request [2026-06-09 03:28:05,937][ INFO][PID:390519] Checking for cancel request [2026-06-09 03:28:10,945][ INFO][PID:390519] Checking for cancel request [2026-06-09 03:28:15,950][ INFO][PID:390519] Checking for cancel request [2026-06-09 03:28:20,985][ INFO][PID:390519] Checking for cancel request [2026-06-09 03:28:26,051][ INFO][PID:390519] Checking for cancel request [2026-06-09 03:28:31,241][ INFO][PID:390519] Checking for cancel request [2026-06-09 03:28:36,242][ INFO][PID:390519] Checking for cancel request [2026-06-09 03:28:41,246][ INFO][PID:390519] Checking for cancel request [2026-06-09 03:28:46,248][ INFO][PID:390519] Checking for cancel request [2026-06-09 03:28:51,250][ INFO][PID:390519] Checking for cancel request [2026-06-09 03:28:56,251][ INFO][PID:390519] Checking for cancel request [2026-06-09 03:29:01,253][ INFO][PID:390519] Checking for cancel request [2026-06-09 03:29:06,254][ INFO][PID:390519] Checking for cancel request [2026-06-09 03:29:11,255][ INFO][PID:390519] Checking for cancel request [2026-06-09 03:29:16,258][ INFO][PID:390519] Checking for cancel request [2026-06-09 03:29:21,259][ INFO][PID:390519] Checking for cancel request [2026-06-09 03:29:26,260][ INFO][PID:390519] Checking for cancel request [2026-06-09 03:29:31,262][ INFO][PID:390519] Checking for cancel request [2026-06-09 03:29:36,264][ INFO][PID:390519] Checking for cancel request [2026-06-09 03:29:41,265][ INFO][PID:390519] Checking for cancel request [2026-06-09 03:29:46,266][ INFO][PID:390519] Checking for cancel request [2026-06-09 03:29:51,268][ INFO][PID:390519] Checking for cancel request [2026-06-09 03:29:56,269][ INFO][PID:390519] Checking for cancel request [2026-06-09 03:30:01,270][ INFO][PID:390519] Checking for cancel request [2026-06-09 03:30:06,272][ INFO][PID:390519] Checking for cancel request [2026-06-09 03:30:11,273][ INFO][PID:390519] Checking for cancel request [2026-06-09 03:30:16,275][ INFO][PID:390519] Checking for cancel request [2026-06-09 03:30:21,276][ INFO][PID:390519] Checking for cancel request [2026-06-09 03:30:26,277][ INFO][PID:390519] Checking for cancel request [2026-06-09 03:30:31,279][ INFO][PID:390519] Checking for cancel request [2026-06-09 03:30:36,281][ INFO][PID:390519] Checking for cancel request [2026-06-09 03:30:41,283][ INFO][PID:390519] Checking for cancel request [2026-06-09 03:30:46,284][ INFO][PID:390519] Checking for cancel request [2026-06-09 03:30:51,285][ INFO][PID:390519] Checking for cancel request [2026-06-09 03:30:56,286][ INFO][PID:390519] Checking for cancel request [2026-06-09 03:31:01,288][ INFO][PID:390519] Checking for cancel request [2026-06-09 03:31:06,293][ INFO][PID:390519] Checking for cancel request [2026-06-09 03:31:11,294][ INFO][PID:390519] Checking for cancel request [2026-06-09 03:31:16,295][ INFO][PID:390519] Checking for cancel request [2026-06-09 03:31:21,297][ INFO][PID:390519] Checking for cancel request [2026-06-09 03:31:26,298][ INFO][PID:390519] Checking for cancel request [2026-06-09 03:31:31,300][ INFO][PID:390519] Checking for cancel request [2026-06-09 03:31:36,301][ INFO][PID:390519] Checking for cancel request [2026-06-09 03:31:41,302][ INFO][PID:390519] Checking for cancel request [2026-06-09 03:31:46,303][ INFO][PID:390519] Checking for cancel request [2026-06-09 03:31:51,307][ INFO][PID:390519] Checking for cancel request [2026-06-09 03:31:56,309][ INFO][PID:390519] Checking for cancel request [2026-06-09 03:32:01,311][ INFO][PID:390519] Checking for cancel request [2026-06-09 03:32:03,399][ INFO][PID:390519] Downloading results from builder [2026-06-09 03:32:03,428][ INFO][PID:390519] rsyncing of mockbuilder@44.200.80.138:/var/lib/copr-rpmbuild/results/ to /var/lib/copr/public_html/results/lizardbyte/beta/srpm-builds/10581589 started [2026-06-09 03:32:03,505][ INFO][PID:390519] Popen command started: /usr/bin/rsync -rltDvH --chmod=D755,F644 -e 'ssh -F /home/copr/.ssh/config' mockbuilder@44.200.80.138:/var/lib/copr-rpmbuild/results/ /var/lib/copr/public_html/results/lizardbyte/beta/srpm-builds/10581589/ &> /var/lib/copr/public_html/results/lizardbyte/beta/srpm-builds/10581589/build-10581589.rsync.log [2026-06-09 03:32:08,317][ INFO][PID:390519] rsyncing finished. [2026-06-09 03:32:08,321][ INFO][PID:390519] VM Release request [2026-06-09 03:32:08,551][ INFO][PID:390519] Searching for 'success' file in resultdir [2026-06-09 03:32:08,603][ INFO][PID:390519] Getting build details [2026-06-09 03:32:08,606][ INFO][PID:390519] Retrieving SRPM info from /var/lib/copr/public_html/results/lizardbyte/beta/srpm-builds/10581589 [2026-06-09 03:32:08,681][ INFO][PID:390519] SRPM URL: https://download.copr.fedorainfracloud.org/results/lizardbyte/beta/srpm-builds/10581589/Sunshine-2026.608.233907-1.src.rpm [2026-06-09 03:32:08,684][ INFO][PID:390519] build details: {'srpm_url': 'https://download.copr.fedorainfracloud.org/results/lizardbyte/beta/srpm-builds/10581589/Sunshine-2026.608.233907-1.src.rpm', 'pkg_name': 'Sunshine', 'pkg_version': '2026.608.233907-1'} [2026-06-09 03:32:08,703][ INFO][PID:390519] Finished build: id=10581589 failed=False timeout=108000 destdir=/var/lib/copr/public_html/results/lizardbyte/beta chroot=srpm-builds [2026-06-09 03:32:08,799][ INFO][PID:390519] Worker succeeded build, took 525.6392157077789 [2026-06-09 03:32:08,815][ INFO][PID:390519] 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": "beta", "project_dirname": "beta", "submitter": null, "ended_on": 1780975928.7978945, "started_on": 1780975403.1586788, "submitted_on": null, "status": 1, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10581589", "build_id": 10581589, "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\": \"tmpyaomeway\", \"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/beta/srpm-builds/10581589/Sunshine-2026.608.233907-1.src.rpm", "uses_devel_repo": null, "sandbox": "lizardbyte/beta--b5794ba7-65ea-4e64-95d1-03837ea1bfad", "results": { "architecture_specific_tags": { "fedora-42": {}, "fedora-43": {}, "fedora-44": {}, "fedora-rawhide": {}, "opensuse-leap-15.6": {} }, "name": "Sunshine", "epoch": null, "version": "2026.608.233907", "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/beta", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/lizardbyte/beta", "result_dir": "10581589", "built_packages": "", "tags": [ "arch_x86_64" ], "rpmeta_prediction": null, "pkg_version": "2026.608.233907-1", "id": 10581589, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "beta", "vendor": "Fedora Project COPR (lizardbyte/beta)" } } ] } [2026-06-09 03:32:09,636][ INFO][PID:390519] Sending fedora-messaging bus message in build.end [2026-06-09 03:32:10,052][ INFO][PID:390519] Compressing /var/lib/copr/public_html/results/lizardbyte/beta/srpm-builds/10581589/builder-live.log by gzip [2026-06-09 03:32:10,076][ INFO][PID:390519] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/beta/srpm-builds/10581589/builder-live.log' as PID 464626 [2026-06-09 03:32:10,098][ INFO][PID:390519] Finished after 0 seconds with exit code 0 (gzip /var/lib/copr/public_html/results/lizardbyte/beta/srpm-builds/10581589/builder-live.log) [2026-06-09 03:32:10,104][ INFO][PID:390519] Compressing /var/lib/copr/public_html/results/lizardbyte/beta/srpm-builds/10581589/backend.log by gzip [2026-06-09 03:32:10,105][ INFO][PID:390519] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/beta/srpm-builds/10581589/backend.log' as PID 464643