[2026-05-31 07:40:07,786][ INFO][PID:2439172] Marking build as starting [2026-05-31 07:40:07,823][ INFO][PID:2439172] Checking for cancel request [2026-05-31 07:40:07,824][ INFO][PID:2439172] VM allocation process starts [2026-05-31 07:40:07,834][ INFO][PID:2439172] Trying to allocate VM: ResallocHost, ticket_id=3147737, requested_tags=['arch_x86_64', 'copr_builder'] [2026-05-31 07:40:10,876][ INFO][PID:2439172] Allocated host ResallocHost, ticket_id=3147737, hostname=54.224.7.153, name=aws_x86_64_reserved_prod_10406271_20260531_065734, requested_tags=['arch_x86_64', 'copr_builder'] [2026-05-31 07:40:10,877][ INFO][PID:2439172] Allocating ssh connection to builder [2026-05-31 07:40:10,877][ INFO][PID:2439172] Checking that builder machine is OK [2026-05-31 07:40:11,219][ INFO][PID:2439172] Installed copr-rpmbuild version: 1.8 [2026-05-31 07:40:11,220][ INFO][PID:2439172] Running remote command: copr-builder-ready srpm-builds [2026-05-31 07:40:11,439][ INFO][PID:2439172] Red Hat subscription not needed for srpm-builds Builder is ready to be used [2026-05-31 07:40:11,440][ INFO][PID:2439172] Filling build.info file with builder info [2026-05-31 07:40:11,441][ INFO][PID:2439172] Checking for cancel request [2026-05-31 07:40:11,442][ INFO][PID:2439172] 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:5229", "submitter": null, "ended_on": null, "started_on": 1780213211.4420586, "submitted_on": null, "status": 3, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10527737", "build_id": 10527737, "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\": \"tmpzcvzmz7z\", \"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--6a631591-7421-4896-ab4e-94011d57f9dc", "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:5229", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5229", "result_dir": "10527737", "built_packages": "", "tags": [ "arch_x86_64" ], "id": 10527737, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2026-05-31 07:40:11,479][ INFO][PID:2439172] Sending fedora-messaging bus message in build.start [2026-05-31 07:40:11,933][ INFO][PID:2439172] Sending fedora-messaging bus message in chroot.start [2026-05-31 07:40:11,960][ INFO][PID:2439172] Starting remote build: copr-rpmbuild --verbose --drop-resultdir --srpm --task-url https://copr.fedorainfracloud.org/backend/get-srpm-build-task/10527737 --detached [2026-05-31 07:40:12,442][ INFO][PID:2439172] The copr-rpmbuild seems started, per: stdout: stderr: Warning: Permanently added '54.224.7.153' (ED25519) to the list of known hosts. [2026-05-31 07:40:12,443][ INFO][PID:2439172] Downloading the builder-live.log file, attempt 1 [2026-05-31 07:40:12,445][ INFO][PID:2439172] Popen command started: ssh -F /home/copr/.ssh/config mockbuilder@54.224.7.153 copr-rpmbuild-log [2026-05-31 07:40:17,449][ INFO][PID:2439172] Periodic builder liveness probe: alive [2026-05-31 07:40:17,449][ INFO][PID:2439172] Checking for cancel request [2026-05-31 07:40:22,450][ INFO][PID:2439172] Checking for cancel request [2026-05-31 07:40:27,451][ INFO][PID:2439172] Checking for cancel request [2026-05-31 07:40:32,453][ INFO][PID:2439172] Checking for cancel request [2026-05-31 07:40:37,454][ INFO][PID:2439172] Checking for cancel request [2026-05-31 07:40:42,455][ INFO][PID:2439172] Checking for cancel request [2026-05-31 07:40:47,456][ INFO][PID:2439172] Checking for cancel request [2026-05-31 07:40:52,457][ INFO][PID:2439172] Checking for cancel request [2026-05-31 07:40:57,459][ INFO][PID:2439172] Checking for cancel request [2026-05-31 07:41:02,460][ INFO][PID:2439172] Checking for cancel request [2026-05-31 07:41:07,461][ INFO][PID:2439172] Checking for cancel request [2026-05-31 07:41:12,462][ INFO][PID:2439172] Checking for cancel request [2026-05-31 07:41:17,464][ INFO][PID:2439172] Checking for cancel request [2026-05-31 07:41:22,465][ INFO][PID:2439172] Checking for cancel request [2026-05-31 07:41:27,466][ INFO][PID:2439172] Checking for cancel request [2026-05-31 07:41:32,467][ INFO][PID:2439172] Checking for cancel request [2026-05-31 07:41:37,468][ INFO][PID:2439172] Checking for cancel request [2026-05-31 07:41:42,470][ INFO][PID:2439172] Checking for cancel request [2026-05-31 07:41:47,471][ INFO][PID:2439172] Checking for cancel request [2026-05-31 07:41:52,472][ INFO][PID:2439172] Checking for cancel request [2026-05-31 07:41:57,473][ INFO][PID:2439172] Checking for cancel request [2026-05-31 07:42:02,474][ INFO][PID:2439172] Checking for cancel request [2026-05-31 07:42:07,476][ INFO][PID:2439172] Checking for cancel request [2026-05-31 07:42:12,477][ INFO][PID:2439172] Checking for cancel request [2026-05-31 07:42:17,478][ INFO][PID:2439172] Checking for cancel request [2026-05-31 07:42:22,479][ INFO][PID:2439172] Checking for cancel request [2026-05-31 07:42:27,481][ INFO][PID:2439172] Checking for cancel request [2026-05-31 07:42:32,482][ INFO][PID:2439172] Checking for cancel request [2026-05-31 07:42:37,483][ INFO][PID:2439172] Checking for cancel request [2026-05-31 07:42:42,484][ INFO][PID:2439172] Checking for cancel request [2026-05-31 07:42:47,485][ INFO][PID:2439172] Checking for cancel request [2026-05-31 07:42:52,487][ INFO][PID:2439172] Checking for cancel request [2026-05-31 07:42:57,488][ INFO][PID:2439172] Checking for cancel request [2026-05-31 07:43:02,489][ INFO][PID:2439172] Checking for cancel request [2026-05-31 07:43:07,490][ INFO][PID:2439172] Checking for cancel request [2026-05-31 07:43:12,492][ INFO][PID:2439172] Checking for cancel request [2026-05-31 07:43:17,493][ INFO][PID:2439172] Checking for cancel request [2026-05-31 07:43:22,494][ INFO][PID:2439172] Checking for cancel request [2026-05-31 07:43:27,495][ INFO][PID:2439172] Checking for cancel request [2026-05-31 07:43:32,496][ INFO][PID:2439172] Checking for cancel request [2026-05-31 07:43:37,497][ INFO][PID:2439172] Checking for cancel request [2026-05-31 07:43:42,499][ INFO][PID:2439172] Checking for cancel request [2026-05-31 07:43:47,500][ INFO][PID:2439172] Checking for cancel request [2026-05-31 07:43:52,501][ INFO][PID:2439172] Checking for cancel request [2026-05-31 07:43:57,502][ INFO][PID:2439172] Checking for cancel request [2026-05-31 07:44:02,503][ INFO][PID:2439172] Checking for cancel request [2026-05-31 07:44:07,505][ INFO][PID:2439172] Checking for cancel request [2026-05-31 07:44:12,506][ INFO][PID:2439172] Checking for cancel request [2026-05-31 07:44:17,507][ INFO][PID:2439172] Checking for cancel request [2026-05-31 07:44:22,508][ INFO][PID:2439172] Checking for cancel request [2026-05-31 07:44:27,509][ INFO][PID:2439172] Checking for cancel request [2026-05-31 07:44:32,511][ INFO][PID:2439172] Checking for cancel request [2026-05-31 07:44:37,512][ INFO][PID:2439172] Checking for cancel request [2026-05-31 07:44:42,513][ INFO][PID:2439172] Checking for cancel request [2026-05-31 07:44:47,514][ INFO][PID:2439172] Checking for cancel request [2026-05-31 07:44:52,515][ INFO][PID:2439172] Checking for cancel request [2026-05-31 07:44:57,516][ INFO][PID:2439172] Checking for cancel request [2026-05-31 07:45:02,518][ INFO][PID:2439172] Checking for cancel request [2026-05-31 07:45:07,519][ INFO][PID:2439172] Checking for cancel request [2026-05-31 07:45:12,520][ INFO][PID:2439172] Checking for cancel request [2026-05-31 07:45:17,521][ INFO][PID:2439172] Checking for cancel request [2026-05-31 07:45:22,913][ INFO][PID:2439172] Checking for cancel request [2026-05-31 07:45:27,914][ INFO][PID:2439172] Checking for cancel request [2026-05-31 07:45:32,915][ INFO][PID:2439172] Checking for cancel request [2026-05-31 07:45:37,916][ INFO][PID:2439172] Checking for cancel request [2026-05-31 07:45:42,917][ INFO][PID:2439172] Checking for cancel request [2026-05-31 07:45:48,127][ INFO][PID:2439172] Checking for cancel request [2026-05-31 07:45:53,128][ INFO][PID:2439172] Checking for cancel request [2026-05-31 07:45:58,129][ INFO][PID:2439172] Checking for cancel request [2026-05-31 07:46:03,131][ INFO][PID:2439172] Checking for cancel request [2026-05-31 07:46:08,132][ INFO][PID:2439172] Checking for cancel request [2026-05-31 07:46:13,133][ INFO][PID:2439172] Checking for cancel request [2026-05-31 07:46:18,134][ INFO][PID:2439172] Checking for cancel request [2026-05-31 07:46:23,135][ INFO][PID:2439172] Checking for cancel request [2026-05-31 07:46:28,137][ INFO][PID:2439172] Checking for cancel request [2026-05-31 07:46:33,138][ INFO][PID:2439172] Checking for cancel request [2026-05-31 07:46:38,139][ INFO][PID:2439172] Checking for cancel request [2026-05-31 07:46:43,140][ INFO][PID:2439172] Checking for cancel request [2026-05-31 07:46:48,141][ INFO][PID:2439172] Checking for cancel request [2026-05-31 07:46:53,180][ INFO][PID:2439172] Checking for cancel request [2026-05-31 07:46:58,183][ INFO][PID:2439172] Checking for cancel request [2026-05-31 07:47:03,184][ INFO][PID:2439172] Checking for cancel request [2026-05-31 07:47:08,186][ INFO][PID:2439172] Checking for cancel request [2026-05-31 07:47:13,187][ INFO][PID:2439172] Checking for cancel request [2026-05-31 07:47:18,189][ INFO][PID:2439172] Checking for cancel request [2026-05-31 07:47:23,190][ INFO][PID:2439172] Checking for cancel request [2026-05-31 07:47:28,283][ INFO][PID:2439172] Checking for cancel request [2026-05-31 07:47:33,334][ INFO][PID:2439172] Checking for cancel request [2026-05-31 07:47:38,799][ INFO][PID:2439172] Checking for cancel request [2026-05-31 07:47:43,803][ INFO][PID:2439172] Checking for cancel request [2026-05-31 07:47:49,217][ INFO][PID:2439172] Checking for cancel request [2026-05-31 07:47:54,219][ INFO][PID:2439172] Checking for cancel request [2026-05-31 07:47:59,220][ INFO][PID:2439172] Checking for cancel request [2026-05-31 07:48:04,221][ INFO][PID:2439172] Checking for cancel request [2026-05-31 07:48:09,222][ INFO][PID:2439172] Checking for cancel request [2026-05-31 07:48:14,223][ INFO][PID:2439172] Checking for cancel request [2026-05-31 07:48:19,225][ INFO][PID:2439172] Checking for cancel request [2026-05-31 07:48:24,226][ INFO][PID:2439172] Checking for cancel request [2026-05-31 07:48:29,227][ INFO][PID:2439172] Checking for cancel request [2026-05-31 07:48:34,228][ INFO][PID:2439172] Checking for cancel request [2026-05-31 07:48:39,229][ INFO][PID:2439172] Checking for cancel request [2026-05-31 07:48:44,230][ INFO][PID:2439172] Checking for cancel request [2026-05-31 07:48:49,232][ INFO][PID:2439172] Checking for cancel request [2026-05-31 07:48:54,233][ INFO][PID:2439172] Checking for cancel request [2026-05-31 07:48:59,234][ INFO][PID:2439172] Checking for cancel request [2026-05-31 07:49:04,443][ INFO][PID:2439172] Checking for cancel request [2026-05-31 07:49:09,445][ INFO][PID:2439172] Checking for cancel request [2026-05-31 07:49:11,699][ INFO][PID:2439172] Downloading results from builder [2026-05-31 07:49:11,700][ INFO][PID:2439172] rsyncing of mockbuilder@54.224.7.153:/var/lib/copr-rpmbuild/results/ to /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5229/srpm-builds/10527737 started [2026-05-31 07:49:11,701][ INFO][PID:2439172] Popen command started: /usr/bin/rsync -rltDvH --chmod=D755,F644 -e 'ssh -F /home/copr/.ssh/config' mockbuilder@54.224.7.153:/var/lib/copr-rpmbuild/results/ /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5229/srpm-builds/10527737/ &> /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5229/srpm-builds/10527737/build-10527737.rsync.log [2026-05-31 07:49:16,164][ INFO][PID:2439172] rsyncing finished. [2026-05-31 07:49:16,165][ INFO][PID:2439172] VM Release request [2026-05-31 07:49:16,205][ INFO][PID:2439172] Searching for 'success' file in resultdir [2026-05-31 07:49:16,206][ INFO][PID:2439172] Getting build details [2026-05-31 07:49:16,207][ INFO][PID:2439172] Retrieving SRPM info from /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5229/srpm-builds/10527737 [2026-05-31 07:49:16,208][ INFO][PID:2439172] SRPM URL: https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5229/srpm-builds/10527737/Sunshine-0.0.5229-1.src.rpm [2026-05-31 07:49:16,208][ INFO][PID:2439172] build details: {'srpm_url': 'https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5229/srpm-builds/10527737/Sunshine-0.0.5229-1.src.rpm', 'pkg_name': 'Sunshine', 'pkg_version': '0.0.5229-1'} [2026-05-31 07:49:16,209][ INFO][PID:2439172] Finished build: id=10527737 failed=False timeout=108000 destdir=/var/lib/copr/public_html/results/lizardbyte/pulls:pr:5229 chroot=srpm-builds [2026-05-31 07:49:16,210][ INFO][PID:2439172] Worker succeeded build, took 544.7687680721283 [2026-05-31 07:49:16,211][ INFO][PID:2439172] 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:5229", "submitter": null, "ended_on": 1780213756.2108266, "started_on": 1780213211.4420586, "submitted_on": null, "status": 1, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10527737", "build_id": 10527737, "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\": \"tmpzcvzmz7z\", \"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:5229/srpm-builds/10527737/Sunshine-0.0.5229-1.src.rpm", "uses_devel_repo": null, "sandbox": "lizardbyte/pulls--6a631591-7421-4896-ab4e-94011d57f9dc", "results": { "architecture_specific_tags": { "fedora-42": {}, "fedora-43": {}, "fedora-44": {}, "fedora-rawhide": {}, "opensuse-leap-15.6": {} }, "name": "Sunshine", "epoch": null, "version": "0.0.5229", "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:5229", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5229", "result_dir": "10527737", "built_packages": "", "tags": [ "arch_x86_64" ], "pkg_version": "0.0.5229-1", "id": 10527737, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2026-05-31 07:49:16,264][ INFO][PID:2439172] Sending fedora-messaging bus message in build.end [2026-05-31 07:49:16,293][ INFO][PID:2439172] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5229/srpm-builds/10527737/builder-live.log by gzip [2026-05-31 07:49:16,295][ INFO][PID:2439172] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5229/srpm-builds/10527737/builder-live.log' as PID 2456912 [2026-05-31 07:49:16,317][ INFO][PID:2439172] Finished after 0 seconds with exit code 0 (gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5229/srpm-builds/10527737/builder-live.log) [2026-05-31 07:49:16,318][ INFO][PID:2439172] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5229/srpm-builds/10527737/backend.log by gzip [2026-05-31 07:49:16,320][ INFO][PID:2439172] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5229/srpm-builds/10527737/backend.log' as PID 2456927