[2026-06-05 22:57:38,075][ INFO][PID:2560187] Marking build as starting [2026-06-05 22:57:38,114][ INFO][PID:2560187] Checking for cancel request [2026-06-05 22:57:38,116][ INFO][PID:2560187] VM allocation process starts [2026-06-05 22:57:38,177][ INFO][PID:2560187] Trying to allocate VM: ResallocHost, ticket_id=3309420, requested_tags=['arch_x86_64', 'copr_builder'] [2026-06-05 22:57:43,180][ INFO][PID:2560187] Checking for cancel request [2026-06-05 22:57:44,203][ INFO][PID:2560187] Allocated host ResallocHost, ticket_id=3309420, hostname=98.92.53.97, name=aws_x86_64_reserved_prod_10748011_20260605_225407, requested_tags=['arch_x86_64', 'copr_builder'] [2026-06-05 22:57:44,203][ INFO][PID:2560187] Allocating ssh connection to builder [2026-06-05 22:57:44,204][ INFO][PID:2560187] Checking that builder machine is OK [2026-06-05 22:57:44,574][ INFO][PID:2560187] Installed copr-rpmbuild version: 1.8 [2026-06-05 22:57:44,575][ INFO][PID:2560187] Running remote command: copr-builder-ready srpm-builds [2026-06-05 22:57:44,805][ INFO][PID:2560187] Red Hat subscription not needed for srpm-builds Builder is ready to be used [2026-06-05 22:57:44,806][ INFO][PID:2560187] Filling build.info file with builder info [2026-06-05 22:57:44,808][ INFO][PID:2560187] Checking for cancel request [2026-06-05 22:57:44,810][ INFO][PID:2560187] 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": 1780700264.810643, "submitted_on": null, "status": 3, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10572451", "build_id": 10572451, "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\": \"tmpymmptdkv\", \"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--360f55a3-6b9d-462d-bc4e-b2bf3cfb1c5e", "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": "10572451", "built_packages": "", "tags": [ "arch_x86_64" ], "rpmeta_prediction": null, "id": 10572451, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "beta", "vendor": "Fedora Project COPR (lizardbyte/beta)" } } ] } [2026-06-05 22:57:44,852][ INFO][PID:2560187] Sending fedora-messaging bus message in build.start [2026-06-05 22:57:45,414][ INFO][PID:2560187] Sending fedora-messaging bus message in chroot.start [2026-06-05 22:57:45,446][ INFO][PID:2560187] Starting remote build: copr-rpmbuild --verbose --drop-resultdir --srpm --task-url https://copr.fedorainfracloud.org/backend/get-srpm-build-task/10572451 --detached [2026-06-05 22:57:45,936][ INFO][PID:2560187] The copr-rpmbuild seems started, per: stdout: stderr: Warning: Permanently added '98.92.53.97' (ED25519) to the list of known hosts. [2026-06-05 22:57:45,937][ INFO][PID:2560187] Downloading the builder-live.log file, attempt 1 [2026-06-05 22:57:45,940][ INFO][PID:2560187] Popen command started: ssh -F /home/copr/.ssh/config mockbuilder@98.92.53.97 copr-rpmbuild-log [2026-06-05 22:57:50,985][ INFO][PID:2560187] Periodic builder liveness probe: alive [2026-06-05 22:57:50,986][ INFO][PID:2560187] Checking for cancel request [2026-06-05 22:57:55,987][ INFO][PID:2560187] Checking for cancel request [2026-06-05 22:58:00,989][ INFO][PID:2560187] Checking for cancel request [2026-06-05 22:58:05,990][ INFO][PID:2560187] Checking for cancel request [2026-06-05 22:58:10,992][ INFO][PID:2560187] Checking for cancel request [2026-06-05 22:58:15,994][ INFO][PID:2560187] Checking for cancel request [2026-06-05 22:58:20,999][ INFO][PID:2560187] Checking for cancel request [2026-06-05 22:58:26,001][ INFO][PID:2560187] Checking for cancel request [2026-06-05 22:58:31,016][ INFO][PID:2560187] Checking for cancel request [2026-06-05 22:58:36,017][ INFO][PID:2560187] Checking for cancel request [2026-06-05 22:58:41,019][ INFO][PID:2560187] Checking for cancel request [2026-06-05 22:58:46,023][ INFO][PID:2560187] Checking for cancel request [2026-06-05 22:58:51,025][ INFO][PID:2560187] Checking for cancel request [2026-06-05 22:58:56,026][ INFO][PID:2560187] Checking for cancel request [2026-06-05 22:59:01,029][ INFO][PID:2560187] Checking for cancel request [2026-06-05 22:59:06,033][ INFO][PID:2560187] Checking for cancel request [2026-06-05 22:59:11,035][ INFO][PID:2560187] Checking for cancel request [2026-06-05 22:59:16,036][ INFO][PID:2560187] Checking for cancel request [2026-06-05 22:59:21,040][ INFO][PID:2560187] Checking for cancel request [2026-06-05 22:59:26,042][ INFO][PID:2560187] Checking for cancel request [2026-06-05 22:59:31,043][ INFO][PID:2560187] Checking for cancel request [2026-06-05 22:59:36,045][ INFO][PID:2560187] Checking for cancel request [2026-06-05 22:59:41,047][ INFO][PID:2560187] Checking for cancel request [2026-06-05 22:59:46,048][ INFO][PID:2560187] Checking for cancel request [2026-06-05 22:59:51,050][ INFO][PID:2560187] Checking for cancel request [2026-06-05 22:59:56,052][ INFO][PID:2560187] Checking for cancel request [2026-06-05 23:00:01,053][ INFO][PID:2560187] Checking for cancel request [2026-06-05 23:00:06,055][ INFO][PID:2560187] Checking for cancel request [2026-06-05 23:00:11,057][ INFO][PID:2560187] Checking for cancel request [2026-06-05 23:00:16,058][ INFO][PID:2560187] Checking for cancel request [2026-06-05 23:00:21,060][ INFO][PID:2560187] Checking for cancel request [2026-06-05 23:00:26,061][ INFO][PID:2560187] Checking for cancel request [2026-06-05 23:00:31,063][ INFO][PID:2560187] Checking for cancel request [2026-06-05 23:00:36,064][ INFO][PID:2560187] Checking for cancel request [2026-06-05 23:00:41,066][ INFO][PID:2560187] Checking for cancel request [2026-06-05 23:00:46,067][ INFO][PID:2560187] Checking for cancel request [2026-06-05 23:00:51,069][ INFO][PID:2560187] Checking for cancel request [2026-06-05 23:00:56,070][ INFO][PID:2560187] Checking for cancel request [2026-06-05 23:01:01,071][ INFO][PID:2560187] Checking for cancel request [2026-06-05 23:01:06,073][ INFO][PID:2560187] Checking for cancel request [2026-06-05 23:01:11,074][ INFO][PID:2560187] Checking for cancel request [2026-06-05 23:01:16,076][ INFO][PID:2560187] Checking for cancel request [2026-06-05 23:01:21,078][ INFO][PID:2560187] Checking for cancel request [2026-06-05 23:01:26,080][ INFO][PID:2560187] Checking for cancel request [2026-06-05 23:01:31,081][ INFO][PID:2560187] Checking for cancel request [2026-06-05 23:01:36,082][ INFO][PID:2560187] Checking for cancel request [2026-06-05 23:01:41,083][ INFO][PID:2560187] Checking for cancel request [2026-06-05 23:01:46,085][ INFO][PID:2560187] Checking for cancel request [2026-06-05 23:01:51,086][ INFO][PID:2560187] Checking for cancel request [2026-06-05 23:01:56,087][ INFO][PID:2560187] Checking for cancel request [2026-06-05 23:02:01,089][ INFO][PID:2560187] Checking for cancel request [2026-06-05 23:02:06,090][ INFO][PID:2560187] Checking for cancel request [2026-06-05 23:02:11,092][ INFO][PID:2560187] Checking for cancel request [2026-06-05 23:02:16,093][ INFO][PID:2560187] Checking for cancel request [2026-06-05 23:02:21,094][ INFO][PID:2560187] Checking for cancel request [2026-06-05 23:02:26,095][ INFO][PID:2560187] Checking for cancel request [2026-06-05 23:02:31,097][ INFO][PID:2560187] Checking for cancel request [2026-06-05 23:02:36,098][ INFO][PID:2560187] Checking for cancel request [2026-06-05 23:02:41,099][ INFO][PID:2560187] Checking for cancel request [2026-06-05 23:02:46,101][ INFO][PID:2560187] Checking for cancel request [2026-06-05 23:02:51,102][ INFO][PID:2560187] Checking for cancel request [2026-06-05 23:02:56,103][ INFO][PID:2560187] Checking for cancel request [2026-06-05 23:03:01,104][ INFO][PID:2560187] Checking for cancel request [2026-06-05 23:03:06,106][ INFO][PID:2560187] Checking for cancel request [2026-06-05 23:03:11,107][ INFO][PID:2560187] Checking for cancel request [2026-06-05 23:03:16,108][ INFO][PID:2560187] Checking for cancel request [2026-06-05 23:03:21,109][ INFO][PID:2560187] Checking for cancel request [2026-06-05 23:03:26,111][ INFO][PID:2560187] Checking for cancel request [2026-06-05 23:03:31,112][ INFO][PID:2560187] Checking for cancel request [2026-06-05 23:03:36,113][ INFO][PID:2560187] Checking for cancel request [2026-06-05 23:03:41,115][ INFO][PID:2560187] Checking for cancel request [2026-06-05 23:03:46,116][ INFO][PID:2560187] Checking for cancel request [2026-06-05 23:03:51,117][ INFO][PID:2560187] Checking for cancel request [2026-06-05 23:03:56,119][ INFO][PID:2560187] Checking for cancel request [2026-06-05 23:04:01,120][ INFO][PID:2560187] Checking for cancel request [2026-06-05 23:04:06,122][ INFO][PID:2560187] Checking for cancel request [2026-06-05 23:04:11,123][ INFO][PID:2560187] Checking for cancel request [2026-06-05 23:04:16,125][ INFO][PID:2560187] Checking for cancel request [2026-06-05 23:04:21,126][ INFO][PID:2560187] Checking for cancel request [2026-06-05 23:04:26,127][ INFO][PID:2560187] Checking for cancel request [2026-06-05 23:04:31,129][ INFO][PID:2560187] Checking for cancel request [2026-06-05 23:04:36,130][ INFO][PID:2560187] Checking for cancel request [2026-06-05 23:04:41,132][ INFO][PID:2560187] Checking for cancel request [2026-06-05 23:04:46,133][ INFO][PID:2560187] Checking for cancel request [2026-06-05 23:04:51,135][ INFO][PID:2560187] Checking for cancel request [2026-06-05 23:04:56,136][ INFO][PID:2560187] Checking for cancel request [2026-06-05 23:05:01,137][ INFO][PID:2560187] Checking for cancel request [2026-06-05 23:05:06,139][ INFO][PID:2560187] Checking for cancel request [2026-06-05 23:05:11,140][ INFO][PID:2560187] Checking for cancel request [2026-06-05 23:05:16,142][ INFO][PID:2560187] Checking for cancel request [2026-06-05 23:05:21,143][ INFO][PID:2560187] Checking for cancel request [2026-06-05 23:05:26,145][ INFO][PID:2560187] Checking for cancel request [2026-06-05 23:05:31,151][ INFO][PID:2560187] Checking for cancel request [2026-06-05 23:05:36,153][ INFO][PID:2560187] Checking for cancel request [2026-06-05 23:05:41,154][ INFO][PID:2560187] Checking for cancel request [2026-06-05 23:05:46,155][ INFO][PID:2560187] Checking for cancel request [2026-06-05 23:05:51,157][ INFO][PID:2560187] Checking for cancel request [2026-06-05 23:05:56,158][ INFO][PID:2560187] Checking for cancel request [2026-06-05 23:06:01,163][ INFO][PID:2560187] Checking for cancel request [2026-06-05 23:06:06,165][ INFO][PID:2560187] Checking for cancel request [2026-06-05 23:06:11,166][ INFO][PID:2560187] Checking for cancel request [2026-06-05 23:06:16,169][ INFO][PID:2560187] Checking for cancel request [2026-06-05 23:06:21,172][ INFO][PID:2560187] Checking for cancel request [2026-06-05 23:06:26,174][ INFO][PID:2560187] Checking for cancel request [2026-06-05 23:06:31,175][ INFO][PID:2560187] Checking for cancel request [2026-06-05 23:06:36,177][ INFO][PID:2560187] Checking for cancel request [2026-06-05 23:06:41,178][ INFO][PID:2560187] Checking for cancel request [2026-06-05 23:06:46,179][ INFO][PID:2560187] Checking for cancel request [2026-06-05 23:06:51,180][ INFO][PID:2560187] Checking for cancel request [2026-06-05 23:06:56,182][ INFO][PID:2560187] Checking for cancel request [2026-06-05 23:07:01,183][ INFO][PID:2560187] Checking for cancel request [2026-06-05 23:07:06,184][ INFO][PID:2560187] Checking for cancel request [2026-06-05 23:07:11,186][ INFO][PID:2560187] Checking for cancel request [2026-06-05 23:07:16,187][ INFO][PID:2560187] Checking for cancel request [2026-06-05 23:07:18,153][ INFO][PID:2560187] Downloading results from builder [2026-06-05 23:07:18,154][ INFO][PID:2560187] rsyncing of mockbuilder@98.92.53.97:/var/lib/copr-rpmbuild/results/ to /var/lib/copr/public_html/results/lizardbyte/beta/srpm-builds/10572451 started [2026-06-05 23:07:18,155][ INFO][PID:2560187] Popen command started: /usr/bin/rsync -rltDvH --chmod=D755,F644 -e 'ssh -F /home/copr/.ssh/config' mockbuilder@98.92.53.97:/var/lib/copr-rpmbuild/results/ /var/lib/copr/public_html/results/lizardbyte/beta/srpm-builds/10572451/ &> /var/lib/copr/public_html/results/lizardbyte/beta/srpm-builds/10572451/build-10572451.rsync.log [2026-06-05 23:07:22,428][ INFO][PID:2560187] rsyncing finished. [2026-06-05 23:07:22,429][ INFO][PID:2560187] VM Release request [2026-06-05 23:07:22,446][ INFO][PID:2560187] Searching for 'success' file in resultdir [2026-06-05 23:07:22,447][ INFO][PID:2560187] Getting build details [2026-06-05 23:07:22,448][ INFO][PID:2560187] Retrieving SRPM info from /var/lib/copr/public_html/results/lizardbyte/beta/srpm-builds/10572451 [2026-06-05 23:07:22,448][ INFO][PID:2560187] SRPM URL: https://download.copr.fedorainfracloud.org/results/lizardbyte/beta/srpm-builds/10572451/Sunshine-2026.605.170308-1.src.rpm [2026-06-05 23:07:22,449][ INFO][PID:2560187] build details: {'srpm_url': 'https://download.copr.fedorainfracloud.org/results/lizardbyte/beta/srpm-builds/10572451/Sunshine-2026.605.170308-1.src.rpm', 'pkg_name': 'Sunshine', 'pkg_version': '2026.605.170308-1'} [2026-06-05 23:07:22,449][ INFO][PID:2560187] Finished build: id=10572451 failed=False timeout=108000 destdir=/var/lib/copr/public_html/results/lizardbyte/beta chroot=srpm-builds [2026-06-05 23:07:22,451][ INFO][PID:2560187] Worker succeeded build, took 577.6411800384521 [2026-06-05 23:07:22,452][ INFO][PID:2560187] 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": 1780700842.451823, "started_on": 1780700264.810643, "submitted_on": null, "status": 1, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10572451", "build_id": 10572451, "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\": \"tmpymmptdkv\", \"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/10572451/Sunshine-2026.605.170308-1.src.rpm", "uses_devel_repo": null, "sandbox": "lizardbyte/beta--360f55a3-6b9d-462d-bc4e-b2bf3cfb1c5e", "results": { "architecture_specific_tags": { "fedora-42": {}, "fedora-43": {}, "fedora-44": {}, "fedora-rawhide": {}, "opensuse-leap-15.6": {} }, "name": "Sunshine", "epoch": null, "version": "2026.605.170308", "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": "10572451", "built_packages": "", "tags": [ "arch_x86_64" ], "rpmeta_prediction": null, "pkg_version": "2026.605.170308-1", "id": 10572451, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "beta", "vendor": "Fedora Project COPR (lizardbyte/beta)" } } ] } [2026-06-05 23:07:22,505][ INFO][PID:2560187] Sending fedora-messaging bus message in build.end [2026-06-05 23:07:22,615][ INFO][PID:2560187] Compressing /var/lib/copr/public_html/results/lizardbyte/beta/srpm-builds/10572451/builder-live.log by gzip [2026-06-05 23:07:22,616][ INFO][PID:2560187] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/beta/srpm-builds/10572451/builder-live.log' as PID 2651855 [2026-06-05 23:07:22,657][ INFO][PID:2560187] Finished after 0 seconds with exit code 0 (gzip /var/lib/copr/public_html/results/lizardbyte/beta/srpm-builds/10572451/builder-live.log) [2026-06-05 23:07:22,658][ INFO][PID:2560187] Compressing /var/lib/copr/public_html/results/lizardbyte/beta/srpm-builds/10572451/backend.log by gzip [2026-06-05 23:07:22,659][ INFO][PID:2560187] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/beta/srpm-builds/10572451/backend.log' as PID 2651856