[2026-04-12 07:34:21,375][ INFO][PID:2622308] Marking build as starting [2026-04-12 07:34:21,423][ INFO][PID:2622308] Checking for cancel request [2026-04-12 07:34:21,424][ INFO][PID:2622308] VM allocation process starts [2026-04-12 07:34:21,435][ INFO][PID:2622308] Trying to allocate VM: ResallocHost, ticket_id=2282003, requested_tags=['copr_builder', 'arch_x86_64'] [2026-04-12 07:34:24,445][ INFO][PID:2622308] Allocated host ResallocHost, ticket_id=2282003, hostname=100.48.73.100, name=aws_x86_64_normalreserved_prod_05998336_20260412_070936, requested_tags=['copr_builder', 'arch_x86_64'] [2026-04-12 07:34:24,446][ INFO][PID:2622308] Allocating ssh connection to builder [2026-04-12 07:34:24,446][ INFO][PID:2622308] Checking that builder machine is OK [2026-04-12 07:34:24,825][ INFO][PID:2622308] Running remote command: copr-builder-ready srpm-builds [2026-04-12 07:34:25,035][ INFO][PID:2622308] Red Hat subscription not needed for srpm-builds Builder is ready to be used [2026-04-12 07:34:25,035][ INFO][PID:2622308] Filling build.info file with builder info [2026-04-12 07:34:25,036][ INFO][PID:2622308] Checking for cancel request [2026-04-12 07:34:25,036][ INFO][PID:2622308] 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": 1775979265.0367937, "submitted_on": null, "status": 3, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10315129", "build_id": 10315129, "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\": \"tmpj32qmo4w\", \"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--68fe51fc-c3ce-46ec-a912-415b7053e37a", "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": "10315129", "built_packages": "", "tags": [ "arch_x86_64" ], "id": 10315129, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "beta", "vendor": "Fedora Project COPR (lizardbyte/beta)" } } ] } [2026-04-12 07:34:25,068][ INFO][PID:2622308] Sending fedora-messaging bus message in build.start [2026-04-12 07:34:25,570][ INFO][PID:2622308] Sending fedora-messaging bus message in chroot.start [2026-04-12 07:34:25,597][ INFO][PID:2622308] Starting remote build: copr-rpmbuild --verbose --drop-resultdir --srpm --task-url https://copr.fedorainfracloud.org/backend/get-srpm-build-task/10315129 --detached [2026-04-12 07:34:25,956][ INFO][PID:2622308] The copr-rpmbuild seems started, per: stdout: stderr: Warning: Permanently added '100.48.73.100' (ED25519) to the list of known hosts. [2026-04-12 07:34:25,957][ INFO][PID:2622308] Downloading the builder-live.log file, attempt 1 [2026-04-12 07:34:25,958][ INFO][PID:2622308] Popen command started: ssh -F /home/copr/.ssh/config mockbuilder@100.48.73.100 copr-rpmbuild-log [2026-04-12 07:34:30,962][ INFO][PID:2622308] Periodic builder liveness probe: alive [2026-04-12 07:34:30,962][ INFO][PID:2622308] Checking for cancel request [2026-04-12 07:34:35,963][ INFO][PID:2622308] Checking for cancel request [2026-04-12 07:34:40,964][ INFO][PID:2622308] Checking for cancel request [2026-04-12 07:34:45,965][ INFO][PID:2622308] Checking for cancel request [2026-04-12 07:34:50,966][ INFO][PID:2622308] Checking for cancel request [2026-04-12 07:34:55,966][ INFO][PID:2622308] Checking for cancel request [2026-04-12 07:35:00,967][ INFO][PID:2622308] Checking for cancel request [2026-04-12 07:35:05,968][ INFO][PID:2622308] Checking for cancel request [2026-04-12 07:35:10,969][ INFO][PID:2622308] Checking for cancel request [2026-04-12 07:35:15,970][ INFO][PID:2622308] Checking for cancel request [2026-04-12 07:35:20,971][ INFO][PID:2622308] Checking for cancel request [2026-04-12 07:35:25,972][ INFO][PID:2622308] Checking for cancel request [2026-04-12 07:35:30,973][ INFO][PID:2622308] Checking for cancel request [2026-04-12 07:35:35,974][ INFO][PID:2622308] Checking for cancel request [2026-04-12 07:35:40,975][ INFO][PID:2622308] Checking for cancel request [2026-04-12 07:35:45,976][ INFO][PID:2622308] Checking for cancel request [2026-04-12 07:35:50,977][ INFO][PID:2622308] Checking for cancel request [2026-04-12 07:35:55,977][ INFO][PID:2622308] Checking for cancel request [2026-04-12 07:36:00,978][ INFO][PID:2622308] Checking for cancel request [2026-04-12 07:36:05,979][ INFO][PID:2622308] Checking for cancel request [2026-04-12 07:36:10,980][ INFO][PID:2622308] Checking for cancel request [2026-04-12 07:36:15,981][ INFO][PID:2622308] Checking for cancel request [2026-04-12 07:36:20,982][ INFO][PID:2622308] Checking for cancel request [2026-04-12 07:36:25,983][ INFO][PID:2622308] Checking for cancel request [2026-04-12 07:36:30,984][ INFO][PID:2622308] Checking for cancel request [2026-04-12 07:36:35,984][ INFO][PID:2622308] Checking for cancel request [2026-04-12 07:36:40,985][ INFO][PID:2622308] Checking for cancel request [2026-04-12 07:36:45,986][ INFO][PID:2622308] Checking for cancel request [2026-04-12 07:36:50,987][ INFO][PID:2622308] Checking for cancel request [2026-04-12 07:36:55,988][ INFO][PID:2622308] Checking for cancel request [2026-04-12 07:37:00,989][ INFO][PID:2622308] Checking for cancel request [2026-04-12 07:37:05,990][ INFO][PID:2622308] Checking for cancel request [2026-04-12 07:37:10,991][ INFO][PID:2622308] Checking for cancel request [2026-04-12 07:37:15,992][ INFO][PID:2622308] Checking for cancel request [2026-04-12 07:37:20,993][ INFO][PID:2622308] Checking for cancel request [2026-04-12 07:37:25,993][ INFO][PID:2622308] Checking for cancel request [2026-04-12 07:37:30,994][ INFO][PID:2622308] Checking for cancel request [2026-04-12 07:37:35,995][ INFO][PID:2622308] Checking for cancel request [2026-04-12 07:37:41,054][ INFO][PID:2622308] Checking for cancel request [2026-04-12 07:37:46,055][ INFO][PID:2622308] Checking for cancel request [2026-04-12 07:37:51,056][ INFO][PID:2622308] Checking for cancel request [2026-04-12 07:37:56,057][ INFO][PID:2622308] Checking for cancel request [2026-04-12 07:38:01,057][ INFO][PID:2622308] Checking for cancel request [2026-04-12 07:38:06,058][ INFO][PID:2622308] Checking for cancel request [2026-04-12 07:38:11,059][ INFO][PID:2622308] Checking for cancel request [2026-04-12 07:38:16,060][ INFO][PID:2622308] Checking for cancel request [2026-04-12 07:38:21,061][ INFO][PID:2622308] Checking for cancel request [2026-04-12 07:38:26,062][ INFO][PID:2622308] Checking for cancel request [2026-04-12 07:38:31,063][ INFO][PID:2622308] Checking for cancel request [2026-04-12 07:38:36,064][ INFO][PID:2622308] Checking for cancel request [2026-04-12 07:38:41,065][ INFO][PID:2622308] Checking for cancel request [2026-04-12 07:38:46,066][ INFO][PID:2622308] Checking for cancel request [2026-04-12 07:38:51,067][ INFO][PID:2622308] Checking for cancel request [2026-04-12 07:38:56,067][ INFO][PID:2622308] Checking for cancel request [2026-04-12 07:39:01,068][ INFO][PID:2622308] Checking for cancel request [2026-04-12 07:39:06,069][ INFO][PID:2622308] Checking for cancel request [2026-04-12 07:39:11,070][ INFO][PID:2622308] Checking for cancel request [2026-04-12 07:39:16,071][ INFO][PID:2622308] Checking for cancel request [2026-04-12 07:39:21,072][ INFO][PID:2622308] Checking for cancel request [2026-04-12 07:39:26,073][ INFO][PID:2622308] Checking for cancel request [2026-04-12 07:39:31,074][ INFO][PID:2622308] Checking for cancel request [2026-04-12 07:39:36,075][ INFO][PID:2622308] Checking for cancel request [2026-04-12 07:39:41,076][ INFO][PID:2622308] Checking for cancel request [2026-04-12 07:39:46,076][ INFO][PID:2622308] Checking for cancel request [2026-04-12 07:39:51,077][ INFO][PID:2622308] Checking for cancel request [2026-04-12 07:39:56,079][ INFO][PID:2622308] Checking for cancel request [2026-04-12 07:40:01,080][ INFO][PID:2622308] Checking for cancel request [2026-04-12 07:40:06,080][ INFO][PID:2622308] Checking for cancel request [2026-04-12 07:40:11,081][ INFO][PID:2622308] Checking for cancel request [2026-04-12 07:40:16,507][ INFO][PID:2622308] Checking for cancel request [2026-04-12 07:40:21,917][ INFO][PID:2622308] Checking for cancel request [2026-04-12 07:40:26,918][ INFO][PID:2622308] Checking for cancel request [2026-04-12 07:40:31,919][ INFO][PID:2622308] Checking for cancel request [2026-04-12 07:40:36,920][ INFO][PID:2622308] Checking for cancel request [2026-04-12 07:40:41,921][ INFO][PID:2622308] Checking for cancel request [2026-04-12 07:40:46,922][ INFO][PID:2622308] Checking for cancel request [2026-04-12 07:40:51,923][ INFO][PID:2622308] Checking for cancel request [2026-04-12 07:40:56,924][ INFO][PID:2622308] Checking for cancel request [2026-04-12 07:41:01,925][ INFO][PID:2622308] Checking for cancel request [2026-04-12 07:41:06,926][ INFO][PID:2622308] Checking for cancel request [2026-04-12 07:41:11,926][ INFO][PID:2622308] Checking for cancel request [2026-04-12 07:41:16,927][ INFO][PID:2622308] Checking for cancel request [2026-04-12 07:41:17,669][ INFO][PID:2622308] Downloading results from builder [2026-04-12 07:41:17,670][ INFO][PID:2622308] rsyncing of mockbuilder@100.48.73.100:/var/lib/copr-rpmbuild/results/ to /var/lib/copr/public_html/results/lizardbyte/beta/srpm-builds/10315129 started [2026-04-12 07:41:17,670][ INFO][PID:2622308] Popen command started: /usr/bin/rsync -rltDvH --chmod=D755,F644 -e 'ssh -F /home/copr/.ssh/config' mockbuilder@100.48.73.100:/var/lib/copr-rpmbuild/results/ /var/lib/copr/public_html/results/lizardbyte/beta/srpm-builds/10315129/ &> /var/lib/copr/public_html/results/lizardbyte/beta/srpm-builds/10315129/build-10315129.rsync.log [2026-04-12 07:41:21,762][ INFO][PID:2622308] rsyncing finished. [2026-04-12 07:41:21,762][ INFO][PID:2622308] Releasing VM back to pool [2026-04-12 07:41:21,771][ INFO][PID:2622308] Searching for 'success' file in resultdir [2026-04-12 07:41:21,771][ INFO][PID:2622308] Getting build details [2026-04-12 07:41:21,772][ INFO][PID:2622308] Retrieving SRPM info from /var/lib/copr/public_html/results/lizardbyte/beta/srpm-builds/10315129 [2026-04-12 07:41:21,773][ INFO][PID:2622308] SRPM URL: https://download.copr.fedorainfracloud.org/results/lizardbyte/beta/srpm-builds/10315129/Sunshine-2026.412.25828-1.src.rpm [2026-04-12 07:41:21,773][ INFO][PID:2622308] build details: {'srpm_url': 'https://download.copr.fedorainfracloud.org/results/lizardbyte/beta/srpm-builds/10315129/Sunshine-2026.412.25828-1.src.rpm', 'pkg_name': 'Sunshine', 'pkg_version': '2026.412.25828-1'} [2026-04-12 07:41:21,773][ INFO][PID:2622308] Finished build: id=10315129 failed=False timeout=108000 destdir=/var/lib/copr/public_html/results/lizardbyte/beta chroot=srpm-builds [2026-04-12 07:41:21,775][ INFO][PID:2622308] Worker succeeded build, took 416.7385129928589 [2026-04-12 07:41:21,775][ INFO][PID:2622308] 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": 1775979681.7753067, "started_on": 1775979265.0367937, "submitted_on": null, "status": 1, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10315129", "build_id": 10315129, "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\": \"tmpj32qmo4w\", \"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/10315129/Sunshine-2026.412.25828-1.src.rpm", "uses_devel_repo": null, "sandbox": "lizardbyte/beta--68fe51fc-c3ce-46ec-a912-415b7053e37a", "results": { "name": "Sunshine", "epoch": null, "version": "2026.412.25828", "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": "10315129", "built_packages": "", "tags": [ "arch_x86_64" ], "pkg_version": "2026.412.25828-1", "id": 10315129, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "beta", "vendor": "Fedora Project COPR (lizardbyte/beta)" } } ] } [2026-04-12 07:41:21,822][ INFO][PID:2622308] Sending fedora-messaging bus message in build.end [2026-04-12 07:41:21,849][ INFO][PID:2622308] Compressing /var/lib/copr/public_html/results/lizardbyte/beta/srpm-builds/10315129/builder-live.log by gzip [2026-04-12 07:41:21,850][ INFO][PID:2622308] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/beta/srpm-builds/10315129/builder-live.log' as PID 2642609 [2026-04-12 07:41:21,857][ INFO][PID:2622308] Finished after 0 seconds with exit code 0 (gzip /var/lib/copr/public_html/results/lizardbyte/beta/srpm-builds/10315129/builder-live.log) [2026-04-12 07:41:21,857][ INFO][PID:2622308] Compressing /var/lib/copr/public_html/results/lizardbyte/beta/srpm-builds/10315129/backend.log by gzip [2026-04-12 07:41:21,858][ INFO][PID:2622308] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/beta/srpm-builds/10315129/backend.log' as PID 2642610