[2026-06-30 14:52:30,622][ INFO][PID:932732] Marking build as starting [2026-06-30 14:52:30,662][ INFO][PID:932732] Checking for cancel request [2026-06-30 14:52:30,664][ INFO][PID:932732] VM allocation process starts [2026-06-30 14:52:30,677][ INFO][PID:932732] Trying to allocate VM: ResallocHost, ticket_id=3682648, requested_tags=['arch_x86_64', 'copr_builder'] [2026-06-30 14:52:35,679][ INFO][PID:932732] Checking for cancel request [2026-06-30 14:52:40,681][ INFO][PID:932732] Checking for cancel request [2026-06-30 14:52:42,714][ INFO][PID:932732] Allocated host ResallocHost, ticket_id=3682648, hostname=54.162.169.241, name=aws_x86_64_reserved_prod_12793567_20260630_144656, requested_tags=['arch_x86_64', 'copr_builder'] [2026-06-30 14:52:42,715][ INFO][PID:932732] Allocating ssh connection to builder [2026-06-30 14:52:42,715][ INFO][PID:932732] Checking that builder machine is OK [2026-06-30 14:52:43,056][ INFO][PID:932732] Installed copr-rpmbuild version: 1.8 [2026-06-30 14:52:43,057][ INFO][PID:932732] Running remote command: copr-builder-ready srpm-builds [2026-06-30 14:52:43,241][ INFO][PID:932732] Red Hat subscription not needed for srpm-builds Builder is ready to be used [2026-06-30 14:52:43,242][ INFO][PID:932732] Filling build.info file with builder info [2026-06-30 14:52:43,267][ INFO][PID:932732] Checking for cancel request [2026-06-30 14:52:43,269][ INFO][PID:932732] 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:5341", "submitter": null, "ended_on": null, "started_on": 1782831163.2689557, "submitted_on": null, "status": 3, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10664281", "build_id": 10664281, "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\": \"tmptmil0ikr\", \"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--c79a735d-853d-4970-b2db-6746bc85f981", "results": null, "appstream": false, "allow_user_ssh": null, "ssh_public_keys": null, "storage": null, "repos": [], "background": true, "distributions_in_build": [ "fedora-43", "fedora-44", "fedora-rawhide", "opensuse-leap-15.6" ], "distributions_in_project": [ "fedora-43", "fedora-44", "fedora-rawhide", "opensuse-leap-15.6" ], "destdir": "/var/lib/copr/public_html/results/lizardbyte/pulls:pr:5341", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5341", "result_dir": "10664281", "built_packages": "", "tags": [ "arch_x86_64" ], "rpmeta_prediction": null, "id": 10664281, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2026-06-30 14:52:43,311][ INFO][PID:932732] Sending fedora-messaging bus message in build.start [2026-06-30 14:52:43,779][ INFO][PID:932732] Sending fedora-messaging bus message in chroot.start [2026-06-30 14:52:43,808][ INFO][PID:932732] Starting remote build: copr-rpmbuild --verbose --drop-resultdir --srpm --task-url https://copr.fedorainfracloud.org/backend/get-srpm-build-task/10664281 --detached [2026-06-30 14:52:44,314][ INFO][PID:932732] The copr-rpmbuild seems started, per: stdout: stderr: Warning: Permanently added '54.162.169.241' (ED25519) to the list of known hosts. [2026-06-30 14:52:44,315][ INFO][PID:932732] Downloading the builder-live.log file, attempt 1 [2026-06-30 14:52:44,318][ INFO][PID:932732] Popen command started: ssh -F /home/copr/.ssh/config mockbuilder@54.162.169.241 copr-rpmbuild-log [2026-06-30 14:52:49,326][ INFO][PID:932732] Periodic builder liveness probe: alive [2026-06-30 14:52:49,327][ INFO][PID:932732] Checking for cancel request [2026-06-30 14:52:54,328][ INFO][PID:932732] Checking for cancel request [2026-06-30 14:52:59,330][ INFO][PID:932732] Checking for cancel request [2026-06-30 14:53:04,332][ INFO][PID:932732] Checking for cancel request [2026-06-30 14:53:09,334][ INFO][PID:932732] Checking for cancel request [2026-06-30 14:53:14,336][ INFO][PID:932732] Checking for cancel request [2026-06-30 14:53:19,337][ INFO][PID:932732] Checking for cancel request [2026-06-30 14:53:24,339][ INFO][PID:932732] Checking for cancel request [2026-06-30 14:53:29,340][ INFO][PID:932732] Checking for cancel request [2026-06-30 14:53:34,342][ INFO][PID:932732] Checking for cancel request [2026-06-30 14:53:39,343][ INFO][PID:932732] Checking for cancel request [2026-06-30 14:53:44,345][ INFO][PID:932732] Checking for cancel request [2026-06-30 14:53:49,349][ INFO][PID:932732] Checking for cancel request [2026-06-30 14:53:54,351][ INFO][PID:932732] Checking for cancel request [2026-06-30 14:53:59,353][ INFO][PID:932732] Checking for cancel request [2026-06-30 14:54:04,354][ INFO][PID:932732] Checking for cancel request [2026-06-30 14:54:09,357][ INFO][PID:932732] Checking for cancel request [2026-06-30 14:54:14,358][ INFO][PID:932732] Checking for cancel request [2026-06-30 14:54:19,359][ INFO][PID:932732] Checking for cancel request [2026-06-30 14:54:24,361][ INFO][PID:932732] Checking for cancel request [2026-06-30 14:54:29,362][ INFO][PID:932732] Checking for cancel request [2026-06-30 14:54:34,363][ INFO][PID:932732] Checking for cancel request [2026-06-30 14:54:39,365][ INFO][PID:932732] Checking for cancel request [2026-06-30 14:54:44,419][ INFO][PID:932732] Checking for cancel request [2026-06-30 14:54:49,421][ INFO][PID:932732] Checking for cancel request [2026-06-30 14:54:54,423][ INFO][PID:932732] Checking for cancel request [2026-06-30 14:54:59,426][ INFO][PID:932732] Checking for cancel request [2026-06-30 14:55:04,428][ INFO][PID:932732] Checking for cancel request [2026-06-30 14:55:09,430][ INFO][PID:932732] Checking for cancel request [2026-06-30 14:55:14,431][ INFO][PID:932732] Checking for cancel request [2026-06-30 14:55:19,433][ INFO][PID:932732] Checking for cancel request [2026-06-30 14:55:24,434][ INFO][PID:932732] Checking for cancel request [2026-06-30 14:55:29,436][ INFO][PID:932732] Checking for cancel request [2026-06-30 14:55:34,437][ INFO][PID:932732] Checking for cancel request [2026-06-30 14:55:39,441][ INFO][PID:932732] Checking for cancel request [2026-06-30 14:55:44,444][ INFO][PID:932732] Checking for cancel request [2026-06-30 14:55:49,452][ INFO][PID:932732] Checking for cancel request [2026-06-30 14:55:54,453][ INFO][PID:932732] Checking for cancel request [2026-06-30 14:55:59,455][ INFO][PID:932732] Checking for cancel request [2026-06-30 14:56:04,456][ INFO][PID:932732] Checking for cancel request [2026-06-30 14:56:09,458][ INFO][PID:932732] Checking for cancel request [2026-06-30 14:56:14,459][ INFO][PID:932732] Checking for cancel request [2026-06-30 14:56:19,461][ INFO][PID:932732] Checking for cancel request [2026-06-30 14:56:24,463][ INFO][PID:932732] Checking for cancel request [2026-06-30 14:56:29,498][ INFO][PID:932732] Checking for cancel request [2026-06-30 14:56:34,500][ INFO][PID:932732] Checking for cancel request [2026-06-30 14:56:39,502][ INFO][PID:932732] Checking for cancel request [2026-06-30 14:56:44,504][ INFO][PID:932732] Checking for cancel request [2026-06-30 14:56:49,505][ INFO][PID:932732] Checking for cancel request [2026-06-30 14:56:54,507][ INFO][PID:932732] Checking for cancel request [2026-06-30 14:56:59,508][ INFO][PID:932732] Checking for cancel request [2026-06-30 14:57:04,511][ INFO][PID:932732] Checking for cancel request [2026-06-30 14:57:09,513][ INFO][PID:932732] Checking for cancel request [2026-06-30 14:57:14,514][ INFO][PID:932732] Checking for cancel request [2026-06-30 14:57:19,516][ INFO][PID:932732] Checking for cancel request [2026-06-30 14:57:24,517][ INFO][PID:932732] Checking for cancel request [2026-06-30 14:57:29,519][ INFO][PID:932732] Checking for cancel request [2026-06-30 14:57:34,520][ INFO][PID:932732] Checking for cancel request [2026-06-30 14:57:39,521][ INFO][PID:932732] Checking for cancel request [2026-06-30 14:57:44,522][ INFO][PID:932732] Checking for cancel request [2026-06-30 14:57:49,524][ INFO][PID:932732] Checking for cancel request [2026-06-30 14:57:54,525][ INFO][PID:932732] Checking for cancel request [2026-06-30 14:57:59,526][ INFO][PID:932732] Checking for cancel request [2026-06-30 14:58:04,528][ INFO][PID:932732] Checking for cancel request [2026-06-30 14:58:09,531][ INFO][PID:932732] Checking for cancel request [2026-06-30 14:58:14,533][ INFO][PID:932732] Checking for cancel request [2026-06-30 14:58:19,534][ INFO][PID:932732] Checking for cancel request [2026-06-30 14:58:24,536][ INFO][PID:932732] Checking for cancel request [2026-06-30 14:58:29,537][ INFO][PID:932732] Checking for cancel request [2026-06-30 14:58:34,538][ INFO][PID:932732] Checking for cancel request [2026-06-30 14:58:39,540][ INFO][PID:932732] Checking for cancel request [2026-06-30 14:58:44,541][ INFO][PID:932732] Checking for cancel request [2026-06-30 14:58:49,543][ INFO][PID:932732] Checking for cancel request [2026-06-30 14:58:54,544][ INFO][PID:932732] Checking for cancel request [2026-06-30 14:58:59,546][ INFO][PID:932732] Checking for cancel request [2026-06-30 14:59:04,549][ INFO][PID:932732] Checking for cancel request [2026-06-30 14:59:09,550][ INFO][PID:932732] Checking for cancel request [2026-06-30 14:59:14,552][ INFO][PID:932732] Checking for cancel request [2026-06-30 14:59:19,553][ INFO][PID:932732] Checking for cancel request [2026-06-30 14:59:24,555][ INFO][PID:932732] Checking for cancel request [2026-06-30 14:59:29,556][ INFO][PID:932732] Checking for cancel request [2026-06-30 14:59:34,558][ INFO][PID:932732] Checking for cancel request [2026-06-30 14:59:39,559][ INFO][PID:932732] Checking for cancel request [2026-06-30 14:59:44,560][ INFO][PID:932732] Checking for cancel request [2026-06-30 14:59:49,562][ INFO][PID:932732] Checking for cancel request [2026-06-30 14:59:54,563][ INFO][PID:932732] Checking for cancel request [2026-06-30 14:59:59,565][ INFO][PID:932732] Checking for cancel request [2026-06-30 15:00:04,566][ INFO][PID:932732] Checking for cancel request [2026-06-30 15:00:09,568][ INFO][PID:932732] Checking for cancel request [2026-06-30 15:00:14,569][ INFO][PID:932732] Checking for cancel request [2026-06-30 15:00:19,571][ INFO][PID:932732] Checking for cancel request [2026-06-30 15:00:24,573][ INFO][PID:932732] Checking for cancel request [2026-06-30 15:00:29,574][ INFO][PID:932732] Checking for cancel request [2026-06-30 15:00:34,577][ INFO][PID:932732] Checking for cancel request [2026-06-30 15:00:39,580][ INFO][PID:932732] Checking for cancel request [2026-06-30 15:00:44,582][ INFO][PID:932732] Checking for cancel request [2026-06-30 15:00:49,583][ INFO][PID:932732] Checking for cancel request [2026-06-30 15:00:54,585][ INFO][PID:932732] Checking for cancel request [2026-06-30 15:00:59,587][ INFO][PID:932732] Checking for cancel request [2026-06-30 15:01:04,588][ INFO][PID:932732] Checking for cancel request [2026-06-30 15:01:09,592][ INFO][PID:932732] Checking for cancel request [2026-06-30 15:01:14,594][ INFO][PID:932732] Checking for cancel request [2026-06-30 15:01:19,599][ INFO][PID:932732] Checking for cancel request [2026-06-30 15:01:24,601][ INFO][PID:932732] Checking for cancel request [2026-06-30 15:01:29,602][ INFO][PID:932732] Checking for cancel request [2026-06-30 15:01:34,605][ INFO][PID:932732] Checking for cancel request [2026-06-30 15:01:39,606][ INFO][PID:932732] Checking for cancel request [2026-06-30 15:01:44,611][ INFO][PID:932732] Checking for cancel request [2026-06-30 15:01:49,614][ INFO][PID:932732] Checking for cancel request [2026-06-30 15:01:52,971][ INFO][PID:932732] Downloading results from builder [2026-06-30 15:01:52,972][ INFO][PID:932732] rsyncing of mockbuilder@54.162.169.241:/var/lib/copr-rpmbuild/results/ to /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5341/srpm-builds/10664281 started [2026-06-30 15:01:52,973][ INFO][PID:932732] Popen command started: /usr/bin/rsync -rltDvH --chmod=D755,F644 -e 'ssh -F /home/copr/.ssh/config' mockbuilder@54.162.169.241:/var/lib/copr-rpmbuild/results/ /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5341/srpm-builds/10664281/ &> /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5341/srpm-builds/10664281/build-10664281.rsync.log [2026-06-30 15:01:57,639][ INFO][PID:932732] rsyncing finished. [2026-06-30 15:01:57,640][ INFO][PID:932732] VM Release request [2026-06-30 15:01:57,650][ INFO][PID:932732] Searching for 'success' file in resultdir [2026-06-30 15:01:57,651][ INFO][PID:932732] Getting build details [2026-06-30 15:01:57,652][ INFO][PID:932732] Retrieving SRPM info from /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5341/srpm-builds/10664281 [2026-06-30 15:01:57,653][ INFO][PID:932732] SRPM URL: https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5341/srpm-builds/10664281/Sunshine-0.0.5341-1.src.rpm [2026-06-30 15:01:57,654][ INFO][PID:932732] build details: {'srpm_url': 'https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5341/srpm-builds/10664281/Sunshine-0.0.5341-1.src.rpm', 'pkg_name': 'Sunshine', 'pkg_version': '0.0.5341-1'} [2026-06-30 15:01:57,655][ INFO][PID:932732] Finished build: id=10664281 failed=False timeout=108000 destdir=/var/lib/copr/public_html/results/lizardbyte/pulls:pr:5341 chroot=srpm-builds [2026-06-30 15:01:57,657][ INFO][PID:932732] Worker succeeded build, took 554.3881697654724 [2026-06-30 15:01:57,658][ INFO][PID:932732] 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:5341", "submitter": null, "ended_on": 1782831717.6571255, "started_on": 1782831163.2689557, "submitted_on": null, "status": 1, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10664281", "build_id": 10664281, "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\": \"tmptmil0ikr\", \"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:5341/srpm-builds/10664281/Sunshine-0.0.5341-1.src.rpm", "uses_devel_repo": null, "sandbox": "lizardbyte/pulls--c79a735d-853d-4970-b2db-6746bc85f981", "results": { "architecture_specific_tags": { "fedora-43": {}, "fedora-44": {}, "fedora-rawhide": {}, "opensuse-leap-15.6": {} }, "name": "Sunshine", "epoch": null, "version": "0.0.5341", "release": "1" }, "appstream": false, "allow_user_ssh": null, "ssh_public_keys": null, "storage": null, "repos": [], "background": true, "distributions_in_build": [ "fedora-43", "fedora-44", "fedora-rawhide", "opensuse-leap-15.6" ], "distributions_in_project": [ "fedora-43", "fedora-44", "fedora-rawhide", "opensuse-leap-15.6" ], "destdir": "/var/lib/copr/public_html/results/lizardbyte/pulls:pr:5341", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5341", "result_dir": "10664281", "built_packages": "", "tags": [ "arch_x86_64" ], "rpmeta_prediction": null, "pkg_version": "0.0.5341-1", "id": 10664281, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2026-06-30 15:01:57,736][ INFO][PID:932732] Sending fedora-messaging bus message in build.end [2026-06-30 15:01:57,762][ INFO][PID:932732] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5341/srpm-builds/10664281/builder-live.log by gzip [2026-06-30 15:01:57,764][ INFO][PID:932732] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5341/srpm-builds/10664281/builder-live.log' as PID 1003280 [2026-06-30 15:01:57,801][ INFO][PID:932732] Finished after 0 seconds with exit code 0 (gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5341/srpm-builds/10664281/builder-live.log) [2026-06-30 15:01:57,802][ INFO][PID:932732] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5341/srpm-builds/10664281/backend.log by gzip [2026-06-30 15:01:57,803][ INFO][PID:932732] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5341/srpm-builds/10664281/backend.log' as PID 1003288