[2026-06-07 15:02:51,607][ INFO][PID:3468375] Marking build as starting [2026-06-07 15:02:51,691][ INFO][PID:3468375] Checking for cancel request [2026-06-07 15:02:51,698][ INFO][PID:3468375] VM allocation process starts [2026-06-07 15:02:51,715][ INFO][PID:3468375] Trying to allocate VM: ResallocHost, ticket_id=3325528, requested_tags=['arch_x86_64', 'copr_builder'] [2026-06-07 15:02:56,720][ INFO][PID:3468375] Checking for cancel request [2026-06-07 15:03:01,722][ INFO][PID:3468375] Checking for cancel request [2026-06-07 15:03:03,752][ INFO][PID:3468375] Allocated host ResallocHost, ticket_id=3325528, hostname=3.89.75.195, name=aws_x86_64_reserved_prod_11236311_20260607_145401, requested_tags=['arch_x86_64', 'copr_builder'] [2026-06-07 15:03:03,753][ INFO][PID:3468375] Allocating ssh connection to builder [2026-06-07 15:03:03,753][ INFO][PID:3468375] Checking that builder machine is OK [2026-06-07 15:03:04,109][ INFO][PID:3468375] Installed copr-rpmbuild version: 1.8 [2026-06-07 15:03:04,110][ INFO][PID:3468375] Running remote command: copr-builder-ready srpm-builds [2026-06-07 15:03:04,343][ INFO][PID:3468375] Red Hat subscription not needed for srpm-builds Builder is ready to be used [2026-06-07 15:03:04,344][ INFO][PID:3468375] Filling build.info file with builder info [2026-06-07 15:03:04,345][ INFO][PID:3468375] Checking for cancel request [2026-06-07 15:03:04,348][ INFO][PID:3468375] 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:5260", "submitter": null, "ended_on": null, "started_on": 1780844584.348606, "submitted_on": null, "status": 3, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10576060", "build_id": 10576060, "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\": \"tmps2w_a1xg\", \"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--ed9278eb-5aec-4363-b073-7a2f5238a277", "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:5260", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5260", "result_dir": "10576060", "built_packages": "", "tags": [ "arch_x86_64" ], "rpmeta_prediction": null, "id": 10576060, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2026-06-07 15:03:04,399][ INFO][PID:3468375] Sending fedora-messaging bus message in build.start [2026-06-07 15:03:05,075][ INFO][PID:3468375] Sending fedora-messaging bus message in chroot.start [2026-06-07 15:03:05,132][ INFO][PID:3468375] Starting remote build: copr-rpmbuild --verbose --drop-resultdir --srpm --task-url https://copr.fedorainfracloud.org/backend/get-srpm-build-task/10576060 --detached [2026-06-07 15:03:05,678][ INFO][PID:3468375] The copr-rpmbuild seems started, per: stdout: stderr: Warning: Permanently added '3.89.75.195' (ED25519) to the list of known hosts. [2026-06-07 15:03:05,680][ INFO][PID:3468375] Downloading the builder-live.log file, attempt 1 [2026-06-07 15:03:05,684][ INFO][PID:3468375] Popen command started: ssh -F /home/copr/.ssh/config mockbuilder@3.89.75.195 copr-rpmbuild-log [2026-06-07 15:03:10,719][ INFO][PID:3468375] Periodic builder liveness probe: alive [2026-06-07 15:03:10,720][ INFO][PID:3468375] Checking for cancel request [2026-06-07 15:03:15,720][ INFO][PID:3468375] Checking for cancel request [2026-06-07 15:03:20,722][ INFO][PID:3468375] Checking for cancel request [2026-06-07 15:03:25,724][ INFO][PID:3468375] Checking for cancel request [2026-06-07 15:03:30,725][ INFO][PID:3468375] Checking for cancel request [2026-06-07 15:03:35,726][ INFO][PID:3468375] Checking for cancel request [2026-06-07 15:03:40,728][ INFO][PID:3468375] Checking for cancel request [2026-06-07 15:03:45,729][ INFO][PID:3468375] Checking for cancel request [2026-06-07 15:03:50,731][ INFO][PID:3468375] Checking for cancel request [2026-06-07 15:03:55,732][ INFO][PID:3468375] Checking for cancel request [2026-06-07 15:04:00,734][ INFO][PID:3468375] Checking for cancel request [2026-06-07 15:04:05,736][ INFO][PID:3468375] Checking for cancel request [2026-06-07 15:04:10,738][ INFO][PID:3468375] Checking for cancel request [2026-06-07 15:04:15,740][ INFO][PID:3468375] Checking for cancel request [2026-06-07 15:04:20,741][ INFO][PID:3468375] Checking for cancel request [2026-06-07 15:04:25,743][ INFO][PID:3468375] Checking for cancel request [2026-06-07 15:04:30,744][ INFO][PID:3468375] Checking for cancel request [2026-06-07 15:04:35,745][ INFO][PID:3468375] Checking for cancel request [2026-06-07 15:04:40,747][ INFO][PID:3468375] Checking for cancel request [2026-06-07 15:04:45,748][ INFO][PID:3468375] Checking for cancel request [2026-06-07 15:04:50,750][ INFO][PID:3468375] Checking for cancel request [2026-06-07 15:04:55,752][ INFO][PID:3468375] Checking for cancel request [2026-06-07 15:05:00,754][ INFO][PID:3468375] Checking for cancel request [2026-06-07 15:05:05,757][ INFO][PID:3468375] Checking for cancel request [2026-06-07 15:05:10,759][ INFO][PID:3468375] Checking for cancel request [2026-06-07 15:05:15,761][ INFO][PID:3468375] Checking for cancel request [2026-06-07 15:05:20,763][ INFO][PID:3468375] Checking for cancel request [2026-06-07 15:05:25,765][ INFO][PID:3468375] Checking for cancel request [2026-06-07 15:05:30,774][ INFO][PID:3468375] Checking for cancel request [2026-06-07 15:05:35,778][ INFO][PID:3468375] Checking for cancel request [2026-06-07 15:05:40,780][ INFO][PID:3468375] Checking for cancel request [2026-06-07 15:05:45,782][ INFO][PID:3468375] Checking for cancel request [2026-06-07 15:05:50,784][ INFO][PID:3468375] Checking for cancel request [2026-06-07 15:05:55,785][ INFO][PID:3468375] Checking for cancel request [2026-06-07 15:06:00,788][ INFO][PID:3468375] Checking for cancel request [2026-06-07 15:06:05,789][ INFO][PID:3468375] Checking for cancel request [2026-06-07 15:06:10,793][ INFO][PID:3468375] Checking for cancel request [2026-06-07 15:06:15,795][ INFO][PID:3468375] Checking for cancel request [2026-06-07 15:06:20,799][ INFO][PID:3468375] Checking for cancel request [2026-06-07 15:06:25,802][ INFO][PID:3468375] Checking for cancel request [2026-06-07 15:06:30,804][ INFO][PID:3468375] Checking for cancel request [2026-06-07 15:06:35,806][ INFO][PID:3468375] Checking for cancel request [2026-06-07 15:06:40,809][ INFO][PID:3468375] Checking for cancel request [2026-06-07 15:06:45,812][ INFO][PID:3468375] Checking for cancel request [2026-06-07 15:06:50,814][ INFO][PID:3468375] Checking for cancel request [2026-06-07 15:06:55,821][ INFO][PID:3468375] Checking for cancel request [2026-06-07 15:07:00,823][ INFO][PID:3468375] Checking for cancel request [2026-06-07 15:07:05,826][ INFO][PID:3468375] Checking for cancel request [2026-06-07 15:07:10,832][ INFO][PID:3468375] Checking for cancel request [2026-06-07 15:07:15,836][ INFO][PID:3468375] Checking for cancel request [2026-06-07 15:07:20,839][ INFO][PID:3468375] Checking for cancel request [2026-06-07 15:07:25,843][ INFO][PID:3468375] Checking for cancel request [2026-06-07 15:07:30,845][ INFO][PID:3468375] Checking for cancel request [2026-06-07 15:07:35,848][ INFO][PID:3468375] Checking for cancel request [2026-06-07 15:07:40,856][ INFO][PID:3468375] Checking for cancel request [2026-06-07 15:07:45,858][ INFO][PID:3468375] Checking for cancel request [2026-06-07 15:07:50,863][ INFO][PID:3468375] Checking for cancel request [2026-06-07 15:07:55,870][ INFO][PID:3468375] Checking for cancel request [2026-06-07 15:08:00,872][ INFO][PID:3468375] Checking for cancel request [2026-06-07 15:08:05,874][ INFO][PID:3468375] Checking for cancel request [2026-06-07 15:08:10,878][ INFO][PID:3468375] Checking for cancel request [2026-06-07 15:08:15,883][ INFO][PID:3468375] Checking for cancel request [2026-06-07 15:08:20,885][ INFO][PID:3468375] Checking for cancel request [2026-06-07 15:08:25,887][ INFO][PID:3468375] Checking for cancel request [2026-06-07 15:08:30,889][ INFO][PID:3468375] Checking for cancel request [2026-06-07 15:08:35,892][ INFO][PID:3468375] Checking for cancel request [2026-06-07 15:08:40,897][ INFO][PID:3468375] Checking for cancel request [2026-06-07 15:08:45,908][ INFO][PID:3468375] Checking for cancel request [2026-06-07 15:08:50,911][ INFO][PID:3468375] Checking for cancel request [2026-06-07 15:08:55,914][ INFO][PID:3468375] Checking for cancel request [2026-06-07 15:09:00,917][ INFO][PID:3468375] Checking for cancel request [2026-06-07 15:09:05,919][ INFO][PID:3468375] Checking for cancel request [2026-06-07 15:09:10,922][ INFO][PID:3468375] Checking for cancel request [2026-06-07 15:09:15,926][ INFO][PID:3468375] Checking for cancel request [2026-06-07 15:09:20,930][ INFO][PID:3468375] Checking for cancel request [2026-06-07 15:09:25,938][ INFO][PID:3468375] Checking for cancel request [2026-06-07 15:09:30,942][ INFO][PID:3468375] Checking for cancel request [2026-06-07 15:09:35,944][ INFO][PID:3468375] Checking for cancel request [2026-06-07 15:09:40,947][ INFO][PID:3468375] Checking for cancel request [2026-06-07 15:09:46,054][ INFO][PID:3468375] Checking for cancel request [2026-06-07 15:09:51,059][ INFO][PID:3468375] Checking for cancel request [2026-06-07 15:09:56,224][ INFO][PID:3468375] Checking for cancel request [2026-06-07 15:10:01,234][ INFO][PID:3468375] Checking for cancel request [2026-06-07 15:10:06,325][ INFO][PID:3468375] Checking for cancel request [2026-06-07 15:10:11,328][ INFO][PID:3468375] Checking for cancel request [2026-06-07 15:10:16,329][ INFO][PID:3468375] Checking for cancel request [2026-06-07 15:10:21,337][ INFO][PID:3468375] Checking for cancel request [2026-06-07 15:10:26,341][ INFO][PID:3468375] Checking for cancel request [2026-06-07 15:10:31,350][ INFO][PID:3468375] Checking for cancel request [2026-06-07 15:10:36,354][ INFO][PID:3468375] Checking for cancel request [2026-06-07 15:10:41,357][ INFO][PID:3468375] Checking for cancel request [2026-06-07 15:10:46,360][ INFO][PID:3468375] Checking for cancel request [2026-06-07 15:10:51,362][ INFO][PID:3468375] Checking for cancel request [2026-06-07 15:10:56,365][ INFO][PID:3468375] Checking for cancel request [2026-06-07 15:11:01,369][ INFO][PID:3468375] Checking for cancel request [2026-06-07 15:11:06,370][ INFO][PID:3468375] Checking for cancel request [2026-06-07 15:11:11,372][ INFO][PID:3468375] Checking for cancel request [2026-06-07 15:11:16,374][ INFO][PID:3468375] Checking for cancel request [2026-06-07 15:11:18,235][ INFO][PID:3468375] Downloading results from builder [2026-06-07 15:11:18,236][ INFO][PID:3468375] rsyncing of mockbuilder@3.89.75.195:/var/lib/copr-rpmbuild/results/ to /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5260/srpm-builds/10576060 started [2026-06-07 15:11:18,237][ INFO][PID:3468375] Popen command started: /usr/bin/rsync -rltDvH --chmod=D755,F644 -e 'ssh -F /home/copr/.ssh/config' mockbuilder@3.89.75.195:/var/lib/copr-rpmbuild/results/ /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5260/srpm-builds/10576060/ &> /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5260/srpm-builds/10576060/build-10576060.rsync.log [2026-06-07 15:11:22,972][ INFO][PID:3468375] rsyncing finished. [2026-06-07 15:11:22,973][ INFO][PID:3468375] VM Release request [2026-06-07 15:11:22,996][ INFO][PID:3468375] Searching for 'success' file in resultdir [2026-06-07 15:11:22,997][ INFO][PID:3468375] Getting build details [2026-06-07 15:11:22,998][ INFO][PID:3468375] Retrieving SRPM info from /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5260/srpm-builds/10576060 [2026-06-07 15:11:22,999][ INFO][PID:3468375] SRPM URL: https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5260/srpm-builds/10576060/Sunshine-0.0.5260-1.src.rpm [2026-06-07 15:11:23,000][ INFO][PID:3468375] build details: {'srpm_url': 'https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5260/srpm-builds/10576060/Sunshine-0.0.5260-1.src.rpm', 'pkg_name': 'Sunshine', 'pkg_version': '0.0.5260-1'} [2026-06-07 15:11:23,000][ INFO][PID:3468375] Finished build: id=10576060 failed=False timeout=108000 destdir=/var/lib/copr/public_html/results/lizardbyte/pulls:pr:5260 chroot=srpm-builds [2026-06-07 15:11:23,002][ INFO][PID:3468375] Worker succeeded build, took 498.6542646884918 [2026-06-07 15:11:23,003][ INFO][PID:3468375] 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:5260", "submitter": null, "ended_on": 1780845083.0028708, "started_on": 1780844584.348606, "submitted_on": null, "status": 1, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10576060", "build_id": 10576060, "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\": \"tmps2w_a1xg\", \"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:5260/srpm-builds/10576060/Sunshine-0.0.5260-1.src.rpm", "uses_devel_repo": null, "sandbox": "lizardbyte/pulls--ed9278eb-5aec-4363-b073-7a2f5238a277", "results": { "architecture_specific_tags": { "fedora-42": {}, "fedora-43": {}, "fedora-44": {}, "fedora-rawhide": {}, "opensuse-leap-15.6": {} }, "name": "Sunshine", "epoch": null, "version": "0.0.5260", "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:5260", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5260", "result_dir": "10576060", "built_packages": "", "tags": [ "arch_x86_64" ], "rpmeta_prediction": null, "pkg_version": "0.0.5260-1", "id": 10576060, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2026-06-07 15:11:23,066][ INFO][PID:3468375] Sending fedora-messaging bus message in build.end [2026-06-07 15:11:23,096][ INFO][PID:3468375] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5260/srpm-builds/10576060/builder-live.log by gzip [2026-06-07 15:11:23,098][ INFO][PID:3468375] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5260/srpm-builds/10576060/builder-live.log' as PID 3557498 [2026-06-07 15:11:23,118][ INFO][PID:3468375] Finished after 0 seconds with exit code 0 (gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5260/srpm-builds/10576060/builder-live.log) [2026-06-07 15:11:23,119][ INFO][PID:3468375] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5260/srpm-builds/10576060/backend.log by gzip [2026-06-07 15:11:23,120][ INFO][PID:3468375] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5260/srpm-builds/10576060/backend.log' as PID 3557500