[2026-06-19 06:54:19,276][ INFO][PID:561308] Marking build as starting [2026-06-19 06:54:19,316][ INFO][PID:561308] Checking for cancel request [2026-06-19 06:54:19,318][ INFO][PID:561308] VM allocation process starts [2026-06-19 06:54:19,374][ INFO][PID:561308] Trying to allocate VM: ResallocHost, ticket_id=3502028, requested_tags=['arch_x86_64', 'copr_builder'] [2026-06-19 06:54:22,395][ INFO][PID:561308] Allocated host ResallocHost, ticket_id=3502028, hostname=174.129.133.209, name=aws_x86_64_reserved_prod_12469322_20260619_063505, requested_tags=['arch_x86_64', 'copr_builder'] [2026-06-19 06:54:22,396][ INFO][PID:561308] Allocating ssh connection to builder [2026-06-19 06:54:22,397][ INFO][PID:561308] Checking that builder machine is OK [2026-06-19 06:54:22,724][ INFO][PID:561308] Installed copr-rpmbuild version: 1.8 [2026-06-19 06:54:22,726][ INFO][PID:561308] Running remote command: copr-builder-ready srpm-builds [2026-06-19 06:54:22,904][ INFO][PID:561308] Red Hat subscription not needed for srpm-builds Builder is ready to be used [2026-06-19 06:54:22,905][ INFO][PID:561308] Filling build.info file with builder info [2026-06-19 06:54:22,906][ INFO][PID:561308] Checking for cancel request [2026-06-19 06:54:22,907][ INFO][PID:561308] 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:5290", "submitter": null, "ended_on": null, "started_on": 1781852062.9073434, "submitted_on": null, "status": 3, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10616728", "build_id": 10616728, "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\": \"tmpdeqi_ekw\", \"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--a41a0cd1-989e-4b22-8332-91a826d38695", "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:5290", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5290", "result_dir": "10616728", "built_packages": "", "tags": [ "arch_x86_64" ], "rpmeta_prediction": null, "id": 10616728, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2026-06-19 06:54:22,950][ INFO][PID:561308] Sending fedora-messaging bus message in build.start [2026-06-19 06:54:23,456][ INFO][PID:561308] Sending fedora-messaging bus message in chroot.start [2026-06-19 06:54:23,489][ INFO][PID:561308] Starting remote build: copr-rpmbuild --verbose --drop-resultdir --srpm --task-url https://copr.fedorainfracloud.org/backend/get-srpm-build-task/10616728 --detached [2026-06-19 06:54:23,997][ INFO][PID:561308] The copr-rpmbuild seems started, per: stdout: stderr: Warning: Permanently added '174.129.133.209' (ED25519) to the list of known hosts. [2026-06-19 06:54:23,998][ INFO][PID:561308] Downloading the builder-live.log file, attempt 1 [2026-06-19 06:54:24,001][ INFO][PID:561308] Popen command started: ssh -F /home/copr/.ssh/config mockbuilder@174.129.133.209 copr-rpmbuild-log [2026-06-19 06:54:29,005][ INFO][PID:561308] Periodic builder liveness probe: alive [2026-06-19 06:54:29,006][ INFO][PID:561308] Checking for cancel request [2026-06-19 06:54:34,008][ INFO][PID:561308] Checking for cancel request [2026-06-19 06:54:39,009][ INFO][PID:561308] Checking for cancel request [2026-06-19 06:54:44,010][ INFO][PID:561308] Checking for cancel request [2026-06-19 06:54:49,012][ INFO][PID:561308] Checking for cancel request [2026-06-19 06:54:54,014][ INFO][PID:561308] Checking for cancel request [2026-06-19 06:54:59,016][ INFO][PID:561308] Checking for cancel request [2026-06-19 06:55:04,017][ INFO][PID:561308] Checking for cancel request [2026-06-19 06:55:09,019][ INFO][PID:561308] Checking for cancel request [2026-06-19 06:55:14,020][ INFO][PID:561308] Checking for cancel request [2026-06-19 06:55:19,022][ INFO][PID:561308] Checking for cancel request [2026-06-19 06:55:24,023][ INFO][PID:561308] Checking for cancel request [2026-06-19 06:55:29,024][ INFO][PID:561308] Checking for cancel request [2026-06-19 06:55:34,026][ INFO][PID:561308] Checking for cancel request [2026-06-19 06:55:39,027][ INFO][PID:561308] Checking for cancel request [2026-06-19 06:55:44,028][ INFO][PID:561308] Checking for cancel request [2026-06-19 06:55:49,029][ INFO][PID:561308] Checking for cancel request [2026-06-19 06:55:54,031][ INFO][PID:561308] Checking for cancel request [2026-06-19 06:55:59,032][ INFO][PID:561308] Checking for cancel request [2026-06-19 06:56:04,034][ INFO][PID:561308] Checking for cancel request [2026-06-19 06:56:09,035][ INFO][PID:561308] Checking for cancel request [2026-06-19 06:56:14,036][ INFO][PID:561308] Checking for cancel request [2026-06-19 06:56:19,038][ INFO][PID:561308] Checking for cancel request [2026-06-19 06:56:24,039][ INFO][PID:561308] Checking for cancel request [2026-06-19 06:56:29,040][ INFO][PID:561308] Checking for cancel request [2026-06-19 06:56:34,041][ INFO][PID:561308] Checking for cancel request [2026-06-19 06:56:39,042][ INFO][PID:561308] Checking for cancel request [2026-06-19 06:56:44,048][ INFO][PID:561308] Checking for cancel request [2026-06-19 06:56:49,051][ INFO][PID:561308] Checking for cancel request [2026-06-19 06:56:54,052][ INFO][PID:561308] Checking for cancel request [2026-06-19 06:56:59,055][ INFO][PID:561308] Checking for cancel request [2026-06-19 06:57:04,056][ INFO][PID:561308] Checking for cancel request [2026-06-19 06:57:09,057][ INFO][PID:561308] Checking for cancel request [2026-06-19 06:57:14,058][ INFO][PID:561308] Checking for cancel request [2026-06-19 06:57:19,060][ INFO][PID:561308] Checking for cancel request [2026-06-19 06:57:24,061][ INFO][PID:561308] Checking for cancel request [2026-06-19 06:57:29,062][ INFO][PID:561308] Checking for cancel request [2026-06-19 06:57:34,063][ INFO][PID:561308] Checking for cancel request [2026-06-19 06:57:39,065][ INFO][PID:561308] Checking for cancel request [2026-06-19 06:57:44,067][ INFO][PID:561308] Checking for cancel request [2026-06-19 06:57:49,072][ INFO][PID:561308] Checking for cancel request [2026-06-19 06:57:54,073][ INFO][PID:561308] Checking for cancel request [2026-06-19 06:57:59,078][ INFO][PID:561308] Checking for cancel request [2026-06-19 06:58:04,079][ INFO][PID:561308] Checking for cancel request [2026-06-19 06:58:09,081][ INFO][PID:561308] Checking for cancel request [2026-06-19 06:58:14,082][ INFO][PID:561308] Checking for cancel request [2026-06-19 06:58:19,083][ INFO][PID:561308] Checking for cancel request [2026-06-19 06:58:24,085][ INFO][PID:561308] Checking for cancel request [2026-06-19 06:58:29,086][ INFO][PID:561308] Checking for cancel request [2026-06-19 06:58:34,088][ INFO][PID:561308] Checking for cancel request [2026-06-19 06:58:39,092][ INFO][PID:561308] Checking for cancel request [2026-06-19 06:58:44,094][ INFO][PID:561308] Checking for cancel request [2026-06-19 06:58:49,096][ INFO][PID:561308] Checking for cancel request [2026-06-19 06:58:54,097][ INFO][PID:561308] Checking for cancel request [2026-06-19 06:58:59,119][ INFO][PID:561308] Checking for cancel request [2026-06-19 06:59:04,121][ INFO][PID:561308] Checking for cancel request [2026-06-19 06:59:09,122][ INFO][PID:561308] Checking for cancel request [2026-06-19 06:59:14,124][ INFO][PID:561308] Checking for cancel request [2026-06-19 06:59:19,125][ INFO][PID:561308] Checking for cancel request [2026-06-19 06:59:24,127][ INFO][PID:561308] Checking for cancel request [2026-06-19 06:59:29,129][ INFO][PID:561308] Checking for cancel request [2026-06-19 06:59:34,131][ INFO][PID:561308] Checking for cancel request [2026-06-19 06:59:39,136][ INFO][PID:561308] Checking for cancel request [2026-06-19 06:59:44,139][ INFO][PID:561308] Checking for cancel request [2026-06-19 06:59:49,147][ INFO][PID:561308] Checking for cancel request [2026-06-19 06:59:54,149][ INFO][PID:561308] Checking for cancel request [2026-06-19 06:59:59,150][ INFO][PID:561308] Checking for cancel request [2026-06-19 07:00:04,152][ INFO][PID:561308] Checking for cancel request [2026-06-19 07:00:09,154][ INFO][PID:561308] Checking for cancel request [2026-06-19 07:00:14,157][ INFO][PID:561308] Checking for cancel request [2026-06-19 07:00:19,159][ INFO][PID:561308] Checking for cancel request [2026-06-19 07:00:24,161][ INFO][PID:561308] Checking for cancel request [2026-06-19 07:00:29,167][ INFO][PID:561308] Checking for cancel request [2026-06-19 07:00:34,173][ INFO][PID:561308] Checking for cancel request [2026-06-19 07:00:39,176][ INFO][PID:561308] Checking for cancel request [2026-06-19 07:00:44,186][ INFO][PID:561308] Checking for cancel request [2026-06-19 07:00:49,187][ INFO][PID:561308] Checking for cancel request [2026-06-19 07:00:54,196][ INFO][PID:561308] Checking for cancel request [2026-06-19 07:00:59,198][ INFO][PID:561308] Checking for cancel request [2026-06-19 07:01:04,207][ INFO][PID:561308] Checking for cancel request [2026-06-19 07:01:09,214][ INFO][PID:561308] Checking for cancel request [2026-06-19 07:01:14,219][ INFO][PID:561308] Checking for cancel request [2026-06-19 07:01:19,227][ INFO][PID:561308] Checking for cancel request [2026-06-19 07:01:24,228][ INFO][PID:561308] Checking for cancel request [2026-06-19 07:01:29,229][ INFO][PID:561308] Checking for cancel request [2026-06-19 07:01:34,232][ INFO][PID:561308] Checking for cancel request [2026-06-19 07:01:39,233][ INFO][PID:561308] Checking for cancel request [2026-06-19 07:01:44,235][ INFO][PID:561308] Checking for cancel request [2026-06-19 07:01:49,236][ INFO][PID:561308] Checking for cancel request [2026-06-19 07:01:54,237][ INFO][PID:561308] Checking for cancel request [2026-06-19 07:01:59,238][ INFO][PID:561308] Checking for cancel request [2026-06-19 07:02:04,239][ INFO][PID:561308] Checking for cancel request [2026-06-19 07:02:09,242][ INFO][PID:561308] Checking for cancel request [2026-06-19 07:02:14,244][ INFO][PID:561308] Checking for cancel request [2026-06-19 07:02:19,246][ INFO][PID:561308] Checking for cancel request [2026-06-19 07:02:24,248][ INFO][PID:561308] Checking for cancel request [2026-06-19 07:02:29,252][ INFO][PID:561308] Checking for cancel request [2026-06-19 07:02:34,254][ INFO][PID:561308] Checking for cancel request [2026-06-19 07:02:39,257][ INFO][PID:561308] Checking for cancel request [2026-06-19 07:02:44,262][ INFO][PID:561308] Checking for cancel request [2026-06-19 07:02:49,268][ INFO][PID:561308] Checking for cancel request [2026-06-19 07:02:54,271][ INFO][PID:561308] Checking for cancel request [2026-06-19 07:02:58,082][ INFO][PID:561308] Downloading results from builder [2026-06-19 07:02:58,113][ INFO][PID:561308] rsyncing of mockbuilder@174.129.133.209:/var/lib/copr-rpmbuild/results/ to /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5290/srpm-builds/10616728 started [2026-06-19 07:02:58,184][ INFO][PID:561308] Popen command started: /usr/bin/rsync -rltDvH --chmod=D755,F644 -e 'ssh -F /home/copr/.ssh/config' mockbuilder@174.129.133.209:/var/lib/copr-rpmbuild/results/ /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5290/srpm-builds/10616728/ &> /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5290/srpm-builds/10616728/build-10616728.rsync.log [2026-06-19 07:03:02,682][ INFO][PID:561308] rsyncing finished. [2026-06-19 07:03:02,686][ INFO][PID:561308] VM Release request [2026-06-19 07:03:02,889][ INFO][PID:561308] Searching for 'success' file in resultdir [2026-06-19 07:03:02,945][ INFO][PID:561308] Getting build details [2026-06-19 07:03:02,948][ INFO][PID:561308] Retrieving SRPM info from /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5290/srpm-builds/10616728 [2026-06-19 07:03:03,016][ INFO][PID:561308] SRPM URL: https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5290/srpm-builds/10616728/Sunshine-0.0.5290-1.src.rpm [2026-06-19 07:03:03,021][ INFO][PID:561308] build details: {'srpm_url': 'https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5290/srpm-builds/10616728/Sunshine-0.0.5290-1.src.rpm', 'pkg_name': 'Sunshine', 'pkg_version': '0.0.5290-1'} [2026-06-19 07:03:03,036][ INFO][PID:561308] Finished build: id=10616728 failed=False timeout=108000 destdir=/var/lib/copr/public_html/results/lizardbyte/pulls:pr:5290 chroot=srpm-builds [2026-06-19 07:03:03,125][ INFO][PID:561308] Worker succeeded build, took 520.2179129123688 [2026-06-19 07:03:03,138][ INFO][PID:561308] 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:5290", "submitter": null, "ended_on": 1781852583.1252563, "started_on": 1781852062.9073434, "submitted_on": null, "status": 1, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10616728", "build_id": 10616728, "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\": \"tmpdeqi_ekw\", \"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:5290/srpm-builds/10616728/Sunshine-0.0.5290-1.src.rpm", "uses_devel_repo": null, "sandbox": "lizardbyte/pulls--a41a0cd1-989e-4b22-8332-91a826d38695", "results": { "architecture_specific_tags": { "fedora-42": {}, "fedora-43": {}, "fedora-44": {}, "fedora-rawhide": {}, "opensuse-leap-15.6": {} }, "name": "Sunshine", "epoch": null, "version": "0.0.5290", "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:5290", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5290", "result_dir": "10616728", "built_packages": "", "tags": [ "arch_x86_64" ], "rpmeta_prediction": null, "pkg_version": "0.0.5290-1", "id": 10616728, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2026-06-19 07:03:03,829][ INFO][PID:561308] Sending fedora-messaging bus message in build.end [2026-06-19 07:03:04,216][ INFO][PID:561308] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5290/srpm-builds/10616728/builder-live.log by gzip [2026-06-19 07:03:04,537][ INFO][PID:561308] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5290/srpm-builds/10616728/builder-live.log' as PID 603047 [2026-06-19 07:03:04,645][ INFO][PID:561308] Finished after 0 seconds with exit code 0 (gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5290/srpm-builds/10616728/builder-live.log) [2026-06-19 07:03:04,650][ INFO][PID:561308] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5290/srpm-builds/10616728/backend.log by gzip [2026-06-19 07:03:04,652][ INFO][PID:561308] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5290/srpm-builds/10616728/backend.log' as PID 603062