[2026-05-13 02:04:14,570][ INFO][PID:1821139] Marking build as starting [2026-05-13 02:04:14,615][ INFO][PID:1821139] Checking for cancel request [2026-05-13 02:04:14,618][ INFO][PID:1821139] VM allocation process starts [2026-05-13 02:04:14,634][ INFO][PID:1821139] Trying to allocate VM: ResallocHost, ticket_id=2858746, requested_tags=['arch_x86_64', 'copr_builder'] [2026-05-13 02:04:17,650][ INFO][PID:1821139] Allocated host ResallocHost, ticket_id=2858746, hostname=2620:52:6:1161:dead:beef:cafe:c13d, name=vmhost_x86_02_prod_08782005_20260512_232734, requested_tags=['arch_x86_64', 'copr_builder'] [2026-05-13 02:04:17,651][ INFO][PID:1821139] Allocating ssh connection to builder [2026-05-13 02:04:17,652][ INFO][PID:1821139] Checking that builder machine is OK [2026-05-13 02:04:18,238][ INFO][PID:1821139] Installed copr-rpmbuild version: 1.8 [2026-05-13 02:04:18,239][ INFO][PID:1821139] Running remote command: copr-builder-ready srpm-builds [2026-05-13 02:04:18,632][ INFO][PID:1821139] Red Hat subscription not needed for srpm-builds Builder is ready to be used [2026-05-13 02:04:18,633][ INFO][PID:1821139] Filling build.info file with builder info [2026-05-13 02:04:18,634][ INFO][PID:1821139] Checking for cancel request [2026-05-13 02:04:18,635][ INFO][PID:1821139] 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:5101", "submitter": null, "ended_on": null, "started_on": 1778637858.635084, "submitted_on": null, "status": 3, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10452335", "build_id": 10452335, "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\": \"tmp10filsw3\", \"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--aaeb3966-bd43-4ba3-aada-b74e22940df3", "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:5101", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5101", "result_dir": "10452335", "built_packages": "", "tags": [ "arch_x86_64" ], "id": 10452335, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2026-05-13 02:04:18,678][ INFO][PID:1821139] Sending fedora-messaging bus message in build.start [2026-05-13 02:04:19,258][ INFO][PID:1821139] Sending fedora-messaging bus message in chroot.start [2026-05-13 02:04:19,290][ INFO][PID:1821139] Starting remote build: copr-rpmbuild --verbose --drop-resultdir --srpm --task-url https://copr.fedorainfracloud.org/backend/get-srpm-build-task/10452335 --detached [2026-05-13 02:04:19,911][ INFO][PID:1821139] The copr-rpmbuild seems started, per: stdout: stderr: Warning: Permanently added '2620:52:6:1161:dead:beef:cafe:c13d' (ED25519) to the list of known hosts. [2026-05-13 02:04:19,912][ INFO][PID:1821139] Downloading the builder-live.log file, attempt 1 [2026-05-13 02:04:19,914][ INFO][PID:1821139] Popen command started: ssh -F /home/copr/.ssh/config mockbuilder@2620:52:6:1161:dead:beef:cafe:c13d copr-rpmbuild-log [2026-05-13 02:04:24,920][ INFO][PID:1821139] Periodic builder liveness probe: alive [2026-05-13 02:04:24,921][ INFO][PID:1821139] Checking for cancel request [2026-05-13 02:04:29,922][ INFO][PID:1821139] Checking for cancel request [2026-05-13 02:04:34,923][ INFO][PID:1821139] Checking for cancel request [2026-05-13 02:04:39,925][ INFO][PID:1821139] Checking for cancel request [2026-05-13 02:04:44,927][ INFO][PID:1821139] Checking for cancel request [2026-05-13 02:04:49,929][ INFO][PID:1821139] Checking for cancel request [2026-05-13 02:04:54,930][ INFO][PID:1821139] Checking for cancel request [2026-05-13 02:04:59,932][ INFO][PID:1821139] Checking for cancel request [2026-05-13 02:05:04,935][ INFO][PID:1821139] Checking for cancel request [2026-05-13 02:05:09,937][ INFO][PID:1821139] Checking for cancel request [2026-05-13 02:05:14,938][ INFO][PID:1821139] Checking for cancel request [2026-05-13 02:05:19,950][ INFO][PID:1821139] Checking for cancel request [2026-05-13 02:05:24,953][ INFO][PID:1821139] Checking for cancel request [2026-05-13 02:05:29,955][ INFO][PID:1821139] Checking for cancel request [2026-05-13 02:05:34,957][ INFO][PID:1821139] Checking for cancel request [2026-05-13 02:05:39,964][ INFO][PID:1821139] Checking for cancel request [2026-05-13 02:05:44,966][ INFO][PID:1821139] Checking for cancel request [2026-05-13 02:05:49,968][ INFO][PID:1821139] Checking for cancel request [2026-05-13 02:05:54,969][ INFO][PID:1821139] Checking for cancel request [2026-05-13 02:05:59,973][ INFO][PID:1821139] Checking for cancel request [2026-05-13 02:06:04,977][ INFO][PID:1821139] Checking for cancel request [2026-05-13 02:06:09,982][ INFO][PID:1821139] Checking for cancel request [2026-05-13 02:06:14,984][ INFO][PID:1821139] Checking for cancel request [2026-05-13 02:06:19,992][ INFO][PID:1821139] Checking for cancel request [2026-05-13 02:06:24,995][ INFO][PID:1821139] Checking for cancel request [2026-05-13 02:06:30,002][ INFO][PID:1821139] Checking for cancel request [2026-05-13 02:06:35,004][ INFO][PID:1821139] Checking for cancel request [2026-05-13 02:06:40,011][ INFO][PID:1821139] Checking for cancel request [2026-05-13 02:06:45,017][ INFO][PID:1821139] Checking for cancel request [2026-05-13 02:06:50,020][ INFO][PID:1821139] Checking for cancel request [2026-05-13 02:06:55,022][ INFO][PID:1821139] Checking for cancel request [2026-05-13 02:07:00,024][ INFO][PID:1821139] Checking for cancel request [2026-05-13 02:07:05,029][ INFO][PID:1821139] Checking for cancel request [2026-05-13 02:07:10,033][ INFO][PID:1821139] Checking for cancel request [2026-05-13 02:07:15,050][ INFO][PID:1821139] Checking for cancel request [2026-05-13 02:07:20,059][ INFO][PID:1821139] Checking for cancel request [2026-05-13 02:07:25,074][ INFO][PID:1821139] Checking for cancel request [2026-05-13 02:07:30,085][ INFO][PID:1821139] Checking for cancel request [2026-05-13 02:07:35,109][ INFO][PID:1821139] Checking for cancel request [2026-05-13 02:07:40,119][ INFO][PID:1821139] Checking for cancel request [2026-05-13 02:07:45,125][ INFO][PID:1821139] Checking for cancel request [2026-05-13 02:07:50,131][ INFO][PID:1821139] Checking for cancel request [2026-05-13 02:07:55,135][ INFO][PID:1821139] Checking for cancel request [2026-05-13 02:08:00,146][ INFO][PID:1821139] Checking for cancel request [2026-05-13 02:08:05,179][ INFO][PID:1821139] Checking for cancel request [2026-05-13 02:08:10,192][ INFO][PID:1821139] Checking for cancel request [2026-05-13 02:08:15,218][ INFO][PID:1821139] Checking for cancel request [2026-05-13 02:08:20,238][ INFO][PID:1821139] Checking for cancel request [2026-05-13 02:08:25,240][ INFO][PID:1821139] Checking for cancel request [2026-05-13 02:08:30,272][ INFO][PID:1821139] Checking for cancel request [2026-05-13 02:08:35,286][ INFO][PID:1821139] Checking for cancel request [2026-05-13 02:08:40,310][ INFO][PID:1821139] Checking for cancel request [2026-05-13 02:08:45,330][ INFO][PID:1821139] Checking for cancel request [2026-05-13 02:08:50,350][ INFO][PID:1821139] Checking for cancel request [2026-05-13 02:08:55,378][ INFO][PID:1821139] Checking for cancel request [2026-05-13 02:09:00,407][ INFO][PID:1821139] Checking for cancel request [2026-05-13 02:09:05,415][ INFO][PID:1821139] Checking for cancel request [2026-05-13 02:09:10,421][ INFO][PID:1821139] Checking for cancel request [2026-05-13 02:09:15,444][ INFO][PID:1821139] Checking for cancel request [2026-05-13 02:09:20,448][ INFO][PID:1821139] Checking for cancel request [2026-05-13 02:09:25,474][ INFO][PID:1821139] Checking for cancel request [2026-05-13 02:09:30,483][ INFO][PID:1821139] Checking for cancel request [2026-05-13 02:09:35,489][ INFO][PID:1821139] Checking for cancel request [2026-05-13 02:09:40,494][ INFO][PID:1821139] Checking for cancel request [2026-05-13 02:09:45,521][ INFO][PID:1821139] Checking for cancel request [2026-05-13 02:09:50,530][ INFO][PID:1821139] Checking for cancel request [2026-05-13 02:09:55,539][ INFO][PID:1821139] Checking for cancel request [2026-05-13 02:10:00,550][ INFO][PID:1821139] Checking for cancel request [2026-05-13 02:10:05,557][ INFO][PID:1821139] Checking for cancel request [2026-05-13 02:10:10,562][ INFO][PID:1821139] Checking for cancel request [2026-05-13 02:10:15,566][ INFO][PID:1821139] Checking for cancel request [2026-05-13 02:10:20,577][ INFO][PID:1821139] Checking for cancel request [2026-05-13 02:10:25,595][ INFO][PID:1821139] Checking for cancel request [2026-05-13 02:10:30,608][ INFO][PID:1821139] Checking for cancel request [2026-05-13 02:10:35,622][ INFO][PID:1821139] Checking for cancel request [2026-05-13 02:10:40,640][ INFO][PID:1821139] Checking for cancel request [2026-05-13 02:10:45,642][ INFO][PID:1821139] Checking for cancel request [2026-05-13 02:10:50,647][ INFO][PID:1821139] Checking for cancel request [2026-05-13 02:10:55,651][ INFO][PID:1821139] Checking for cancel request [2026-05-13 02:11:00,656][ INFO][PID:1821139] Checking for cancel request [2026-05-13 02:11:05,670][ INFO][PID:1821139] Checking for cancel request [2026-05-13 02:11:10,673][ INFO][PID:1821139] Checking for cancel request [2026-05-13 02:11:15,680][ INFO][PID:1821139] Checking for cancel request [2026-05-13 02:11:20,690][ INFO][PID:1821139] Checking for cancel request [2026-05-13 02:11:25,701][ INFO][PID:1821139] Checking for cancel request [2026-05-13 02:11:30,734][ INFO][PID:1821139] Checking for cancel request [2026-05-13 02:11:35,737][ INFO][PID:1821139] Checking for cancel request [2026-05-13 02:11:40,740][ INFO][PID:1821139] Checking for cancel request [2026-05-13 02:11:45,747][ INFO][PID:1821139] Checking for cancel request [2026-05-13 02:11:50,769][ INFO][PID:1821139] Checking for cancel request [2026-05-13 02:11:55,778][ INFO][PID:1821139] Checking for cancel request [2026-05-13 02:12:00,828][ INFO][PID:1821139] Checking for cancel request [2026-05-13 02:12:05,849][ INFO][PID:1821139] Checking for cancel request [2026-05-13 02:12:10,859][ INFO][PID:1821139] Checking for cancel request [2026-05-13 02:12:15,864][ INFO][PID:1821139] Checking for cancel request [2026-05-13 02:12:20,895][ INFO][PID:1821139] Checking for cancel request [2026-05-13 02:12:25,908][ INFO][PID:1821139] Checking for cancel request [2026-05-13 02:12:30,916][ INFO][PID:1821139] Checking for cancel request [2026-05-13 02:12:35,925][ INFO][PID:1821139] Checking for cancel request [2026-05-13 02:12:40,939][ INFO][PID:1821139] Checking for cancel request [2026-05-13 02:12:45,958][ INFO][PID:1821139] Checking for cancel request [2026-05-13 02:12:50,961][ INFO][PID:1821139] Checking for cancel request [2026-05-13 02:12:55,965][ INFO][PID:1821139] Checking for cancel request [2026-05-13 02:13:00,971][ INFO][PID:1821139] Checking for cancel request [2026-05-13 02:13:05,976][ INFO][PID:1821139] Checking for cancel request [2026-05-13 02:13:10,979][ INFO][PID:1821139] Checking for cancel request [2026-05-13 02:13:15,990][ INFO][PID:1821139] Checking for cancel request [2026-05-13 02:13:16,042][ INFO][PID:1821139] Downloading results from builder [2026-05-13 02:13:16,066][ INFO][PID:1821139] rsyncing of mockbuilder@[2620:52:6:1161:dead:beef:cafe:c13d]:/var/lib/copr-rpmbuild/results/ to /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5101/srpm-builds/10452335 started [2026-05-13 02:13:16,126][ INFO][PID:1821139] Popen command started: /usr/bin/rsync -rltDvH --chmod=D755,F644 -e 'ssh -F /home/copr/.ssh/config' mockbuilder@[2620:52:6:1161:dead:beef:cafe:c13d]:/var/lib/copr-rpmbuild/results/ /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5101/srpm-builds/10452335/ &> /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5101/srpm-builds/10452335/build-10452335.rsync.log [2026-05-13 02:13:28,043][ INFO][PID:1821139] rsyncing finished. [2026-05-13 02:13:28,047][ INFO][PID:1821139] VM Release request [2026-05-13 02:13:28,225][ INFO][PID:1821139] Searching for 'success' file in resultdir [2026-05-13 02:13:28,256][ INFO][PID:1821139] Getting build details [2026-05-13 02:13:28,258][ INFO][PID:1821139] Retrieving SRPM info from /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5101/srpm-builds/10452335 [2026-05-13 02:13:28,310][ INFO][PID:1821139] SRPM URL: https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5101/srpm-builds/10452335/Sunshine-0.0.5101-1.src.rpm [2026-05-13 02:13:28,316][ INFO][PID:1821139] build details: {'srpm_url': 'https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5101/srpm-builds/10452335/Sunshine-0.0.5101-1.src.rpm', 'pkg_name': 'Sunshine', 'pkg_version': '0.0.5101-1'} [2026-05-13 02:13:28,325][ INFO][PID:1821139] Finished build: id=10452335 failed=False timeout=108000 destdir=/var/lib/copr/public_html/results/lizardbyte/pulls:pr:5101 chroot=srpm-builds [2026-05-13 02:13:28,398][ INFO][PID:1821139] Worker succeeded build, took 549.7628660202026 [2026-05-13 02:13:28,420][ INFO][PID:1821139] 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:5101", "submitter": null, "ended_on": 1778638408.39795, "started_on": 1778637858.635084, "submitted_on": null, "status": 1, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10452335", "build_id": 10452335, "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\": \"tmp10filsw3\", \"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:5101/srpm-builds/10452335/Sunshine-0.0.5101-1.src.rpm", "uses_devel_repo": null, "sandbox": "lizardbyte/pulls--aaeb3966-bd43-4ba3-aada-b74e22940df3", "results": { "architecture_specific_tags": { "fedora-42": {}, "fedora-43": {}, "fedora-44": {}, "fedora-rawhide": {}, "opensuse-leap-15.6": {} }, "name": "Sunshine", "epoch": null, "version": "0.0.5101", "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:5101", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5101", "result_dir": "10452335", "built_packages": "", "tags": [ "arch_x86_64" ], "pkg_version": "0.0.5101-1", "id": 10452335, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2026-05-13 02:13:28,995][ INFO][PID:1821139] Sending fedora-messaging bus message in build.end [2026-05-13 02:13:29,338][ INFO][PID:1821139] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5101/srpm-builds/10452335/builder-live.log by gzip [2026-05-13 02:13:29,359][ INFO][PID:1821139] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5101/srpm-builds/10452335/builder-live.log' as PID 1926135 [2026-05-13 02:13:29,386][ INFO][PID:1821139] Finished after 0 seconds with exit code 0 (gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5101/srpm-builds/10452335/builder-live.log) [2026-05-13 02:13:29,388][ INFO][PID:1821139] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5101/srpm-builds/10452335/backend.log by gzip [2026-05-13 02:13:29,393][ INFO][PID:1821139] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5101/srpm-builds/10452335/backend.log' as PID 1926145