[2026-06-16 19:37:06,203][ INFO][PID:1104227] Marking build as starting [2026-06-16 19:37:06,240][ INFO][PID:1104227] Checking for cancel request [2026-06-16 19:37:06,241][ INFO][PID:1104227] VM allocation process starts [2026-06-16 19:37:06,252][ INFO][PID:1104227] Trying to allocate VM: ResallocHost, ticket_id=3468860, requested_tags=['arch_x86_64', 'copr_builder'] [2026-06-16 19:37:11,254][ INFO][PID:1104227] Checking for cancel request [2026-06-16 19:37:16,257][ INFO][PID:1104227] Checking for cancel request [2026-06-16 19:37:21,263][ INFO][PID:1104227] Checking for cancel request [2026-06-16 19:37:26,269][ INFO][PID:1104227] Checking for cancel request [2026-06-16 19:37:31,272][ INFO][PID:1104227] Checking for cancel request [2026-06-16 19:37:34,296][ INFO][PID:1104227] Allocated host ResallocHost, ticket_id=3468860, hostname=3.89.191.202, name=aws_x86_64_reserved_prod_12265532_20260616_192913, requested_tags=['arch_x86_64', 'copr_builder'] [2026-06-16 19:37:34,303][ INFO][PID:1104227] Allocating ssh connection to builder [2026-06-16 19:37:34,304][ INFO][PID:1104227] Checking that builder machine is OK [2026-06-16 19:37:34,625][ INFO][PID:1104227] Installed copr-rpmbuild version: 1.8 [2026-06-16 19:37:34,627][ INFO][PID:1104227] Running remote command: copr-builder-ready srpm-builds [2026-06-16 19:37:34,813][ INFO][PID:1104227] Red Hat subscription not needed for srpm-builds Builder is ready to be used [2026-06-16 19:37:34,814][ INFO][PID:1104227] Filling build.info file with builder info [2026-06-16 19:37:34,815][ INFO][PID:1104227] Checking for cancel request [2026-06-16 19:37:34,816][ INFO][PID:1104227] 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": 1781638654.8163033, "submitted_on": null, "status": 3, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10609839", "build_id": 10609839, "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\": \"tmp9m8pun2c\", \"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--b0f0f7f7-4758-4caf-821f-022ebb96992d", "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": "10609839", "built_packages": "", "tags": [ "arch_x86_64" ], "rpmeta_prediction": null, "id": 10609839, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "beta", "vendor": "Fedora Project COPR (lizardbyte/beta)" } } ] } [2026-06-16 19:37:34,852][ INFO][PID:1104227] Sending fedora-messaging bus message in build.start [2026-06-16 19:37:35,303][ INFO][PID:1104227] Sending fedora-messaging bus message in chroot.start [2026-06-16 19:37:35,328][ INFO][PID:1104227] Starting remote build: copr-rpmbuild --verbose --drop-resultdir --srpm --task-url https://copr.fedorainfracloud.org/backend/get-srpm-build-task/10609839 --detached [2026-06-16 19:37:35,826][ INFO][PID:1104227] The copr-rpmbuild seems started, per: stdout: stderr: Warning: Permanently added '3.89.191.202' (ED25519) to the list of known hosts. [2026-06-16 19:37:35,833][ INFO][PID:1104227] Downloading the builder-live.log file, attempt 1 [2026-06-16 19:37:36,009][ INFO][PID:1104227] Popen command started: ssh -F /home/copr/.ssh/config mockbuilder@3.89.191.202 copr-rpmbuild-log [2026-06-16 19:37:40,865][ INFO][PID:1104227] Periodic builder liveness probe: alive [2026-06-16 19:37:40,874][ INFO][PID:1104227] Checking for cancel request [2026-06-16 19:37:45,876][ INFO][PID:1104227] Checking for cancel request [2026-06-16 19:37:50,894][ INFO][PID:1104227] Checking for cancel request [2026-06-16 19:37:55,903][ INFO][PID:1104227] Checking for cancel request [2026-06-16 19:38:00,910][ INFO][PID:1104227] Checking for cancel request [2026-06-16 19:38:05,922][ INFO][PID:1104227] Checking for cancel request [2026-06-16 19:38:10,929][ INFO][PID:1104227] Checking for cancel request [2026-06-16 19:38:15,937][ INFO][PID:1104227] Checking for cancel request [2026-06-16 19:38:20,946][ INFO][PID:1104227] Checking for cancel request [2026-06-16 19:38:25,954][ INFO][PID:1104227] Checking for cancel request [2026-06-16 19:38:30,962][ INFO][PID:1104227] Checking for cancel request [2026-06-16 19:38:35,969][ INFO][PID:1104227] Checking for cancel request [2026-06-16 19:38:40,970][ INFO][PID:1104227] Checking for cancel request [2026-06-16 19:38:45,972][ INFO][PID:1104227] Checking for cancel request [2026-06-16 19:38:51,004][ INFO][PID:1104227] Checking for cancel request [2026-06-16 19:38:56,011][ INFO][PID:1104227] Checking for cancel request [2026-06-16 19:39:01,020][ INFO][PID:1104227] Checking for cancel request [2026-06-16 19:39:06,038][ INFO][PID:1104227] Checking for cancel request [2026-06-16 19:39:11,046][ INFO][PID:1104227] Checking for cancel request [2026-06-16 19:39:16,047][ INFO][PID:1104227] Checking for cancel request [2026-06-16 19:39:21,050][ INFO][PID:1104227] Checking for cancel request [2026-06-16 19:39:26,056][ INFO][PID:1104227] Checking for cancel request [2026-06-16 19:39:31,063][ INFO][PID:1104227] Checking for cancel request [2026-06-16 19:39:36,083][ INFO][PID:1104227] Checking for cancel request [2026-06-16 19:39:41,092][ INFO][PID:1104227] Checking for cancel request [2026-06-16 19:39:46,101][ INFO][PID:1104227] Checking for cancel request [2026-06-16 19:39:51,107][ INFO][PID:1104227] Checking for cancel request [2026-06-16 19:39:56,117][ INFO][PID:1104227] Checking for cancel request [2026-06-16 19:40:01,140][ INFO][PID:1104227] Checking for cancel request [2026-06-16 19:40:06,196][ INFO][PID:1104227] Checking for cancel request [2026-06-16 19:40:11,201][ INFO][PID:1104227] Checking for cancel request [2026-06-16 19:40:16,203][ INFO][PID:1104227] Checking for cancel request [2026-06-16 19:40:21,209][ INFO][PID:1104227] Checking for cancel request [2026-06-16 19:40:26,215][ INFO][PID:1104227] Checking for cancel request [2026-06-16 19:40:31,221][ INFO][PID:1104227] Checking for cancel request [2026-06-16 19:40:36,261][ INFO][PID:1104227] Checking for cancel request [2026-06-16 19:40:41,263][ INFO][PID:1104227] Checking for cancel request [2026-06-16 19:40:46,266][ INFO][PID:1104227] Checking for cancel request [2026-06-16 19:40:51,268][ INFO][PID:1104227] Checking for cancel request [2026-06-16 19:40:56,512][ INFO][PID:1104227] Checking for cancel request [2026-06-16 19:41:01,515][ INFO][PID:1104227] Checking for cancel request [2026-06-16 19:41:06,751][ INFO][PID:1104227] Checking for cancel request [2026-06-16 19:41:11,755][ INFO][PID:1104227] Checking for cancel request [2026-06-16 19:41:16,759][ INFO][PID:1104227] Checking for cancel request [2026-06-16 19:41:21,761][ INFO][PID:1104227] Checking for cancel request [2026-06-16 19:41:26,763][ INFO][PID:1104227] Checking for cancel request [2026-06-16 19:41:31,766][ INFO][PID:1104227] Checking for cancel request [2026-06-16 19:41:36,768][ INFO][PID:1104227] Checking for cancel request [2026-06-16 19:41:41,769][ INFO][PID:1104227] Checking for cancel request [2026-06-16 19:41:46,771][ INFO][PID:1104227] Checking for cancel request [2026-06-16 19:41:51,778][ INFO][PID:1104227] Checking for cancel request [2026-06-16 19:41:56,780][ INFO][PID:1104227] Checking for cancel request [2026-06-16 19:42:01,781][ INFO][PID:1104227] Checking for cancel request [2026-06-16 19:42:06,788][ INFO][PID:1104227] Checking for cancel request [2026-06-16 19:42:11,884][ INFO][PID:1104227] Checking for cancel request [2026-06-16 19:42:16,885][ INFO][PID:1104227] Checking for cancel request [2026-06-16 19:42:21,887][ INFO][PID:1104227] Checking for cancel request [2026-06-16 19:42:26,946][ INFO][PID:1104227] Checking for cancel request [2026-06-16 19:42:31,950][ INFO][PID:1104227] Checking for cancel request [2026-06-16 19:42:36,951][ INFO][PID:1104227] Checking for cancel request [2026-06-16 19:42:41,953][ INFO][PID:1104227] Checking for cancel request [2026-06-16 19:42:46,954][ INFO][PID:1104227] Checking for cancel request [2026-06-16 19:42:51,971][ INFO][PID:1104227] Checking for cancel request [2026-06-16 19:42:56,975][ INFO][PID:1104227] Checking for cancel request [2026-06-16 19:43:02,244][ INFO][PID:1104227] Checking for cancel request [2026-06-16 19:43:07,247][ INFO][PID:1104227] Checking for cancel request [2026-06-16 19:43:12,249][ INFO][PID:1104227] Checking for cancel request [2026-06-16 19:43:17,251][ INFO][PID:1104227] Checking for cancel request [2026-06-16 19:43:22,252][ INFO][PID:1104227] Checking for cancel request [2026-06-16 19:43:27,253][ INFO][PID:1104227] Checking for cancel request [2026-06-16 19:43:32,255][ INFO][PID:1104227] Checking for cancel request [2026-06-16 19:43:37,362][ INFO][PID:1104227] Checking for cancel request [2026-06-16 19:43:42,365][ INFO][PID:1104227] Checking for cancel request [2026-06-16 19:43:47,367][ INFO][PID:1104227] Checking for cancel request [2026-06-16 19:43:52,369][ INFO][PID:1104227] Checking for cancel request [2026-06-16 19:43:57,371][ INFO][PID:1104227] Checking for cancel request [2026-06-16 19:44:02,376][ INFO][PID:1104227] Checking for cancel request [2026-06-16 19:44:07,378][ INFO][PID:1104227] Checking for cancel request [2026-06-16 19:44:12,380][ INFO][PID:1104227] Checking for cancel request [2026-06-16 19:44:17,395][ INFO][PID:1104227] Checking for cancel request [2026-06-16 19:44:22,403][ INFO][PID:1104227] Checking for cancel request [2026-06-16 19:44:27,404][ INFO][PID:1104227] Checking for cancel request [2026-06-16 19:44:32,406][ INFO][PID:1104227] Checking for cancel request [2026-06-16 19:44:37,408][ INFO][PID:1104227] Checking for cancel request [2026-06-16 19:44:42,409][ INFO][PID:1104227] Checking for cancel request [2026-06-16 19:44:47,411][ INFO][PID:1104227] Checking for cancel request [2026-06-16 19:44:52,412][ INFO][PID:1104227] Checking for cancel request [2026-06-16 19:44:57,414][ INFO][PID:1104227] Checking for cancel request [2026-06-16 19:45:02,415][ INFO][PID:1104227] Checking for cancel request [2026-06-16 19:45:07,416][ INFO][PID:1104227] Checking for cancel request [2026-06-16 19:45:12,418][ INFO][PID:1104227] Checking for cancel request [2026-06-16 19:45:17,419][ INFO][PID:1104227] Checking for cancel request [2026-06-16 19:45:22,489][ INFO][PID:1104227] Checking for cancel request [2026-06-16 19:45:27,491][ INFO][PID:1104227] Checking for cancel request [2026-06-16 19:45:32,496][ INFO][PID:1104227] Checking for cancel request [2026-06-16 19:45:37,498][ INFO][PID:1104227] Checking for cancel request [2026-06-16 19:45:42,501][ INFO][PID:1104227] Checking for cancel request [2026-06-16 19:45:47,502][ INFO][PID:1104227] Checking for cancel request [2026-06-16 19:45:52,504][ INFO][PID:1104227] Checking for cancel request [2026-06-16 19:45:57,562][ INFO][PID:1104227] Checking for cancel request [2026-06-16 19:46:02,570][ INFO][PID:1104227] Checking for cancel request [2026-06-16 19:46:07,576][ INFO][PID:1104227] Checking for cancel request [2026-06-16 19:46:12,578][ INFO][PID:1104227] Checking for cancel request [2026-06-16 19:46:17,588][ INFO][PID:1104227] Checking for cancel request [2026-06-16 19:46:22,591][ INFO][PID:1104227] Checking for cancel request [2026-06-16 19:46:27,593][ INFO][PID:1104227] Checking for cancel request [2026-06-16 19:46:29,851][ INFO][PID:1104227] Downloading results from builder [2026-06-16 19:46:29,871][ INFO][PID:1104227] rsyncing of mockbuilder@3.89.191.202:/var/lib/copr-rpmbuild/results/ to /var/lib/copr/public_html/results/lizardbyte/beta/srpm-builds/10609839 started [2026-06-16 19:46:29,925][ INFO][PID:1104227] Popen command started: /usr/bin/rsync -rltDvH --chmod=D755,F644 -e 'ssh -F /home/copr/.ssh/config' mockbuilder@3.89.191.202:/var/lib/copr-rpmbuild/results/ /var/lib/copr/public_html/results/lizardbyte/beta/srpm-builds/10609839/ &> /var/lib/copr/public_html/results/lizardbyte/beta/srpm-builds/10609839/build-10609839.rsync.log [2026-06-16 19:46:34,646][ INFO][PID:1104227] rsyncing finished. [2026-06-16 19:46:34,648][ INFO][PID:1104227] VM Release request [2026-06-16 19:46:34,806][ INFO][PID:1104227] Searching for 'success' file in resultdir [2026-06-16 19:46:34,849][ INFO][PID:1104227] Getting build details [2026-06-16 19:46:34,851][ INFO][PID:1104227] Retrieving SRPM info from /var/lib/copr/public_html/results/lizardbyte/beta/srpm-builds/10609839 [2026-06-16 19:46:34,894][ INFO][PID:1104227] SRPM URL: https://download.copr.fedorainfracloud.org/results/lizardbyte/beta/srpm-builds/10609839/Sunshine-2026.616.153054-1.src.rpm [2026-06-16 19:46:34,895][ INFO][PID:1104227] build details: {'srpm_url': 'https://download.copr.fedorainfracloud.org/results/lizardbyte/beta/srpm-builds/10609839/Sunshine-2026.616.153054-1.src.rpm', 'pkg_name': 'Sunshine', 'pkg_version': '2026.616.153054-1'} [2026-06-16 19:46:34,906][ INFO][PID:1104227] Finished build: id=10609839 failed=False timeout=108000 destdir=/var/lib/copr/public_html/results/lizardbyte/beta chroot=srpm-builds [2026-06-16 19:46:34,975][ INFO][PID:1104227] Worker succeeded build, took 540.1579596996307 [2026-06-16 19:46:34,982][ INFO][PID:1104227] 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": 1781639194.974263, "started_on": 1781638654.8163033, "submitted_on": null, "status": 1, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10609839", "build_id": 10609839, "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\": \"tmp9m8pun2c\", \"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/10609839/Sunshine-2026.616.153054-1.src.rpm", "uses_devel_repo": null, "sandbox": "lizardbyte/beta--b0f0f7f7-4758-4caf-821f-022ebb96992d", "results": { "architecture_specific_tags": { "fedora-42": {}, "fedora-43": {}, "fedora-44": {}, "fedora-rawhide": {}, "opensuse-leap-15.6": {} }, "name": "Sunshine", "epoch": null, "version": "2026.616.153054", "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": "10609839", "built_packages": "", "tags": [ "arch_x86_64" ], "rpmeta_prediction": null, "pkg_version": "2026.616.153054-1", "id": 10609839, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "beta", "vendor": "Fedora Project COPR (lizardbyte/beta)" } } ] } [2026-06-16 19:46:35,562][ INFO][PID:1104227] Sending fedora-messaging bus message in build.end [2026-06-16 19:46:35,846][ INFO][PID:1104227] Compressing /var/lib/copr/public_html/results/lizardbyte/beta/srpm-builds/10609839/builder-live.log by gzip [2026-06-16 19:46:35,865][ INFO][PID:1104227] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/beta/srpm-builds/10609839/builder-live.log' as PID 1138350 [2026-06-16 19:46:35,887][ INFO][PID:1104227] Finished after 0 seconds with exit code 0 (gzip /var/lib/copr/public_html/results/lizardbyte/beta/srpm-builds/10609839/builder-live.log) [2026-06-16 19:46:35,890][ INFO][PID:1104227] Compressing /var/lib/copr/public_html/results/lizardbyte/beta/srpm-builds/10609839/backend.log by gzip [2026-06-16 19:46:35,893][ INFO][PID:1104227] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/beta/srpm-builds/10609839/backend.log' as PID 1138351