[2026-04-07 20:53:33,334][ INFO][PID:3205567] Marking build as starting [2026-04-07 20:53:33,378][ INFO][PID:3205567] Checking for cancel request [2026-04-07 20:53:33,380][ INFO][PID:3205567] VM allocation process starts [2026-04-07 20:53:33,392][ INFO][PID:3205567] Trying to allocate VM: ResallocHost, ticket_id=2211810, requested_tags=['copr_builder', 'arch_x86_64'] [2026-04-07 20:53:36,407][ INFO][PID:3205567] Allocated host ResallocHost, ticket_id=2211810, hostname=44.210.15.27, name=aws_x86_64_spot_prod_05913211_20260407_205120, requested_tags=['copr_builder', 'arch_x86_64'] [2026-04-07 20:53:36,407][ INFO][PID:3205567] Allocating ssh connection to builder [2026-04-07 20:53:36,408][ INFO][PID:3205567] Checking that builder machine is OK [2026-04-07 20:53:36,747][ INFO][PID:3205567] Running remote command: copr-builder-ready srpm-builds [2026-04-07 20:53:36,965][ INFO][PID:3205567] Red Hat subscription not needed for srpm-builds Builder is ready to be used [2026-04-07 20:53:36,966][ INFO][PID:3205567] Filling build.info file with builder info [2026-04-07 20:53:37,028][ INFO][PID:3205567] Checking for cancel request [2026-04-07 20:53:37,029][ INFO][PID:3205567] 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": "beta", "project_dirname": "beta", "submitter": null, "ended_on": null, "started_on": 1775595217.0297887, "submitted_on": null, "status": 3, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10298819", "build_id": 10298819, "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\": \"tmpqphq40wf\", \"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/beta--0c45c7f1-c7c1-4d48-af48-55c978349c0b", "results": null, "appstream": false, "allow_user_ssh": null, "ssh_public_keys": null, "storage": null, "repos": [], "background": true, "destdir": "/var/lib/copr/public_html/results/lizardbyte/beta", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/lizardbyte/beta", "result_dir": "10298819", "built_packages": "", "tags": [ "arch_x86_64" ], "id": 10298819, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "beta", "vendor": "Fedora Project COPR (lizardbyte/beta)" } } ] } [2026-04-07 20:53:37,067][ INFO][PID:3205567] Sending fedora-messaging bus message in build.start [2026-04-07 20:53:37,624][ INFO][PID:3205567] Sending fedora-messaging bus message in chroot.start [2026-04-07 20:53:37,654][ INFO][PID:3205567] Starting remote build: copr-rpmbuild --verbose --drop-resultdir --srpm --task-url https://copr.fedorainfracloud.org/backend/get-srpm-build-task/10298819 --detached [2026-04-07 20:53:38,011][ INFO][PID:3205567] The copr-rpmbuild seems started, per: stdout: stderr: Warning: Permanently added '44.210.15.27' (ED25519) to the list of known hosts. [2026-04-07 20:53:38,079][ INFO][PID:3205567] Downloading the builder-live.log file, attempt 1 [2026-04-07 20:53:38,081][ INFO][PID:3205567] Popen command started: ssh -F /home/copr/.ssh/config mockbuilder@44.210.15.27 copr-rpmbuild-log [2026-04-07 20:53:43,090][ INFO][PID:3205567] Periodic builder liveness probe: alive [2026-04-07 20:53:43,090][ INFO][PID:3205567] Checking for cancel request [2026-04-07 20:53:48,092][ INFO][PID:3205567] Checking for cancel request [2026-04-07 20:53:53,093][ INFO][PID:3205567] Checking for cancel request [2026-04-07 20:53:58,133][ INFO][PID:3205567] Checking for cancel request [2026-04-07 20:54:03,134][ INFO][PID:3205567] Checking for cancel request [2026-04-07 20:54:08,135][ INFO][PID:3205567] Checking for cancel request [2026-04-07 20:54:13,136][ INFO][PID:3205567] Checking for cancel request [2026-04-07 20:54:18,218][ INFO][PID:3205567] Checking for cancel request [2026-04-07 20:54:23,219][ INFO][PID:3205567] Checking for cancel request [2026-04-07 20:54:28,220][ INFO][PID:3205567] Checking for cancel request [2026-04-07 20:54:33,222][ INFO][PID:3205567] Checking for cancel request [2026-04-07 20:54:38,224][ INFO][PID:3205567] Checking for cancel request [2026-04-07 20:54:43,225][ INFO][PID:3205567] Checking for cancel request [2026-04-07 20:54:48,226][ INFO][PID:3205567] Checking for cancel request [2026-04-07 20:54:53,227][ INFO][PID:3205567] Checking for cancel request [2026-04-07 20:54:58,229][ INFO][PID:3205567] Checking for cancel request [2026-04-07 20:55:03,230][ INFO][PID:3205567] Checking for cancel request [2026-04-07 20:55:08,231][ INFO][PID:3205567] Checking for cancel request [2026-04-07 20:55:13,472][ INFO][PID:3205567] Checking for cancel request [2026-04-07 20:55:18,474][ INFO][PID:3205567] Checking for cancel request [2026-04-07 20:55:23,475][ INFO][PID:3205567] Checking for cancel request [2026-04-07 20:55:29,468][ INFO][PID:3205567] Checking for cancel request [2026-04-07 20:55:34,498][ INFO][PID:3205567] Checking for cancel request [2026-04-07 20:55:39,515][ INFO][PID:3205567] Checking for cancel request [2026-04-07 20:55:44,521][ INFO][PID:3205567] Checking for cancel request [2026-04-07 20:55:49,601][ INFO][PID:3205567] Checking for cancel request [2026-04-07 20:55:54,648][ INFO][PID:3205567] Checking for cancel request [2026-04-07 20:55:59,649][ INFO][PID:3205567] Checking for cancel request [2026-04-07 20:56:04,650][ INFO][PID:3205567] Checking for cancel request [2026-04-07 20:56:09,651][ INFO][PID:3205567] Checking for cancel request [2026-04-07 20:56:14,667][ INFO][PID:3205567] Checking for cancel request [2026-04-07 20:56:19,726][ INFO][PID:3205567] Checking for cancel request [2026-04-07 20:56:24,803][ INFO][PID:3205567] Checking for cancel request [2026-04-07 20:56:29,869][ INFO][PID:3205567] Checking for cancel request [2026-04-07 20:56:34,934][ INFO][PID:3205567] Checking for cancel request [2026-04-07 20:56:40,008][ INFO][PID:3205567] Checking for cancel request [2026-04-07 20:56:45,132][ INFO][PID:3205567] Checking for cancel request [2026-04-07 20:56:50,147][ INFO][PID:3205567] Checking for cancel request [2026-04-07 20:56:55,250][ INFO][PID:3205567] Checking for cancel request [2026-04-07 20:57:00,259][ INFO][PID:3205567] Checking for cancel request [2026-04-07 20:57:05,349][ INFO][PID:3205567] Checking for cancel request [2026-04-07 20:57:10,359][ INFO][PID:3205567] Checking for cancel request [2026-04-07 20:57:15,361][ INFO][PID:3205567] Checking for cancel request [2026-04-07 20:57:20,373][ INFO][PID:3205567] Checking for cancel request [2026-04-07 20:57:25,374][ INFO][PID:3205567] Checking for cancel request [2026-04-07 20:57:30,375][ INFO][PID:3205567] Checking for cancel request [2026-04-07 20:57:35,377][ INFO][PID:3205567] Checking for cancel request [2026-04-07 20:57:40,379][ INFO][PID:3205567] Checking for cancel request [2026-04-07 20:57:45,381][ INFO][PID:3205567] Checking for cancel request [2026-04-07 20:57:50,382][ INFO][PID:3205567] Checking for cancel request [2026-04-07 20:57:55,392][ INFO][PID:3205567] Checking for cancel request [2026-04-07 20:58:00,393][ INFO][PID:3205567] Checking for cancel request [2026-04-07 20:58:05,396][ INFO][PID:3205567] Checking for cancel request [2026-04-07 20:58:10,398][ INFO][PID:3205567] Checking for cancel request [2026-04-07 20:58:15,401][ INFO][PID:3205567] Checking for cancel request [2026-04-07 20:58:20,402][ INFO][PID:3205567] Checking for cancel request [2026-04-07 20:58:25,403][ INFO][PID:3205567] Checking for cancel request [2026-04-07 20:58:30,404][ INFO][PID:3205567] Checking for cancel request [2026-04-07 20:58:35,404][ INFO][PID:3205567] Checking for cancel request [2026-04-07 20:58:40,407][ INFO][PID:3205567] Checking for cancel request [2026-04-07 20:58:45,410][ INFO][PID:3205567] Checking for cancel request [2026-04-07 20:58:50,411][ INFO][PID:3205567] Checking for cancel request [2026-04-07 20:58:55,412][ INFO][PID:3205567] Checking for cancel request [2026-04-07 20:59:00,413][ INFO][PID:3205567] Checking for cancel request [2026-04-07 20:59:05,415][ INFO][PID:3205567] Checking for cancel request [2026-04-07 20:59:10,416][ INFO][PID:3205567] Checking for cancel request [2026-04-07 20:59:15,418][ INFO][PID:3205567] Checking for cancel request [2026-04-07 20:59:20,419][ INFO][PID:3205567] Checking for cancel request [2026-04-07 20:59:25,420][ INFO][PID:3205567] Checking for cancel request [2026-04-07 20:59:30,421][ INFO][PID:3205567] Checking for cancel request [2026-04-07 20:59:35,422][ INFO][PID:3205567] Checking for cancel request [2026-04-07 20:59:40,423][ INFO][PID:3205567] Checking for cancel request [2026-04-07 20:59:45,424][ INFO][PID:3205567] Checking for cancel request [2026-04-07 20:59:50,449][ INFO][PID:3205567] Checking for cancel request [2026-04-07 20:59:55,451][ INFO][PID:3205567] Checking for cancel request [2026-04-07 21:00:00,452][ INFO][PID:3205567] Checking for cancel request [2026-04-07 21:00:05,453][ INFO][PID:3205567] Checking for cancel request [2026-04-07 21:00:10,454][ INFO][PID:3205567] Checking for cancel request [2026-04-07 21:00:15,455][ INFO][PID:3205567] Checking for cancel request [2026-04-07 21:00:20,483][ INFO][PID:3205567] Checking for cancel request [2026-04-07 21:00:25,504][ INFO][PID:3205567] Checking for cancel request [2026-04-07 21:00:30,506][ INFO][PID:3205567] Checking for cancel request [2026-04-07 21:00:35,507][ INFO][PID:3205567] Checking for cancel request [2026-04-07 21:00:40,509][ INFO][PID:3205567] Checking for cancel request [2026-04-07 21:00:45,510][ INFO][PID:3205567] Checking for cancel request [2026-04-07 21:00:50,511][ INFO][PID:3205567] Checking for cancel request [2026-04-07 21:00:55,512][ INFO][PID:3205567] Checking for cancel request [2026-04-07 21:01:00,513][ INFO][PID:3205567] Checking for cancel request [2026-04-07 21:01:05,514][ INFO][PID:3205567] Checking for cancel request [2026-04-07 21:01:10,515][ INFO][PID:3205567] Checking for cancel request [2026-04-07 21:01:12,570][ INFO][PID:3205567] Downloading results from builder [2026-04-07 21:01:12,570][ INFO][PID:3205567] rsyncing of mockbuilder@44.210.15.27:/var/lib/copr-rpmbuild/results/ to /var/lib/copr/public_html/results/lizardbyte/beta/srpm-builds/10298819 started [2026-04-07 21:01:12,572][ INFO][PID:3205567] Popen command started: /usr/bin/rsync -rltDvH --chmod=D755,F644 -e 'ssh -F /home/copr/.ssh/config' mockbuilder@44.210.15.27:/var/lib/copr-rpmbuild/results/ /var/lib/copr/public_html/results/lizardbyte/beta/srpm-builds/10298819/ &> /var/lib/copr/public_html/results/lizardbyte/beta/srpm-builds/10298819/build-10298819.rsync.log [2026-04-07 21:01:15,599][ INFO][PID:3205567] rsyncing finished. [2026-04-07 21:01:15,600][ INFO][PID:3205567] Releasing VM back to pool [2026-04-07 21:01:15,608][ INFO][PID:3205567] Searching for 'success' file in resultdir [2026-04-07 21:01:15,609][ INFO][PID:3205567] Getting build details [2026-04-07 21:01:15,610][ INFO][PID:3205567] Retrieving SRPM info from /var/lib/copr/public_html/results/lizardbyte/beta/srpm-builds/10298819 [2026-04-07 21:01:15,610][ INFO][PID:3205567] SRPM URL: https://download.copr.fedorainfracloud.org/results/lizardbyte/beta/srpm-builds/10298819/Sunshine-2026.407.170539-1.src.rpm [2026-04-07 21:01:15,611][ INFO][PID:3205567] build details: {'srpm_url': 'https://download.copr.fedorainfracloud.org/results/lizardbyte/beta/srpm-builds/10298819/Sunshine-2026.407.170539-1.src.rpm', 'pkg_name': 'Sunshine', 'pkg_version': '2026.407.170539-1'} [2026-04-07 21:01:15,611][ INFO][PID:3205567] Finished build: id=10298819 failed=False timeout=108000 destdir=/var/lib/copr/public_html/results/lizardbyte/beta chroot=srpm-builds [2026-04-07 21:01:15,613][ INFO][PID:3205567] Worker succeeded build, took 458.5838632583618 [2026-04-07 21:01:15,614][ INFO][PID:3205567] 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": "beta", "project_dirname": "beta", "submitter": null, "ended_on": 1775595675.613652, "started_on": 1775595217.0297887, "submitted_on": null, "status": 1, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10298819", "build_id": 10298819, "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\": \"tmpqphq40wf\", \"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/beta/srpm-builds/10298819/Sunshine-2026.407.170539-1.src.rpm", "uses_devel_repo": null, "sandbox": "lizardbyte/beta--0c45c7f1-c7c1-4d48-af48-55c978349c0b", "results": { "name": "Sunshine", "epoch": null, "version": "2026.407.170539", "release": "1", "exclusivearch": [], "excludearch": [] }, "appstream": false, "allow_user_ssh": null, "ssh_public_keys": null, "storage": null, "repos": [], "background": true, "destdir": "/var/lib/copr/public_html/results/lizardbyte/beta", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/lizardbyte/beta", "result_dir": "10298819", "built_packages": "", "tags": [ "arch_x86_64" ], "pkg_version": "2026.407.170539-1", "id": 10298819, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "beta", "vendor": "Fedora Project COPR (lizardbyte/beta)" } } ] } [2026-04-07 21:01:15,662][ INFO][PID:3205567] Sending fedora-messaging bus message in build.end [2026-04-07 21:01:15,688][ INFO][PID:3205567] Compressing /var/lib/copr/public_html/results/lizardbyte/beta/srpm-builds/10298819/builder-live.log by gzip [2026-04-07 21:01:15,689][ INFO][PID:3205567] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/beta/srpm-builds/10298819/builder-live.log' as PID 3263876 [2026-04-07 21:01:15,737][ INFO][PID:3205567] Finished after 0 seconds with exit code 0 (gzip /var/lib/copr/public_html/results/lizardbyte/beta/srpm-builds/10298819/builder-live.log) [2026-04-07 21:01:15,738][ INFO][PID:3205567] Compressing /var/lib/copr/public_html/results/lizardbyte/beta/srpm-builds/10298819/backend.log by gzip [2026-04-07 21:01:15,739][ INFO][PID:3205567] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/beta/srpm-builds/10298819/backend.log' as PID 3263903