[2026-05-12 22:32:49,566][ INFO][PID:953346] Marking build as starting [2026-05-12 22:32:49,603][ INFO][PID:953346] Checking for cancel request [2026-05-12 22:32:49,604][ INFO][PID:953346] VM allocation process starts [2026-05-12 22:32:49,613][ INFO][PID:953346] Trying to allocate VM: ResallocHost, ticket_id=2857134, requested_tags=['arch_x86_64', 'copr_builder'] [2026-05-12 22:32:52,657][ INFO][PID:953346] Allocated host ResallocHost, ticket_id=2857134, hostname=34.236.191.113, name=aws_x86_64_reserved_prod_08781491_20260512_221329, requested_tags=['arch_x86_64', 'copr_builder'] [2026-05-12 22:32:52,658][ INFO][PID:953346] Allocating ssh connection to builder [2026-05-12 22:32:52,659][ INFO][PID:953346] Checking that builder machine is OK [2026-05-12 22:32:53,036][ INFO][PID:953346] Installed copr-rpmbuild version: 1.8 [2026-05-12 22:32:53,037][ INFO][PID:953346] Running remote command: copr-builder-ready srpm-builds [2026-05-12 22:32:53,265][ INFO][PID:953346] Red Hat subscription not needed for srpm-builds Builder is ready to be used [2026-05-12 22:32:53,266][ INFO][PID:953346] Filling build.info file with builder info [2026-05-12 22:32:53,267][ INFO][PID:953346] Checking for cancel request [2026-05-12 22:32:53,268][ INFO][PID:953346] 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:5103", "submitter": null, "ended_on": null, "started_on": 1778625173.2684262, "submitted_on": null, "status": 3, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10451978", "build_id": 10451978, "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\": \"tmpewc8zjqi\", \"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--281974b2-f6b4-4b3a-826d-df8804cf3b86", "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:5103", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5103", "result_dir": "10451978", "built_packages": "", "tags": [ "arch_x86_64" ], "id": 10451978, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2026-05-12 22:32:53,309][ INFO][PID:953346] Sending fedora-messaging bus message in build.start [2026-05-12 22:32:53,770][ INFO][PID:953346] Sending fedora-messaging bus message in chroot.start [2026-05-12 22:32:53,796][ INFO][PID:953346] Starting remote build: copr-rpmbuild --verbose --drop-resultdir --srpm --task-url https://copr.fedorainfracloud.org/backend/get-srpm-build-task/10451978 --detached [2026-05-12 22:32:54,279][ INFO][PID:953346] The copr-rpmbuild seems started, per: stdout: stderr: Warning: Permanently added '34.236.191.113' (ED25519) to the list of known hosts. [2026-05-12 22:32:54,280][ INFO][PID:953346] Downloading the builder-live.log file, attempt 1 [2026-05-12 22:32:54,282][ INFO][PID:953346] Popen command started: ssh -F /home/copr/.ssh/config mockbuilder@34.236.191.113 copr-rpmbuild-log [2026-05-12 22:32:59,288][ INFO][PID:953346] Periodic builder liveness probe: alive [2026-05-12 22:32:59,291][ INFO][PID:953346] Checking for cancel request [2026-05-12 22:33:04,293][ INFO][PID:953346] Checking for cancel request [2026-05-12 22:33:09,294][ INFO][PID:953346] Checking for cancel request [2026-05-12 22:33:14,296][ INFO][PID:953346] Checking for cancel request [2026-05-12 22:33:19,297][ INFO][PID:953346] Checking for cancel request [2026-05-12 22:33:24,298][ INFO][PID:953346] Checking for cancel request [2026-05-12 22:33:29,299][ INFO][PID:953346] Checking for cancel request [2026-05-12 22:33:34,301][ INFO][PID:953346] Checking for cancel request [2026-05-12 22:33:39,302][ INFO][PID:953346] Checking for cancel request [2026-05-12 22:33:44,303][ INFO][PID:953346] Checking for cancel request [2026-05-12 22:33:49,305][ INFO][PID:953346] Checking for cancel request [2026-05-12 22:33:54,306][ INFO][PID:953346] Checking for cancel request [2026-05-12 22:33:59,307][ INFO][PID:953346] Checking for cancel request [2026-05-12 22:34:04,308][ INFO][PID:953346] Checking for cancel request [2026-05-12 22:34:09,309][ INFO][PID:953346] Checking for cancel request [2026-05-12 22:34:14,311][ INFO][PID:953346] Checking for cancel request [2026-05-12 22:34:19,312][ INFO][PID:953346] Checking for cancel request [2026-05-12 22:34:24,313][ INFO][PID:953346] Checking for cancel request [2026-05-12 22:34:29,315][ INFO][PID:953346] Checking for cancel request [2026-05-12 22:34:34,316][ INFO][PID:953346] Checking for cancel request [2026-05-12 22:34:39,317][ INFO][PID:953346] Checking for cancel request [2026-05-12 22:34:44,319][ INFO][PID:953346] Checking for cancel request [2026-05-12 22:34:49,320][ INFO][PID:953346] Checking for cancel request [2026-05-12 22:34:54,321][ INFO][PID:953346] Checking for cancel request [2026-05-12 22:34:59,323][ INFO][PID:953346] Checking for cancel request [2026-05-12 22:35:04,324][ INFO][PID:953346] Checking for cancel request [2026-05-12 22:35:09,325][ INFO][PID:953346] Checking for cancel request [2026-05-12 22:35:14,326][ INFO][PID:953346] Checking for cancel request [2026-05-12 22:35:19,327][ INFO][PID:953346] Checking for cancel request [2026-05-12 22:35:24,329][ INFO][PID:953346] Checking for cancel request [2026-05-12 22:35:29,330][ INFO][PID:953346] Checking for cancel request [2026-05-12 22:35:34,331][ INFO][PID:953346] Checking for cancel request [2026-05-12 22:35:39,332][ INFO][PID:953346] Checking for cancel request [2026-05-12 22:35:44,333][ INFO][PID:953346] Checking for cancel request [2026-05-12 22:35:49,334][ INFO][PID:953346] Checking for cancel request [2026-05-12 22:35:54,336][ INFO][PID:953346] Checking for cancel request [2026-05-12 22:35:59,337][ INFO][PID:953346] Checking for cancel request [2026-05-12 22:36:04,338][ INFO][PID:953346] Checking for cancel request [2026-05-12 22:36:09,339][ INFO][PID:953346] Checking for cancel request [2026-05-12 22:36:14,340][ INFO][PID:953346] Checking for cancel request [2026-05-12 22:36:19,342][ INFO][PID:953346] Checking for cancel request [2026-05-12 22:36:24,343][ INFO][PID:953346] Checking for cancel request [2026-05-12 22:36:29,344][ INFO][PID:953346] Checking for cancel request [2026-05-12 22:36:34,527][ INFO][PID:953346] Checking for cancel request [2026-05-12 22:36:39,528][ INFO][PID:953346] Checking for cancel request [2026-05-12 22:36:44,529][ INFO][PID:953346] Checking for cancel request [2026-05-12 22:36:49,531][ INFO][PID:953346] Checking for cancel request [2026-05-12 22:36:54,532][ INFO][PID:953346] Checking for cancel request [2026-05-12 22:36:59,533][ INFO][PID:953346] Checking for cancel request [2026-05-12 22:37:04,534][ INFO][PID:953346] Checking for cancel request [2026-05-12 22:37:09,535][ INFO][PID:953346] Checking for cancel request [2026-05-12 22:37:14,537][ INFO][PID:953346] Checking for cancel request [2026-05-12 22:37:20,295][ INFO][PID:953346] Checking for cancel request [2026-05-12 22:37:25,296][ INFO][PID:953346] Checking for cancel request [2026-05-12 22:37:30,297][ INFO][PID:953346] Checking for cancel request [2026-05-12 22:37:35,299][ INFO][PID:953346] Checking for cancel request [2026-05-12 22:37:40,300][ INFO][PID:953346] Checking for cancel request [2026-05-12 22:37:45,301][ INFO][PID:953346] Checking for cancel request [2026-05-12 22:37:50,302][ INFO][PID:953346] Checking for cancel request [2026-05-12 22:37:55,303][ INFO][PID:953346] Checking for cancel request [2026-05-12 22:38:00,305][ INFO][PID:953346] Checking for cancel request [2026-05-12 22:38:05,306][ INFO][PID:953346] Checking for cancel request [2026-05-12 22:38:10,307][ INFO][PID:953346] Checking for cancel request [2026-05-12 22:38:15,308][ INFO][PID:953346] Checking for cancel request [2026-05-12 22:38:20,309][ INFO][PID:953346] Checking for cancel request [2026-05-12 22:38:25,310][ INFO][PID:953346] Checking for cancel request [2026-05-12 22:38:30,312][ INFO][PID:953346] Checking for cancel request [2026-05-12 22:38:35,313][ INFO][PID:953346] Checking for cancel request [2026-05-12 22:38:40,314][ INFO][PID:953346] Checking for cancel request [2026-05-12 22:38:45,484][ INFO][PID:953346] Checking for cancel request [2026-05-12 22:38:50,896][ INFO][PID:953346] Checking for cancel request [2026-05-12 22:38:56,028][ INFO][PID:953346] Checking for cancel request [2026-05-12 22:39:01,032][ INFO][PID:953346] Checking for cancel request [2026-05-12 22:39:06,035][ INFO][PID:953346] Checking for cancel request [2026-05-12 22:39:11,038][ INFO][PID:953346] Checking for cancel request [2026-05-12 22:39:16,040][ INFO][PID:953346] Checking for cancel request [2026-05-12 22:39:21,042][ INFO][PID:953346] Checking for cancel request [2026-05-12 22:39:26,043][ INFO][PID:953346] Checking for cancel request [2026-05-12 22:39:31,044][ INFO][PID:953346] Checking for cancel request [2026-05-12 22:39:36,045][ INFO][PID:953346] Checking for cancel request [2026-05-12 22:39:41,047][ INFO][PID:953346] Checking for cancel request [2026-05-12 22:39:46,050][ INFO][PID:953346] Checking for cancel request [2026-05-12 22:39:51,051][ INFO][PID:953346] Checking for cancel request [2026-05-12 22:39:56,053][ INFO][PID:953346] Checking for cancel request [2026-05-12 22:40:01,057][ INFO][PID:953346] Checking for cancel request [2026-05-12 22:40:06,058][ INFO][PID:953346] Checking for cancel request [2026-05-12 22:40:11,061][ INFO][PID:953346] Checking for cancel request [2026-05-12 22:40:16,062][ INFO][PID:953346] Checking for cancel request [2026-05-12 22:40:21,064][ INFO][PID:953346] Checking for cancel request [2026-05-12 22:40:26,065][ INFO][PID:953346] Checking for cancel request [2026-05-12 22:40:31,071][ INFO][PID:953346] Checking for cancel request [2026-05-12 22:40:36,142][ INFO][PID:953346] Checking for cancel request [2026-05-12 22:40:41,144][ INFO][PID:953346] Checking for cancel request [2026-05-12 22:40:46,146][ INFO][PID:953346] Checking for cancel request [2026-05-12 22:40:51,148][ INFO][PID:953346] Checking for cancel request [2026-05-12 22:40:56,153][ INFO][PID:953346] Checking for cancel request [2026-05-12 22:41:01,177][ INFO][PID:953346] Checking for cancel request [2026-05-12 22:41:06,185][ INFO][PID:953346] Checking for cancel request [2026-05-12 22:41:08,592][ INFO][PID:953346] Downloading results from builder [2026-05-12 22:41:08,593][ INFO][PID:953346] rsyncing of mockbuilder@34.236.191.113:/var/lib/copr-rpmbuild/results/ to /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5103/srpm-builds/10451978 started [2026-05-12 22:41:08,594][ INFO][PID:953346] Popen command started: /usr/bin/rsync -rltDvH --chmod=D755,F644 -e 'ssh -F /home/copr/.ssh/config' mockbuilder@34.236.191.113:/var/lib/copr-rpmbuild/results/ /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5103/srpm-builds/10451978/ &> /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5103/srpm-builds/10451978/build-10451978.rsync.log [2026-05-12 22:41:13,231][ INFO][PID:953346] rsyncing finished. [2026-05-12 22:41:13,232][ INFO][PID:953346] VM Release request [2026-05-12 22:41:13,246][ INFO][PID:953346] Searching for 'success' file in resultdir [2026-05-12 22:41:13,247][ INFO][PID:953346] Getting build details [2026-05-12 22:41:13,248][ INFO][PID:953346] Retrieving SRPM info from /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5103/srpm-builds/10451978 [2026-05-12 22:41:13,248][ INFO][PID:953346] SRPM URL: https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5103/srpm-builds/10451978/Sunshine-0.0.5103-1.src.rpm [2026-05-12 22:41:13,249][ INFO][PID:953346] build details: {'srpm_url': 'https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5103/srpm-builds/10451978/Sunshine-0.0.5103-1.src.rpm', 'pkg_name': 'Sunshine', 'pkg_version': '0.0.5103-1'} [2026-05-12 22:41:13,249][ INFO][PID:953346] Finished build: id=10451978 failed=False timeout=108000 destdir=/var/lib/copr/public_html/results/lizardbyte/pulls:pr:5103 chroot=srpm-builds [2026-05-12 22:41:13,251][ INFO][PID:953346] Worker succeeded build, took 499.98293828964233 [2026-05-12 22:41:13,252][ INFO][PID:953346] 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:5103", "submitter": null, "ended_on": 1778625673.2513645, "started_on": 1778625173.2684262, "submitted_on": null, "status": 1, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10451978", "build_id": 10451978, "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\": \"tmpewc8zjqi\", \"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:5103/srpm-builds/10451978/Sunshine-0.0.5103-1.src.rpm", "uses_devel_repo": null, "sandbox": "lizardbyte/pulls--281974b2-f6b4-4b3a-826d-df8804cf3b86", "results": { "architecture_specific_tags": { "fedora-42": {}, "fedora-43": {}, "fedora-44": {}, "fedora-rawhide": {}, "opensuse-leap-15.6": {} }, "name": "Sunshine", "epoch": null, "version": "0.0.5103", "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:5103", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5103", "result_dir": "10451978", "built_packages": "", "tags": [ "arch_x86_64" ], "pkg_version": "0.0.5103-1", "id": 10451978, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2026-05-12 22:41:13,303][ INFO][PID:953346] Sending fedora-messaging bus message in build.end [2026-05-12 22:41:13,328][ INFO][PID:953346] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5103/srpm-builds/10451978/builder-live.log by gzip [2026-05-12 22:41:13,330][ INFO][PID:953346] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5103/srpm-builds/10451978/builder-live.log' as PID 986852 [2026-05-12 22:41:13,359][ INFO][PID:953346] Finished after 0 seconds with exit code 0 (gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5103/srpm-builds/10451978/builder-live.log) [2026-05-12 22:41:13,360][ INFO][PID:953346] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5103/srpm-builds/10451978/backend.log by gzip [2026-05-12 22:41:13,361][ INFO][PID:953346] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5103/srpm-builds/10451978/backend.log' as PID 986855