[2026-05-18 02:36:05,504][ INFO][PID:2896257] Marking build as starting [2026-05-18 02:36:05,538][ INFO][PID:2896257] Checking for cancel request [2026-05-18 02:36:05,539][ INFO][PID:2896257] VM allocation process starts [2026-05-18 02:36:05,551][ INFO][PID:2896257] Trying to allocate VM: ResallocHost, ticket_id=2941182, requested_tags=['arch_x86_64', 'copr_builder'] [2026-05-18 02:36:08,615][ INFO][PID:2896257] Allocated host ResallocHost, ticket_id=2941182, hostname=32.192.91.32, name=aws_x86_64_reserved_prod_08891451_20260518_021032, requested_tags=['arch_x86_64', 'copr_builder'] [2026-05-18 02:36:08,616][ INFO][PID:2896257] Allocating ssh connection to builder [2026-05-18 02:36:08,616][ INFO][PID:2896257] Checking that builder machine is OK [2026-05-18 02:36:08,974][ INFO][PID:2896257] Installed copr-rpmbuild version: 1.8 [2026-05-18 02:36:08,975][ INFO][PID:2896257] Running remote command: copr-builder-ready srpm-builds [2026-05-18 02:36:09,198][ INFO][PID:2896257] Red Hat subscription not needed for srpm-builds Builder is ready to be used [2026-05-18 02:36:09,676][ INFO][PID:2896257] Filling build.info file with builder info [2026-05-18 02:36:09,677][ INFO][PID:2896257] Checking for cancel request [2026-05-18 02:36:09,678][ INFO][PID:2896257] 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:5144", "submitter": null, "ended_on": null, "started_on": 1779071769.6785765, "submitted_on": null, "status": 3, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10473936", "build_id": 10473936, "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\": \"tmplu_q_1zr\", \"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--439495c3-db04-4299-bd94-a0fdea2c7715", "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:5144", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5144", "result_dir": "10473936", "built_packages": "", "tags": [ "arch_x86_64" ], "id": 10473936, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2026-05-18 02:36:09,715][ INFO][PID:2896257] Sending fedora-messaging bus message in build.start [2026-05-18 02:36:10,305][ INFO][PID:2896257] Sending fedora-messaging bus message in chroot.start [2026-05-18 02:36:10,332][ INFO][PID:2896257] Starting remote build: copr-rpmbuild --verbose --drop-resultdir --srpm --task-url https://copr.fedorainfracloud.org/backend/get-srpm-build-task/10473936 --detached [2026-05-18 02:36:10,799][ INFO][PID:2896257] The copr-rpmbuild seems started, per: stdout: stderr: Warning: Permanently added '32.192.91.32' (ED25519) to the list of known hosts. [2026-05-18 02:36:10,800][ INFO][PID:2896257] Downloading the builder-live.log file, attempt 1 [2026-05-18 02:36:10,802][ INFO][PID:2896257] Popen command started: ssh -F /home/copr/.ssh/config mockbuilder@32.192.91.32 copr-rpmbuild-log [2026-05-18 02:36:15,805][ INFO][PID:2896257] Periodic builder liveness probe: alive [2026-05-18 02:36:15,806][ INFO][PID:2896257] Checking for cancel request [2026-05-18 02:36:20,807][ INFO][PID:2896257] Checking for cancel request [2026-05-18 02:36:25,809][ INFO][PID:2896257] Checking for cancel request [2026-05-18 02:36:30,810][ INFO][PID:2896257] Checking for cancel request [2026-05-18 02:36:35,811][ INFO][PID:2896257] Checking for cancel request [2026-05-18 02:36:40,812][ INFO][PID:2896257] Checking for cancel request [2026-05-18 02:36:45,814][ INFO][PID:2896257] Checking for cancel request [2026-05-18 02:36:50,815][ INFO][PID:2896257] Checking for cancel request [2026-05-18 02:36:55,816][ INFO][PID:2896257] Checking for cancel request [2026-05-18 02:37:00,817][ INFO][PID:2896257] Checking for cancel request [2026-05-18 02:37:05,848][ INFO][PID:2896257] Checking for cancel request [2026-05-18 02:37:10,850][ INFO][PID:2896257] Checking for cancel request [2026-05-18 02:37:15,852][ INFO][PID:2896257] Checking for cancel request [2026-05-18 02:37:20,854][ INFO][PID:2896257] Checking for cancel request [2026-05-18 02:37:25,855][ INFO][PID:2896257] Checking for cancel request [2026-05-18 02:37:30,857][ INFO][PID:2896257] Checking for cancel request [2026-05-18 02:37:35,858][ INFO][PID:2896257] Checking for cancel request [2026-05-18 02:37:40,859][ INFO][PID:2896257] Checking for cancel request [2026-05-18 02:37:45,861][ INFO][PID:2896257] Checking for cancel request [2026-05-18 02:37:50,868][ INFO][PID:2896257] Checking for cancel request [2026-05-18 02:37:55,869][ INFO][PID:2896257] Checking for cancel request [2026-05-18 02:38:00,872][ INFO][PID:2896257] Checking for cancel request [2026-05-18 02:38:05,874][ INFO][PID:2896257] Checking for cancel request [2026-05-18 02:38:10,876][ INFO][PID:2896257] Checking for cancel request [2026-05-18 02:38:15,877][ INFO][PID:2896257] Checking for cancel request [2026-05-18 02:38:20,878][ INFO][PID:2896257] Checking for cancel request [2026-05-18 02:38:25,882][ INFO][PID:2896257] Checking for cancel request [2026-05-18 02:38:30,885][ INFO][PID:2896257] Checking for cancel request [2026-05-18 02:38:35,887][ INFO][PID:2896257] Checking for cancel request [2026-05-18 02:38:40,890][ INFO][PID:2896257] Checking for cancel request [2026-05-18 02:38:45,892][ INFO][PID:2896257] Checking for cancel request [2026-05-18 02:38:50,893][ INFO][PID:2896257] Checking for cancel request [2026-05-18 02:38:55,894][ INFO][PID:2896257] Checking for cancel request [2026-05-18 02:39:00,897][ INFO][PID:2896257] Checking for cancel request [2026-05-18 02:39:05,902][ INFO][PID:2896257] Checking for cancel request [2026-05-18 02:39:10,909][ INFO][PID:2896257] Checking for cancel request [2026-05-18 02:39:15,910][ INFO][PID:2896257] Checking for cancel request [2026-05-18 02:39:20,912][ INFO][PID:2896257] Checking for cancel request [2026-05-18 02:39:25,913][ INFO][PID:2896257] Checking for cancel request [2026-05-18 02:39:30,915][ INFO][PID:2896257] Checking for cancel request [2026-05-18 02:39:35,916][ INFO][PID:2896257] Checking for cancel request [2026-05-18 02:39:40,918][ INFO][PID:2896257] Checking for cancel request [2026-05-18 02:39:45,919][ INFO][PID:2896257] Checking for cancel request [2026-05-18 02:39:50,920][ INFO][PID:2896257] Checking for cancel request [2026-05-18 02:39:55,930][ INFO][PID:2896257] Checking for cancel request [2026-05-18 02:40:00,932][ INFO][PID:2896257] Checking for cancel request [2026-05-18 02:40:05,933][ INFO][PID:2896257] Checking for cancel request [2026-05-18 02:40:10,935][ INFO][PID:2896257] Checking for cancel request [2026-05-18 02:40:15,947][ INFO][PID:2896257] Checking for cancel request [2026-05-18 02:40:20,948][ INFO][PID:2896257] Checking for cancel request [2026-05-18 02:40:26,012][ INFO][PID:2896257] Checking for cancel request [2026-05-18 02:40:31,014][ INFO][PID:2896257] Checking for cancel request [2026-05-18 02:40:36,230][ INFO][PID:2896257] Checking for cancel request [2026-05-18 02:40:41,232][ INFO][PID:2896257] Checking for cancel request [2026-05-18 02:40:46,234][ INFO][PID:2896257] Checking for cancel request [2026-05-18 02:40:51,236][ INFO][PID:2896257] Checking for cancel request [2026-05-18 02:40:56,237][ INFO][PID:2896257] Checking for cancel request [2026-05-18 02:41:01,239][ INFO][PID:2896257] Checking for cancel request [2026-05-18 02:41:06,241][ INFO][PID:2896257] Checking for cancel request [2026-05-18 02:41:11,243][ INFO][PID:2896257] Checking for cancel request [2026-05-18 02:41:16,247][ INFO][PID:2896257] Checking for cancel request [2026-05-18 02:41:21,248][ INFO][PID:2896257] Checking for cancel request [2026-05-18 02:41:26,250][ INFO][PID:2896257] Checking for cancel request [2026-05-18 02:41:31,251][ INFO][PID:2896257] Checking for cancel request [2026-05-18 02:41:36,252][ INFO][PID:2896257] Checking for cancel request [2026-05-18 02:41:41,254][ INFO][PID:2896257] Checking for cancel request [2026-05-18 02:41:46,255][ INFO][PID:2896257] Checking for cancel request [2026-05-18 02:41:51,256][ INFO][PID:2896257] Checking for cancel request [2026-05-18 02:41:56,258][ INFO][PID:2896257] Checking for cancel request [2026-05-18 02:42:01,259][ INFO][PID:2896257] Checking for cancel request [2026-05-18 02:42:06,261][ INFO][PID:2896257] Checking for cancel request [2026-05-18 02:42:11,262][ INFO][PID:2896257] Checking for cancel request [2026-05-18 02:42:16,263][ INFO][PID:2896257] Checking for cancel request [2026-05-18 02:42:21,265][ INFO][PID:2896257] Checking for cancel request [2026-05-18 02:42:26,266][ INFO][PID:2896257] Checking for cancel request [2026-05-18 02:42:31,267][ INFO][PID:2896257] Checking for cancel request [2026-05-18 02:42:36,269][ INFO][PID:2896257] Checking for cancel request [2026-05-18 02:42:41,271][ INFO][PID:2896257] Checking for cancel request [2026-05-18 02:42:46,273][ INFO][PID:2896257] Checking for cancel request [2026-05-18 02:42:51,274][ INFO][PID:2896257] Checking for cancel request [2026-05-18 02:42:56,276][ INFO][PID:2896257] Checking for cancel request [2026-05-18 02:43:01,277][ INFO][PID:2896257] Checking for cancel request [2026-05-18 02:43:06,278][ INFO][PID:2896257] Checking for cancel request [2026-05-18 02:43:11,279][ INFO][PID:2896257] Checking for cancel request [2026-05-18 02:43:16,280][ INFO][PID:2896257] Checking for cancel request [2026-05-18 02:43:21,282][ INFO][PID:2896257] Checking for cancel request [2026-05-18 02:43:26,283][ INFO][PID:2896257] Checking for cancel request [2026-05-18 02:43:31,284][ INFO][PID:2896257] Checking for cancel request [2026-05-18 02:43:36,286][ INFO][PID:2896257] Checking for cancel request [2026-05-18 02:43:41,288][ INFO][PID:2896257] Checking for cancel request [2026-05-18 02:43:46,289][ INFO][PID:2896257] Checking for cancel request [2026-05-18 02:43:51,290][ INFO][PID:2896257] Checking for cancel request [2026-05-18 02:43:56,291][ INFO][PID:2896257] Checking for cancel request [2026-05-18 02:44:01,292][ INFO][PID:2896257] Checking for cancel request [2026-05-18 02:44:06,293][ INFO][PID:2896257] Checking for cancel request [2026-05-18 02:44:11,295][ INFO][PID:2896257] Checking for cancel request [2026-05-18 02:44:16,296][ INFO][PID:2896257] Checking for cancel request [2026-05-18 02:44:21,298][ INFO][PID:2896257] Checking for cancel request [2026-05-18 02:44:26,299][ INFO][PID:2896257] Checking for cancel request [2026-05-18 02:44:31,300][ INFO][PID:2896257] Checking for cancel request [2026-05-18 02:44:36,306][ INFO][PID:2896257] Checking for cancel request [2026-05-18 02:44:41,307][ INFO][PID:2896257] Checking for cancel request [2026-05-18 02:44:46,309][ INFO][PID:2896257] Checking for cancel request [2026-05-18 02:44:51,310][ INFO][PID:2896257] Checking for cancel request [2026-05-18 02:44:56,312][ INFO][PID:2896257] Checking for cancel request [2026-05-18 02:45:01,313][ INFO][PID:2896257] Checking for cancel request [2026-05-18 02:45:06,314][ INFO][PID:2896257] Checking for cancel request [2026-05-18 02:45:11,316][ INFO][PID:2896257] Checking for cancel request [2026-05-18 02:45:12,114][ INFO][PID:2896257] Downloading results from builder [2026-05-18 02:45:12,147][ INFO][PID:2896257] rsyncing of mockbuilder@32.192.91.32:/var/lib/copr-rpmbuild/results/ to /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5144/srpm-builds/10473936 started [2026-05-18 02:45:12,232][ INFO][PID:2896257] Popen command started: /usr/bin/rsync -rltDvH --chmod=D755,F644 -e 'ssh -F /home/copr/.ssh/config' mockbuilder@32.192.91.32:/var/lib/copr-rpmbuild/results/ /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5144/srpm-builds/10473936/ &> /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5144/srpm-builds/10473936/build-10473936.rsync.log [2026-05-18 02:45:16,305][ INFO][PID:2896257] rsyncing finished. [2026-05-18 02:45:16,309][ INFO][PID:2896257] VM Release request [2026-05-18 02:45:16,548][ INFO][PID:2896257] Searching for 'success' file in resultdir [2026-05-18 02:45:16,624][ INFO][PID:2896257] Getting build details [2026-05-18 02:45:16,626][ INFO][PID:2896257] Retrieving SRPM info from /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5144/srpm-builds/10473936 [2026-05-18 02:45:16,699][ INFO][PID:2896257] SRPM URL: https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5144/srpm-builds/10473936/Sunshine-0.0.5144-1.src.rpm [2026-05-18 02:45:16,701][ INFO][PID:2896257] build details: {'srpm_url': 'https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5144/srpm-builds/10473936/Sunshine-0.0.5144-1.src.rpm', 'pkg_name': 'Sunshine', 'pkg_version': '0.0.5144-1'} [2026-05-18 02:45:16,719][ INFO][PID:2896257] Finished build: id=10473936 failed=False timeout=108000 destdir=/var/lib/copr/public_html/results/lizardbyte/pulls:pr:5144 chroot=srpm-builds [2026-05-18 02:45:16,820][ INFO][PID:2896257] Worker succeeded build, took 547.1402320861816 [2026-05-18 02:45:16,833][ INFO][PID:2896257] 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:5144", "submitter": null, "ended_on": 1779072316.8188086, "started_on": 1779071769.6785765, "submitted_on": null, "status": 1, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10473936", "build_id": 10473936, "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\": \"tmplu_q_1zr\", \"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:5144/srpm-builds/10473936/Sunshine-0.0.5144-1.src.rpm", "uses_devel_repo": null, "sandbox": "lizardbyte/pulls--439495c3-db04-4299-bd94-a0fdea2c7715", "results": { "architecture_specific_tags": { "fedora-42": {}, "fedora-43": {}, "fedora-44": {}, "fedora-rawhide": {}, "opensuse-leap-15.6": {} }, "name": "Sunshine", "epoch": null, "version": "0.0.5144", "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:5144", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5144", "result_dir": "10473936", "built_packages": "", "tags": [ "arch_x86_64" ], "pkg_version": "0.0.5144-1", "id": 10473936, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2026-05-18 02:45:17,664][ INFO][PID:2896257] Sending fedora-messaging bus message in build.end [2026-05-18 02:45:18,077][ INFO][PID:2896257] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5144/srpm-builds/10473936/builder-live.log by gzip [2026-05-18 02:45:18,104][ INFO][PID:2896257] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5144/srpm-builds/10473936/builder-live.log' as PID 2931515 [2026-05-18 02:45:18,130][ INFO][PID:2896257] Finished after 0 seconds with exit code 0 (gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5144/srpm-builds/10473936/builder-live.log) [2026-05-18 02:45:18,134][ INFO][PID:2896257] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5144/srpm-builds/10473936/backend.log by gzip [2026-05-18 02:45:18,136][ INFO][PID:2896257] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5144/srpm-builds/10473936/backend.log' as PID 2931516