[2026-06-12 06:14:56,901][ INFO][PID:413938] Marking build as starting [2026-06-12 06:14:56,942][ INFO][PID:413938] Checking for cancel request [2026-06-12 06:14:56,944][ INFO][PID:413938] VM allocation process starts [2026-06-12 06:14:57,032][ INFO][PID:413938] Trying to allocate VM: ResallocHost, ticket_id=3401503, requested_tags=['arch_x86_64', 'copr_builder'] [2026-06-12 06:15:00,090][ INFO][PID:413938] Allocated host ResallocHost, ticket_id=3401503, hostname=44.220.44.191, name=aws_x86_64_reserved_prod_11894955_20260612_061035, requested_tags=['arch_x86_64', 'copr_builder'] [2026-06-12 06:15:00,091][ INFO][PID:413938] Allocating ssh connection to builder [2026-06-12 06:15:00,093][ INFO][PID:413938] Checking that builder machine is OK [2026-06-12 06:15:00,521][ INFO][PID:413938] Installed copr-rpmbuild version: 1.8 [2026-06-12 06:15:00,621][ INFO][PID:413938] Running remote command: copr-builder-ready srpm-builds [2026-06-12 06:15:00,835][ INFO][PID:413938] Red Hat subscription not needed for srpm-builds Builder is ready to be used [2026-06-12 06:15:00,836][ INFO][PID:413938] Filling build.info file with builder info [2026-06-12 06:15:00,841][ INFO][PID:413938] Checking for cancel request [2026-06-12 06:15:00,842][ INFO][PID:413938] 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:5283", "submitter": null, "ended_on": null, "started_on": 1781244900.8426178, "submitted_on": null, "status": 3, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10592972", "build_id": 10592972, "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\": \"tmp8vxlbj5o\", \"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--57b49f7f-e2b0-4303-8dfe-b491d810a882", "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:5283", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5283", "result_dir": "10592972", "built_packages": "", "tags": [ "arch_x86_64" ], "rpmeta_prediction": null, "id": 10592972, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2026-06-12 06:15:00,899][ INFO][PID:413938] Sending fedora-messaging bus message in build.start [2026-06-12 06:15:01,892][ INFO][PID:413938] Sending fedora-messaging bus message in chroot.start [2026-06-12 06:15:01,942][ INFO][PID:413938] Starting remote build: copr-rpmbuild --verbose --drop-resultdir --srpm --task-url https://copr.fedorainfracloud.org/backend/get-srpm-build-task/10592972 --detached [2026-06-12 06:15:02,706][ INFO][PID:413938] The copr-rpmbuild seems started, per: stdout: stderr: Warning: Permanently added '44.220.44.191' (ED25519) to the list of known hosts. [2026-06-12 06:15:02,708][ INFO][PID:413938] Downloading the builder-live.log file, attempt 1 [2026-06-12 06:15:02,712][ INFO][PID:413938] Popen command started: ssh -F /home/copr/.ssh/config mockbuilder@44.220.44.191 copr-rpmbuild-log [2026-06-12 06:15:07,736][ INFO][PID:413938] Periodic builder liveness probe: alive [2026-06-12 06:15:07,742][ INFO][PID:413938] Checking for cancel request [2026-06-12 06:15:12,754][ INFO][PID:413938] Checking for cancel request [2026-06-12 06:15:17,755][ INFO][PID:413938] Checking for cancel request [2026-06-12 06:15:22,757][ INFO][PID:413938] Checking for cancel request [2026-06-12 06:15:27,758][ INFO][PID:413938] Checking for cancel request [2026-06-12 06:15:32,760][ INFO][PID:413938] Checking for cancel request [2026-06-12 06:15:37,764][ INFO][PID:413938] Checking for cancel request [2026-06-12 06:15:42,767][ INFO][PID:413938] Checking for cancel request [2026-06-12 06:15:47,770][ INFO][PID:413938] Checking for cancel request [2026-06-12 06:15:52,772][ INFO][PID:413938] Checking for cancel request [2026-06-12 06:15:57,774][ INFO][PID:413938] Checking for cancel request [2026-06-12 06:16:02,778][ INFO][PID:413938] Checking for cancel request [2026-06-12 06:16:07,780][ INFO][PID:413938] Checking for cancel request [2026-06-12 06:16:12,781][ INFO][PID:413938] Checking for cancel request [2026-06-12 06:16:17,783][ INFO][PID:413938] Checking for cancel request [2026-06-12 06:16:22,784][ INFO][PID:413938] Checking for cancel request [2026-06-12 06:16:27,785][ INFO][PID:413938] Checking for cancel request [2026-06-12 06:16:32,786][ INFO][PID:413938] Checking for cancel request [2026-06-12 06:16:37,788][ INFO][PID:413938] Checking for cancel request [2026-06-12 06:16:42,789][ INFO][PID:413938] Checking for cancel request [2026-06-12 06:16:47,791][ INFO][PID:413938] Checking for cancel request [2026-06-12 06:16:52,792][ INFO][PID:413938] Checking for cancel request [2026-06-12 06:16:57,794][ INFO][PID:413938] Checking for cancel request [2026-06-12 06:17:02,795][ INFO][PID:413938] Checking for cancel request [2026-06-12 06:17:07,796][ INFO][PID:413938] Checking for cancel request [2026-06-12 06:17:12,798][ INFO][PID:413938] Checking for cancel request [2026-06-12 06:17:17,799][ INFO][PID:413938] Checking for cancel request [2026-06-12 06:17:22,801][ INFO][PID:413938] Checking for cancel request [2026-06-12 06:17:27,802][ INFO][PID:413938] Checking for cancel request [2026-06-12 06:17:32,804][ INFO][PID:413938] Checking for cancel request [2026-06-12 06:17:37,805][ INFO][PID:413938] Checking for cancel request [2026-06-12 06:17:42,807][ INFO][PID:413938] Checking for cancel request [2026-06-12 06:17:47,808][ INFO][PID:413938] Checking for cancel request [2026-06-12 06:17:52,810][ INFO][PID:413938] Checking for cancel request [2026-06-12 06:17:57,812][ INFO][PID:413938] Checking for cancel request [2026-06-12 06:18:02,813][ INFO][PID:413938] Checking for cancel request [2026-06-12 06:18:07,815][ INFO][PID:413938] Checking for cancel request [2026-06-12 06:18:12,816][ INFO][PID:413938] Checking for cancel request [2026-06-12 06:18:17,818][ INFO][PID:413938] Checking for cancel request [2026-06-12 06:18:22,819][ INFO][PID:413938] Checking for cancel request [2026-06-12 06:18:27,820][ INFO][PID:413938] Checking for cancel request [2026-06-12 06:18:32,822][ INFO][PID:413938] Checking for cancel request [2026-06-12 06:18:37,823][ INFO][PID:413938] Checking for cancel request [2026-06-12 06:18:42,824][ INFO][PID:413938] Checking for cancel request [2026-06-12 06:18:47,826][ INFO][PID:413938] Checking for cancel request [2026-06-12 06:18:52,827][ INFO][PID:413938] Checking for cancel request [2026-06-12 06:18:57,828][ INFO][PID:413938] Checking for cancel request [2026-06-12 06:19:02,830][ INFO][PID:413938] Checking for cancel request [2026-06-12 06:19:07,831][ INFO][PID:413938] Checking for cancel request [2026-06-12 06:19:12,832][ INFO][PID:413938] Checking for cancel request [2026-06-12 06:19:17,833][ INFO][PID:413938] Checking for cancel request [2026-06-12 06:19:22,835][ INFO][PID:413938] Checking for cancel request [2026-06-12 06:19:27,836][ INFO][PID:413938] Checking for cancel request [2026-06-12 06:19:32,837][ INFO][PID:413938] Checking for cancel request [2026-06-12 06:19:37,838][ INFO][PID:413938] Checking for cancel request [2026-06-12 06:19:42,840][ INFO][PID:413938] Checking for cancel request [2026-06-12 06:19:47,841][ INFO][PID:413938] Checking for cancel request [2026-06-12 06:19:52,842][ INFO][PID:413938] Checking for cancel request [2026-06-12 06:19:57,843][ INFO][PID:413938] Checking for cancel request [2026-06-12 06:20:02,844][ INFO][PID:413938] Checking for cancel request [2026-06-12 06:20:07,846][ INFO][PID:413938] Checking for cancel request [2026-06-12 06:20:12,847][ INFO][PID:413938] Checking for cancel request [2026-06-12 06:20:17,848][ INFO][PID:413938] Checking for cancel request [2026-06-12 06:20:22,849][ INFO][PID:413938] Checking for cancel request [2026-06-12 06:20:27,851][ INFO][PID:413938] Checking for cancel request [2026-06-12 06:20:32,852][ INFO][PID:413938] Checking for cancel request [2026-06-12 06:20:37,853][ INFO][PID:413938] Checking for cancel request [2026-06-12 06:20:42,854][ INFO][PID:413938] Checking for cancel request [2026-06-12 06:20:47,856][ INFO][PID:413938] Checking for cancel request [2026-06-12 06:20:52,857][ INFO][PID:413938] Checking for cancel request [2026-06-12 06:20:57,858][ INFO][PID:413938] Checking for cancel request [2026-06-12 06:21:02,859][ INFO][PID:413938] Checking for cancel request [2026-06-12 06:21:07,861][ INFO][PID:413938] Checking for cancel request [2026-06-12 06:21:12,862][ INFO][PID:413938] Checking for cancel request [2026-06-12 06:21:17,863][ INFO][PID:413938] Checking for cancel request [2026-06-12 06:21:22,865][ INFO][PID:413938] Checking for cancel request [2026-06-12 06:21:27,866][ INFO][PID:413938] Checking for cancel request [2026-06-12 06:21:32,867][ INFO][PID:413938] Checking for cancel request [2026-06-12 06:21:37,869][ INFO][PID:413938] Checking for cancel request [2026-06-12 06:21:42,870][ INFO][PID:413938] Checking for cancel request [2026-06-12 06:21:47,872][ INFO][PID:413938] Checking for cancel request [2026-06-12 06:21:52,873][ INFO][PID:413938] Checking for cancel request [2026-06-12 06:21:57,875][ INFO][PID:413938] Checking for cancel request [2026-06-12 06:22:02,876][ INFO][PID:413938] Checking for cancel request [2026-06-12 06:22:07,877][ INFO][PID:413938] Checking for cancel request [2026-06-12 06:22:12,878][ INFO][PID:413938] Checking for cancel request [2026-06-12 06:22:17,880][ INFO][PID:413938] Checking for cancel request [2026-06-12 06:22:22,882][ INFO][PID:413938] Checking for cancel request [2026-06-12 06:22:27,883][ INFO][PID:413938] Checking for cancel request [2026-06-12 06:22:32,884][ INFO][PID:413938] Checking for cancel request [2026-06-12 06:22:37,885][ INFO][PID:413938] Checking for cancel request [2026-06-12 06:22:42,886][ INFO][PID:413938] Checking for cancel request [2026-06-12 06:22:47,888][ INFO][PID:413938] Checking for cancel request [2026-06-12 06:22:52,889][ INFO][PID:413938] Checking for cancel request [2026-06-12 06:22:57,890][ INFO][PID:413938] Checking for cancel request [2026-06-12 06:23:02,892][ INFO][PID:413938] Checking for cancel request [2026-06-12 06:23:07,893][ INFO][PID:413938] Checking for cancel request [2026-06-12 06:23:12,894][ INFO][PID:413938] Checking for cancel request [2026-06-12 06:23:17,896][ INFO][PID:413938] Checking for cancel request [2026-06-12 06:23:22,897][ INFO][PID:413938] Checking for cancel request [2026-06-12 06:23:27,898][ INFO][PID:413938] Checking for cancel request [2026-06-12 06:23:28,615][ INFO][PID:413938] Downloading results from builder [2026-06-12 06:23:28,616][ INFO][PID:413938] rsyncing of mockbuilder@44.220.44.191:/var/lib/copr-rpmbuild/results/ to /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5283/srpm-builds/10592972 started [2026-06-12 06:23:28,617][ INFO][PID:413938] Popen command started: /usr/bin/rsync -rltDvH --chmod=D755,F644 -e 'ssh -F /home/copr/.ssh/config' mockbuilder@44.220.44.191:/var/lib/copr-rpmbuild/results/ /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5283/srpm-builds/10592972/ &> /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5283/srpm-builds/10592972/build-10592972.rsync.log [2026-06-12 06:23:32,926][ INFO][PID:413938] rsyncing finished. [2026-06-12 06:23:32,927][ INFO][PID:413938] VM Release request [2026-06-12 06:23:32,936][ INFO][PID:413938] Searching for 'success' file in resultdir [2026-06-12 06:23:32,937][ INFO][PID:413938] Getting build details [2026-06-12 06:23:32,938][ INFO][PID:413938] Retrieving SRPM info from /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5283/srpm-builds/10592972 [2026-06-12 06:23:32,938][ INFO][PID:413938] SRPM URL: https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5283/srpm-builds/10592972/Sunshine-0.0.5283-1.src.rpm [2026-06-12 06:23:32,939][ INFO][PID:413938] build details: {'srpm_url': 'https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5283/srpm-builds/10592972/Sunshine-0.0.5283-1.src.rpm', 'pkg_name': 'Sunshine', 'pkg_version': '0.0.5283-1'} [2026-06-12 06:23:32,940][ INFO][PID:413938] Finished build: id=10592972 failed=False timeout=108000 destdir=/var/lib/copr/public_html/results/lizardbyte/pulls:pr:5283 chroot=srpm-builds [2026-06-12 06:23:32,941][ INFO][PID:413938] Worker succeeded build, took 512.0992712974548 [2026-06-12 06:23:32,942][ INFO][PID:413938] 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:5283", "submitter": null, "ended_on": 1781245412.941889, "started_on": 1781244900.8426178, "submitted_on": null, "status": 1, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10592972", "build_id": 10592972, "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\": \"tmp8vxlbj5o\", \"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:5283/srpm-builds/10592972/Sunshine-0.0.5283-1.src.rpm", "uses_devel_repo": null, "sandbox": "lizardbyte/pulls--57b49f7f-e2b0-4303-8dfe-b491d810a882", "results": { "architecture_specific_tags": { "fedora-42": {}, "fedora-43": {}, "fedora-44": {}, "fedora-rawhide": {}, "opensuse-leap-15.6": {} }, "name": "Sunshine", "epoch": null, "version": "0.0.5283", "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:5283", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5283", "result_dir": "10592972", "built_packages": "", "tags": [ "arch_x86_64" ], "rpmeta_prediction": null, "pkg_version": "0.0.5283-1", "id": 10592972, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2026-06-12 06:23:32,995][ INFO][PID:413938] Sending fedora-messaging bus message in build.end [2026-06-12 06:23:33,020][ INFO][PID:413938] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5283/srpm-builds/10592972/builder-live.log by gzip [2026-06-12 06:23:33,021][ INFO][PID:413938] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5283/srpm-builds/10592972/builder-live.log' as PID 453746 [2026-06-12 06:23:33,044][ INFO][PID:413938] Finished after 0 seconds with exit code 0 (gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5283/srpm-builds/10592972/builder-live.log) [2026-06-12 06:23:33,045][ INFO][PID:413938] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5283/srpm-builds/10592972/backend.log by gzip [2026-06-12 06:23:33,046][ INFO][PID:413938] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5283/srpm-builds/10592972/backend.log' as PID 453747