[2026-07-12 11:07:58,080][ INFO][PID:632502] Marking build as starting [2026-07-12 11:07:58,118][ INFO][PID:632502] Checking for cancel request [2026-07-12 11:07:58,119][ INFO][PID:632502] VM allocation process starts [2026-07-12 11:07:58,128][ INFO][PID:632502] Trying to allocate VM: ResallocHost, ticket_id=3867649, requested_tags=['arch_x86_64', 'copr_builder'] [2026-07-12 11:08:01,178][ INFO][PID:632502] Allocated host ResallocHost, ticket_id=3867649, hostname=34.231.169.255, name=aws_x86_64_spot_prod_13035740_20260712_070724, requested_tags=['arch_x86_64', 'copr_builder'] [2026-07-12 11:08:01,178][ INFO][PID:632502] Allocating ssh connection to builder [2026-07-12 11:08:01,179][ INFO][PID:632502] Checking that builder machine is OK [2026-07-12 11:08:01,490][ INFO][PID:632502] Installed copr-rpmbuild version: 1.8 [2026-07-12 11:08:01,492][ INFO][PID:632502] Running remote command: copr-builder-ready srpm-builds [2026-07-12 11:08:01,668][ INFO][PID:632502] Red Hat subscription not needed for srpm-builds Builder is ready to be used [2026-07-12 11:08:01,669][ INFO][PID:632502] Filling build.info file with builder info [2026-07-12 11:08:01,670][ INFO][PID:632502] Checking for cancel request [2026-07-12 11:08:01,671][ INFO][PID:632502] 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:5403", "submitter": null, "ended_on": null, "started_on": 1783854481.6713042, "submitted_on": null, "status": 3, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10710460", "build_id": 10710460, "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\": \"tmp2xemnm7m\", \"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--ec5ee358-3c73-4a85-8e92-8f50ebee6774", "results": null, "appstream": false, "allow_user_ssh": null, "ssh_public_keys": null, "storage": null, "repos": [], "background": true, "distributions_in_build": [ "fedora-43", "fedora-44", "fedora-rawhide", "opensuse-leap-15.6" ], "distributions_in_project": [ "fedora-43", "fedora-44", "fedora-rawhide", "opensuse-leap-15.6" ], "destdir": "/var/lib/copr/public_html/results/lizardbyte/pulls:pr:5403", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5403", "result_dir": "10710460", "built_packages": "", "tags": [ "arch_x86_64" ], "rpmeta_prediction": null, "id": 10710460, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2026-07-12 11:08:01,714][ INFO][PID:632502] Sending fedora-messaging bus message in build.start [2026-07-12 11:08:02,276][ INFO][PID:632502] Sending fedora-messaging bus message in chroot.start [2026-07-12 11:08:02,306][ INFO][PID:632502] Starting remote build: copr-rpmbuild --verbose --drop-resultdir --srpm --task-url https://copr.fedorainfracloud.org/backend/get-srpm-build-task/10710460 --detached [2026-07-12 11:08:02,750][ INFO][PID:632502] The copr-rpmbuild seems started, per: stdout: stderr: Warning: Permanently added '34.231.169.255' (ED25519) to the list of known hosts. [2026-07-12 11:08:02,751][ INFO][PID:632502] Downloading the builder-live.log file, attempt 1 [2026-07-12 11:08:02,753][ INFO][PID:632502] Popen command started: ssh -F /home/copr/.ssh/config mockbuilder@34.231.169.255 copr-rpmbuild-log [2026-07-12 11:08:07,760][ INFO][PID:632502] Periodic builder liveness probe: alive [2026-07-12 11:08:07,761][ INFO][PID:632502] Checking for cancel request [2026-07-12 11:08:12,763][ INFO][PID:632502] Checking for cancel request [2026-07-12 11:08:17,764][ INFO][PID:632502] Checking for cancel request [2026-07-12 11:08:22,768][ INFO][PID:632502] Checking for cancel request [2026-07-12 11:08:27,772][ INFO][PID:632502] Checking for cancel request [2026-07-12 11:08:32,774][ INFO][PID:632502] Checking for cancel request [2026-07-12 11:08:37,775][ INFO][PID:632502] Checking for cancel request [2026-07-12 11:08:42,777][ INFO][PID:632502] Checking for cancel request [2026-07-12 11:08:47,778][ INFO][PID:632502] Checking for cancel request [2026-07-12 11:08:52,779][ INFO][PID:632502] Checking for cancel request [2026-07-12 11:08:57,782][ INFO][PID:632502] Checking for cancel request [2026-07-12 11:09:02,784][ INFO][PID:632502] Checking for cancel request [2026-07-12 11:09:07,786][ INFO][PID:632502] Checking for cancel request [2026-07-12 11:09:12,787][ INFO][PID:632502] Checking for cancel request [2026-07-12 11:09:17,789][ INFO][PID:632502] Checking for cancel request [2026-07-12 11:09:22,790][ INFO][PID:632502] Checking for cancel request [2026-07-12 11:09:27,791][ INFO][PID:632502] Checking for cancel request [2026-07-12 11:09:32,793][ INFO][PID:632502] Checking for cancel request [2026-07-12 11:09:37,794][ INFO][PID:632502] Checking for cancel request [2026-07-12 11:09:42,795][ INFO][PID:632502] Checking for cancel request [2026-07-12 11:09:47,797][ INFO][PID:632502] Checking for cancel request [2026-07-12 11:09:52,798][ INFO][PID:632502] Checking for cancel request [2026-07-12 11:09:57,800][ INFO][PID:632502] Checking for cancel request [2026-07-12 11:10:02,801][ INFO][PID:632502] Checking for cancel request [2026-07-12 11:10:07,802][ INFO][PID:632502] Checking for cancel request [2026-07-12 11:10:12,804][ INFO][PID:632502] Checking for cancel request [2026-07-12 11:10:17,805][ INFO][PID:632502] Checking for cancel request [2026-07-12 11:10:22,806][ INFO][PID:632502] Checking for cancel request [2026-07-12 11:10:27,808][ INFO][PID:632502] Checking for cancel request [2026-07-12 11:10:32,809][ INFO][PID:632502] Checking for cancel request [2026-07-12 11:10:37,810][ INFO][PID:632502] Checking for cancel request [2026-07-12 11:10:42,811][ INFO][PID:632502] Checking for cancel request [2026-07-12 11:10:47,813][ INFO][PID:632502] Checking for cancel request [2026-07-12 11:10:52,814][ INFO][PID:632502] Checking for cancel request [2026-07-12 11:10:57,815][ INFO][PID:632502] Checking for cancel request [2026-07-12 11:11:02,817][ INFO][PID:632502] Checking for cancel request [2026-07-12 11:11:07,818][ INFO][PID:632502] Checking for cancel request [2026-07-12 11:11:12,819][ INFO][PID:632502] Checking for cancel request [2026-07-12 11:11:17,821][ INFO][PID:632502] Checking for cancel request [2026-07-12 11:11:22,823][ INFO][PID:632502] Checking for cancel request [2026-07-12 11:11:27,824][ INFO][PID:632502] Checking for cancel request [2026-07-12 11:11:32,825][ INFO][PID:632502] Checking for cancel request [2026-07-12 11:11:37,827][ INFO][PID:632502] Checking for cancel request [2026-07-12 11:11:42,828][ INFO][PID:632502] Checking for cancel request [2026-07-12 11:11:47,829][ INFO][PID:632502] Checking for cancel request [2026-07-12 11:11:52,831][ INFO][PID:632502] Checking for cancel request [2026-07-12 11:11:57,832][ INFO][PID:632502] Checking for cancel request [2026-07-12 11:12:03,003][ INFO][PID:632502] Checking for cancel request [2026-07-12 11:12:08,012][ INFO][PID:632502] Checking for cancel request [2026-07-12 11:12:13,015][ INFO][PID:632502] Checking for cancel request [2026-07-12 11:12:18,017][ INFO][PID:632502] Checking for cancel request [2026-07-12 11:12:23,018][ INFO][PID:632502] Checking for cancel request [2026-07-12 11:12:28,020][ INFO][PID:632502] Checking for cancel request [2026-07-12 11:12:33,024][ INFO][PID:632502] Checking for cancel request [2026-07-12 11:12:38,027][ INFO][PID:632502] Checking for cancel request [2026-07-12 11:12:43,028][ INFO][PID:632502] Checking for cancel request [2026-07-12 11:12:48,032][ INFO][PID:632502] Checking for cancel request [2026-07-12 11:12:53,034][ INFO][PID:632502] Checking for cancel request [2026-07-12 11:12:58,036][ INFO][PID:632502] Checking for cancel request [2026-07-12 11:13:03,037][ INFO][PID:632502] Checking for cancel request [2026-07-12 11:13:08,039][ INFO][PID:632502] Checking for cancel request [2026-07-12 11:13:13,041][ INFO][PID:632502] Checking for cancel request [2026-07-12 11:13:18,048][ INFO][PID:632502] Checking for cancel request [2026-07-12 11:13:23,082][ INFO][PID:632502] Checking for cancel request [2026-07-12 11:13:28,140][ INFO][PID:632502] Checking for cancel request [2026-07-12 11:13:33,141][ INFO][PID:632502] Checking for cancel request [2026-07-12 11:13:38,142][ INFO][PID:632502] Checking for cancel request [2026-07-12 11:13:43,144][ INFO][PID:632502] Checking for cancel request [2026-07-12 11:13:48,145][ INFO][PID:632502] Checking for cancel request [2026-07-12 11:13:53,146][ INFO][PID:632502] Checking for cancel request [2026-07-12 11:13:58,148][ INFO][PID:632502] Checking for cancel request [2026-07-12 11:14:03,149][ INFO][PID:632502] Checking for cancel request [2026-07-12 11:14:08,150][ INFO][PID:632502] Checking for cancel request [2026-07-12 11:14:13,151][ INFO][PID:632502] Checking for cancel request [2026-07-12 11:14:18,153][ INFO][PID:632502] Checking for cancel request [2026-07-12 11:14:23,154][ INFO][PID:632502] Checking for cancel request [2026-07-12 11:14:28,156][ INFO][PID:632502] Checking for cancel request [2026-07-12 11:14:33,157][ INFO][PID:632502] Checking for cancel request [2026-07-12 11:14:38,190][ INFO][PID:632502] Checking for cancel request [2026-07-12 11:14:43,226][ INFO][PID:632502] Checking for cancel request [2026-07-12 11:14:48,228][ INFO][PID:632502] Checking for cancel request [2026-07-12 11:14:53,230][ INFO][PID:632502] Checking for cancel request [2026-07-12 11:14:58,231][ INFO][PID:632502] Checking for cancel request [2026-07-12 11:15:03,233][ INFO][PID:632502] Checking for cancel request [2026-07-12 11:15:08,235][ INFO][PID:632502] Checking for cancel request [2026-07-12 11:15:13,236][ INFO][PID:632502] Checking for cancel request [2026-07-12 11:15:18,237][ INFO][PID:632502] Checking for cancel request [2026-07-12 11:15:23,239][ INFO][PID:632502] Checking for cancel request [2026-07-12 11:15:28,240][ INFO][PID:632502] Checking for cancel request [2026-07-12 11:15:33,242][ INFO][PID:632502] Checking for cancel request [2026-07-12 11:15:38,244][ INFO][PID:632502] Checking for cancel request [2026-07-12 11:15:43,245][ INFO][PID:632502] Checking for cancel request [2026-07-12 11:15:48,246][ INFO][PID:632502] Checking for cancel request [2026-07-12 11:15:53,248][ INFO][PID:632502] Checking for cancel request [2026-07-12 11:15:58,250][ INFO][PID:632502] Checking for cancel request [2026-07-12 11:16:03,251][ INFO][PID:632502] Checking for cancel request [2026-07-12 11:16:08,253][ INFO][PID:632502] Checking for cancel request [2026-07-12 11:16:13,254][ INFO][PID:632502] Checking for cancel request [2026-07-12 11:16:18,255][ INFO][PID:632502] Checking for cancel request [2026-07-12 11:16:23,358][ INFO][PID:632502] Checking for cancel request [2026-07-12 11:16:28,362][ INFO][PID:632502] Checking for cancel request [2026-07-12 11:16:33,366][ INFO][PID:632502] Checking for cancel request [2026-07-12 11:16:38,374][ INFO][PID:632502] Checking for cancel request [2026-07-12 11:16:43,378][ INFO][PID:632502] Checking for cancel request [2026-07-12 11:16:48,381][ INFO][PID:632502] Checking for cancel request [2026-07-12 11:16:53,383][ INFO][PID:632502] Checking for cancel request [2026-07-12 11:16:58,386][ INFO][PID:632502] Checking for cancel request [2026-07-12 11:17:03,387][ INFO][PID:632502] Checking for cancel request [2026-07-12 11:17:08,390][ INFO][PID:632502] Checking for cancel request [2026-07-12 11:17:13,391][ INFO][PID:632502] Checking for cancel request [2026-07-12 11:17:15,357][ INFO][PID:632502] Downloading results from builder [2026-07-12 11:17:15,358][ INFO][PID:632502] rsyncing of mockbuilder@34.231.169.255:/var/lib/copr-rpmbuild/results/ to /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5403/srpm-builds/10710460 started [2026-07-12 11:17:15,359][ INFO][PID:632502] Popen command started: /usr/bin/rsync -rltDvH --chmod=D755,F644 -e 'ssh -F /home/copr/.ssh/config' mockbuilder@34.231.169.255:/var/lib/copr-rpmbuild/results/ /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5403/srpm-builds/10710460/ &> /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5403/srpm-builds/10710460/build-10710460.rsync.log [2026-07-12 11:17:20,887][ INFO][PID:632502] rsyncing finished. [2026-07-12 11:17:20,888][ INFO][PID:632502] VM Release request [2026-07-12 11:17:20,901][ INFO][PID:632502] Searching for 'success' file in resultdir [2026-07-12 11:17:20,902][ INFO][PID:632502] Getting build details [2026-07-12 11:17:20,903][ INFO][PID:632502] Retrieving SRPM info from /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5403/srpm-builds/10710460 [2026-07-12 11:17:20,905][ INFO][PID:632502] SRPM URL: https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5403/srpm-builds/10710460/Sunshine-0.0.5403-1.src.rpm [2026-07-12 11:17:20,906][ INFO][PID:632502] build details: {'srpm_url': 'https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5403/srpm-builds/10710460/Sunshine-0.0.5403-1.src.rpm', 'pkg_name': 'Sunshine', 'pkg_version': '0.0.5403-1'} [2026-07-12 11:17:20,908][ INFO][PID:632502] Finished build: id=10710460 failed=False timeout=108000 destdir=/var/lib/copr/public_html/results/lizardbyte/pulls:pr:5403 chroot=srpm-builds [2026-07-12 11:17:20,912][ INFO][PID:632502] Worker succeeded build, took 559.2409143447876 [2026-07-12 11:17:20,913][ INFO][PID:632502] 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:5403", "submitter": null, "ended_on": 1783855040.9122186, "started_on": 1783854481.6713042, "submitted_on": null, "status": 1, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10710460", "build_id": 10710460, "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\": \"tmp2xemnm7m\", \"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:5403/srpm-builds/10710460/Sunshine-0.0.5403-1.src.rpm", "uses_devel_repo": null, "sandbox": "lizardbyte/pulls--ec5ee358-3c73-4a85-8e92-8f50ebee6774", "results": { "architecture_specific_tags": { "fedora-43": {}, "fedora-44": {}, "fedora-rawhide": {}, "opensuse-leap-15.6": {} }, "name": "Sunshine", "epoch": null, "version": "0.0.5403", "release": "1" }, "appstream": false, "allow_user_ssh": null, "ssh_public_keys": null, "storage": null, "repos": [], "background": true, "distributions_in_build": [ "fedora-43", "fedora-44", "fedora-rawhide", "opensuse-leap-15.6" ], "distributions_in_project": [ "fedora-43", "fedora-44", "fedora-rawhide", "opensuse-leap-15.6" ], "destdir": "/var/lib/copr/public_html/results/lizardbyte/pulls:pr:5403", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5403", "result_dir": "10710460", "built_packages": "", "tags": [ "arch_x86_64" ], "rpmeta_prediction": null, "pkg_version": "0.0.5403-1", "id": 10710460, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2026-07-12 11:17:20,971][ INFO][PID:632502] Sending fedora-messaging bus message in build.end [2026-07-12 11:17:21,001][ INFO][PID:632502] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5403/srpm-builds/10710460/builder-live.log by gzip [2026-07-12 11:17:21,003][ INFO][PID:632502] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5403/srpm-builds/10710460/builder-live.log' as PID 695950 [2026-07-12 11:17:21,027][ INFO][PID:632502] Finished after 0 seconds with exit code 0 (gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5403/srpm-builds/10710460/builder-live.log) [2026-07-12 11:17:21,029][ INFO][PID:632502] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5403/srpm-builds/10710460/backend.log by gzip [2026-07-12 11:17:21,031][ INFO][PID:632502] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5403/srpm-builds/10710460/backend.log' as PID 695970