[2026-07-12 18:13:36,129][ INFO][PID:2283622] Marking build as starting [2026-07-12 18:13:36,177][ INFO][PID:2283622] Checking for cancel request [2026-07-12 18:13:36,178][ INFO][PID:2283622] VM allocation process starts [2026-07-12 18:13:36,190][ INFO][PID:2283622] Trying to allocate VM: ResallocHost, ticket_id=3870265, requested_tags=['arch_x86_64', 'copr_builder'] [2026-07-12 18:13:39,204][ INFO][PID:2283622] Allocated host ResallocHost, ticket_id=3870265, hostname=98.87.12.124, name=aws_x86_64_reserved_prod_13038775_20260712_180845, requested_tags=['arch_x86_64', 'copr_builder'] [2026-07-12 18:13:39,205][ INFO][PID:2283622] Allocating ssh connection to builder [2026-07-12 18:13:39,205][ INFO][PID:2283622] Checking that builder machine is OK [2026-07-12 18:13:39,519][ INFO][PID:2283622] Installed copr-rpmbuild version: 1.8 [2026-07-12 18:13:39,519][ INFO][PID:2283622] Running remote command: copr-builder-ready srpm-builds [2026-07-12 18:13:39,697][ INFO][PID:2283622] Red Hat subscription not needed for srpm-builds Builder is ready to be used [2026-07-12 18:13:39,697][ INFO][PID:2283622] Filling build.info file with builder info [2026-07-12 18:13:39,698][ INFO][PID:2283622] Checking for cancel request [2026-07-12 18:13:39,699][ INFO][PID:2283622] 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:5405", "submitter": null, "ended_on": null, "started_on": 1783880019.699512, "submitted_on": null, "status": 3, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10711340", "build_id": 10711340, "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\": \"tmp8cyq95vy\", \"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--73a42421-7c66-46f1-a704-86ea373d2156", "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:5405", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5405", "result_dir": "10711340", "built_packages": "", "tags": [ "arch_x86_64" ], "rpmeta_prediction": null, "id": 10711340, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2026-07-12 18:13:39,739][ INFO][PID:2283622] Sending fedora-messaging bus message in build.start [2026-07-12 18:13:40,184][ INFO][PID:2283622] Sending fedora-messaging bus message in chroot.start [2026-07-12 18:13:40,313][ INFO][PID:2283622] Starting remote build: copr-rpmbuild --verbose --drop-resultdir --srpm --task-url https://copr.fedorainfracloud.org/backend/get-srpm-build-task/10711340 --detached [2026-07-12 18:13:40,852][ INFO][PID:2283622] The copr-rpmbuild seems started, per: stdout: stderr: Warning: Permanently added '98.87.12.124' (ED25519) to the list of known hosts. [2026-07-12 18:13:40,854][ INFO][PID:2283622] Downloading the builder-live.log file, attempt 1 [2026-07-12 18:13:40,856][ INFO][PID:2283622] Popen command started: ssh -F /home/copr/.ssh/config mockbuilder@98.87.12.124 copr-rpmbuild-log [2026-07-12 18:13:45,873][ INFO][PID:2283622] Periodic builder liveness probe: alive [2026-07-12 18:13:45,874][ INFO][PID:2283622] Checking for cancel request [2026-07-12 18:13:50,875][ INFO][PID:2283622] Checking for cancel request [2026-07-12 18:13:55,876][ INFO][PID:2283622] Checking for cancel request [2026-07-12 18:14:00,878][ INFO][PID:2283622] Checking for cancel request [2026-07-12 18:14:05,879][ INFO][PID:2283622] Checking for cancel request [2026-07-12 18:14:10,880][ INFO][PID:2283622] Checking for cancel request [2026-07-12 18:14:15,882][ INFO][PID:2283622] Checking for cancel request [2026-07-12 18:14:20,883][ INFO][PID:2283622] Checking for cancel request [2026-07-12 18:14:25,884][ INFO][PID:2283622] Checking for cancel request [2026-07-12 18:14:30,885][ INFO][PID:2283622] Checking for cancel request [2026-07-12 18:14:35,887][ INFO][PID:2283622] Checking for cancel request [2026-07-12 18:14:40,888][ INFO][PID:2283622] Checking for cancel request [2026-07-12 18:14:45,889][ INFO][PID:2283622] Checking for cancel request [2026-07-12 18:14:50,891][ INFO][PID:2283622] Checking for cancel request [2026-07-12 18:14:55,892][ INFO][PID:2283622] Checking for cancel request [2026-07-12 18:15:00,922][ INFO][PID:2283622] Checking for cancel request [2026-07-12 18:15:05,923][ INFO][PID:2283622] Checking for cancel request [2026-07-12 18:15:10,925][ INFO][PID:2283622] Checking for cancel request [2026-07-12 18:15:15,926][ INFO][PID:2283622] Checking for cancel request [2026-07-12 18:15:20,927][ INFO][PID:2283622] Checking for cancel request [2026-07-12 18:15:26,104][ INFO][PID:2283622] Checking for cancel request [2026-07-12 18:15:31,105][ INFO][PID:2283622] Checking for cancel request [2026-07-12 18:15:36,106][ INFO][PID:2283622] Checking for cancel request [2026-07-12 18:15:41,108][ INFO][PID:2283622] Checking for cancel request [2026-07-12 18:15:46,221][ INFO][PID:2283622] Checking for cancel request [2026-07-12 18:15:51,222][ INFO][PID:2283622] Checking for cancel request [2026-07-12 18:15:56,223][ INFO][PID:2283622] Checking for cancel request [2026-07-12 18:16:01,225][ INFO][PID:2283622] Checking for cancel request [2026-07-12 18:16:06,226][ INFO][PID:2283622] Checking for cancel request [2026-07-12 18:16:11,228][ INFO][PID:2283622] Checking for cancel request [2026-07-12 18:16:16,229][ INFO][PID:2283622] Checking for cancel request [2026-07-12 18:16:21,230][ INFO][PID:2283622] Checking for cancel request [2026-07-12 18:16:26,250][ INFO][PID:2283622] Checking for cancel request [2026-07-12 18:16:31,393][ INFO][PID:2283622] Checking for cancel request [2026-07-12 18:16:36,394][ INFO][PID:2283622] Checking for cancel request [2026-07-12 18:16:41,395][ INFO][PID:2283622] Checking for cancel request [2026-07-12 18:16:46,396][ INFO][PID:2283622] Checking for cancel request [2026-07-12 18:16:51,501][ INFO][PID:2283622] Checking for cancel request [2026-07-12 18:16:56,504][ INFO][PID:2283622] Checking for cancel request [2026-07-12 18:17:01,505][ INFO][PID:2283622] Checking for cancel request [2026-07-12 18:17:06,507][ INFO][PID:2283622] Checking for cancel request [2026-07-12 18:17:11,562][ INFO][PID:2283622] Checking for cancel request [2026-07-12 18:17:16,575][ INFO][PID:2283622] Checking for cancel request [2026-07-12 18:17:21,577][ INFO][PID:2283622] Checking for cancel request [2026-07-12 18:17:26,585][ INFO][PID:2283622] Checking for cancel request [2026-07-12 18:17:31,616][ INFO][PID:2283622] Checking for cancel request [2026-07-12 18:17:36,677][ INFO][PID:2283622] Checking for cancel request [2026-07-12 18:17:41,924][ INFO][PID:2283622] Checking for cancel request [2026-07-12 18:17:46,952][ INFO][PID:2283622] Checking for cancel request [2026-07-12 18:17:51,954][ INFO][PID:2283622] Checking for cancel request [2026-07-12 18:17:56,974][ INFO][PID:2283622] Checking for cancel request [2026-07-12 18:18:01,976][ INFO][PID:2283622] Checking for cancel request [2026-07-12 18:18:06,998][ INFO][PID:2283622] Checking for cancel request [2026-07-12 18:18:12,018][ INFO][PID:2283622] Checking for cancel request [2026-07-12 18:18:17,048][ INFO][PID:2283622] Checking for cancel request [2026-07-12 18:18:22,053][ INFO][PID:2283622] Checking for cancel request [2026-07-12 18:18:27,236][ INFO][PID:2283622] Checking for cancel request [2026-07-12 18:18:32,341][ INFO][PID:2283622] Checking for cancel request [2026-07-12 18:18:37,343][ INFO][PID:2283622] Checking for cancel request [2026-07-12 18:18:42,465][ INFO][PID:2283622] Checking for cancel request [2026-07-12 18:18:47,603][ INFO][PID:2283622] Checking for cancel request [2026-07-12 18:18:52,604][ INFO][PID:2283622] Checking for cancel request [2026-07-12 18:18:57,786][ INFO][PID:2283622] Checking for cancel request [2026-07-12 18:19:02,788][ INFO][PID:2283622] Checking for cancel request [2026-07-12 18:19:07,789][ INFO][PID:2283622] Checking for cancel request [2026-07-12 18:19:12,790][ INFO][PID:2283622] Checking for cancel request [2026-07-12 18:19:17,803][ INFO][PID:2283622] Checking for cancel request [2026-07-12 18:19:22,804][ INFO][PID:2283622] Checking for cancel request [2026-07-12 18:19:27,896][ INFO][PID:2283622] Checking for cancel request [2026-07-12 18:19:32,897][ INFO][PID:2283622] Checking for cancel request [2026-07-12 18:19:37,949][ INFO][PID:2283622] Checking for cancel request [2026-07-12 18:19:43,110][ INFO][PID:2283622] Checking for cancel request [2026-07-12 18:19:48,135][ INFO][PID:2283622] Checking for cancel request [2026-07-12 18:19:53,179][ INFO][PID:2283622] Checking for cancel request [2026-07-12 18:19:58,198][ INFO][PID:2283622] Checking for cancel request [2026-07-12 18:20:03,199][ INFO][PID:2283622] Checking for cancel request [2026-07-12 18:20:08,389][ INFO][PID:2283622] Checking for cancel request [2026-07-12 18:20:13,390][ INFO][PID:2283622] Checking for cancel request [2026-07-12 18:20:18,430][ INFO][PID:2283622] Checking for cancel request [2026-07-12 18:20:23,574][ INFO][PID:2283622] Checking for cancel request [2026-07-12 18:20:28,575][ INFO][PID:2283622] Checking for cancel request [2026-07-12 18:20:33,671][ INFO][PID:2283622] Checking for cancel request [2026-07-12 18:20:38,672][ INFO][PID:2283622] Checking for cancel request [2026-07-12 18:20:43,673][ INFO][PID:2283622] Checking for cancel request [2026-07-12 18:20:48,716][ INFO][PID:2283622] Checking for cancel request [2026-07-12 18:20:53,781][ INFO][PID:2283622] Checking for cancel request [2026-07-12 18:20:58,801][ INFO][PID:2283622] Checking for cancel request [2026-07-12 18:21:03,830][ INFO][PID:2283622] Checking for cancel request [2026-07-12 18:21:08,832][ INFO][PID:2283622] Checking for cancel request [2026-07-12 18:21:13,833][ INFO][PID:2283622] Checking for cancel request [2026-07-12 18:21:18,834][ INFO][PID:2283622] Checking for cancel request [2026-07-12 18:21:23,835][ INFO][PID:2283622] Checking for cancel request [2026-07-12 18:21:28,836][ INFO][PID:2283622] Checking for cancel request [2026-07-12 18:21:33,837][ INFO][PID:2283622] Checking for cancel request [2026-07-12 18:21:38,839][ INFO][PID:2283622] Checking for cancel request [2026-07-12 18:21:43,840][ INFO][PID:2283622] Checking for cancel request [2026-07-12 18:21:48,841][ INFO][PID:2283622] Checking for cancel request [2026-07-12 18:21:53,843][ INFO][PID:2283622] Checking for cancel request [2026-07-12 18:21:58,844][ INFO][PID:2283622] Checking for cancel request [2026-07-12 18:22:03,845][ INFO][PID:2283622] Checking for cancel request [2026-07-12 18:22:08,847][ INFO][PID:2283622] Checking for cancel request [2026-07-12 18:22:13,848][ INFO][PID:2283622] Checking for cancel request [2026-07-12 18:22:18,849][ INFO][PID:2283622] Checking for cancel request [2026-07-12 18:22:23,851][ INFO][PID:2283622] Checking for cancel request [2026-07-12 18:22:28,852][ INFO][PID:2283622] Checking for cancel request [2026-07-12 18:22:33,853][ INFO][PID:2283622] Checking for cancel request [2026-07-12 18:22:38,854][ INFO][PID:2283622] Checking for cancel request [2026-07-12 18:22:43,856][ INFO][PID:2283622] Checking for cancel request [2026-07-12 18:22:44,709][ INFO][PID:2283622] Downloading results from builder [2026-07-12 18:22:44,722][ INFO][PID:2283622] rsyncing of mockbuilder@98.87.12.124:/var/lib/copr-rpmbuild/results/ to /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5405/srpm-builds/10711340 started [2026-07-12 18:22:44,741][ INFO][PID:2283622] Popen command started: /usr/bin/rsync -rltDvH --chmod=D755,F644 -e 'ssh -F /home/copr/.ssh/config' mockbuilder@98.87.12.124:/var/lib/copr-rpmbuild/results/ /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5405/srpm-builds/10711340/ &> /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5405/srpm-builds/10711340/build-10711340.rsync.log [2026-07-12 18:22:49,304][ INFO][PID:2283622] rsyncing finished. [2026-07-12 18:22:49,346][ INFO][PID:2283622] VM Release request [2026-07-12 18:22:49,636][ INFO][PID:2283622] Searching for 'success' file in resultdir [2026-07-12 18:22:49,666][ INFO][PID:2283622] Getting build details [2026-07-12 18:22:49,668][ INFO][PID:2283622] Retrieving SRPM info from /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5405/srpm-builds/10711340 [2026-07-12 18:22:49,708][ INFO][PID:2283622] SRPM URL: https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5405/srpm-builds/10711340/Sunshine-0.0.5405-1.src.rpm [2026-07-12 18:22:49,710][ INFO][PID:2283622] build details: {'srpm_url': 'https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5405/srpm-builds/10711340/Sunshine-0.0.5405-1.src.rpm', 'pkg_name': 'Sunshine', 'pkg_version': '0.0.5405-1'} [2026-07-12 18:22:49,716][ INFO][PID:2283622] Finished build: id=10711340 failed=False timeout=108000 destdir=/var/lib/copr/public_html/results/lizardbyte/pulls:pr:5405 chroot=srpm-builds [2026-07-12 18:22:49,762][ INFO][PID:2283622] Worker succeeded build, took 550.0631408691406 [2026-07-12 18:22:49,771][ INFO][PID:2283622] 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:5405", "submitter": null, "ended_on": 1783880569.7626529, "started_on": 1783880019.699512, "submitted_on": null, "status": 1, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10711340", "build_id": 10711340, "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\": \"tmp8cyq95vy\", \"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:5405/srpm-builds/10711340/Sunshine-0.0.5405-1.src.rpm", "uses_devel_repo": null, "sandbox": "lizardbyte/pulls--73a42421-7c66-46f1-a704-86ea373d2156", "results": { "architecture_specific_tags": { "fedora-43": {}, "fedora-44": {}, "fedora-rawhide": {}, "opensuse-leap-15.6": {} }, "name": "Sunshine", "epoch": null, "version": "0.0.5405", "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:5405", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5405", "result_dir": "10711340", "built_packages": "", "tags": [ "arch_x86_64" ], "rpmeta_prediction": null, "pkg_version": "0.0.5405-1", "id": 10711340, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2026-07-12 18:22:50,201][ INFO][PID:2283622] Sending fedora-messaging bus message in build.end [2026-07-12 18:22:50,642][ INFO][PID:2283622] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5405/srpm-builds/10711340/builder-live.log by gzip [2026-07-12 18:22:50,664][ INFO][PID:2283622] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5405/srpm-builds/10711340/builder-live.log' as PID 2316910 [2026-07-12 18:22:50,719][ INFO][PID:2283622] Finished after 0 seconds with exit code 0 (gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5405/srpm-builds/10711340/builder-live.log) [2026-07-12 18:22:50,720][ INFO][PID:2283622] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5405/srpm-builds/10711340/backend.log by gzip [2026-07-12 18:22:50,722][ INFO][PID:2283622] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5405/srpm-builds/10711340/backend.log' as PID 2316911