[2026-06-15 22:22:36,634][ INFO][PID:1321658] Marking build as starting [2026-06-15 22:22:36,706][ INFO][PID:1321658] Checking for cancel request [2026-06-15 22:22:36,714][ INFO][PID:1321658] VM allocation process starts [2026-06-15 22:22:36,761][ INFO][PID:1321658] Trying to allocate VM: ResallocHost, ticket_id=3454404, requested_tags=['arch_x86_64', 'copr_builder'] [2026-06-15 22:22:39,808][ INFO][PID:1321658] Allocated host ResallocHost, ticket_id=3454404, hostname=23.22.109.133, name=aws_x86_64_reserved_prod_12178584_20260615_221224, requested_tags=['arch_x86_64', 'copr_builder'] [2026-06-15 22:22:39,810][ INFO][PID:1321658] Allocating ssh connection to builder [2026-06-15 22:22:39,812][ INFO][PID:1321658] Checking that builder machine is OK [2026-06-15 22:22:40,125][ INFO][PID:1321658] Installed copr-rpmbuild version: 1.8 [2026-06-15 22:22:40,126][ INFO][PID:1321658] Running remote command: copr-builder-ready srpm-builds [2026-06-15 22:22:40,321][ INFO][PID:1321658] Red Hat subscription not needed for srpm-builds Builder is ready to be used [2026-06-15 22:22:40,322][ INFO][PID:1321658] Filling build.info file with builder info [2026-06-15 22:22:40,323][ INFO][PID:1321658] Checking for cancel request [2026-06-15 22:22:40,325][ INFO][PID:1321658] 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:5295", "submitter": null, "ended_on": null, "started_on": 1781562160.3247893, "submitted_on": null, "status": 3, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10606641", "build_id": 10606641, "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\": \"tmp4dva1pmp\", \"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--b182462f-6a5d-4481-94bd-afa296c73c65", "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:5295", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5295", "result_dir": "10606641", "built_packages": "", "tags": [ "arch_x86_64" ], "rpmeta_prediction": null, "id": 10606641, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2026-06-15 22:22:40,370][ INFO][PID:1321658] Sending fedora-messaging bus message in build.start [2026-06-15 22:22:40,930][ INFO][PID:1321658] Sending fedora-messaging bus message in chroot.start [2026-06-15 22:22:40,960][ INFO][PID:1321658] Starting remote build: copr-rpmbuild --verbose --drop-resultdir --srpm --task-url https://copr.fedorainfracloud.org/backend/get-srpm-build-task/10606641 --detached [2026-06-15 22:22:41,440][ INFO][PID:1321658] The copr-rpmbuild seems started, per: stdout: stderr: Warning: Permanently added '23.22.109.133' (ED25519) to the list of known hosts. [2026-06-15 22:22:41,441][ INFO][PID:1321658] Downloading the builder-live.log file, attempt 1 [2026-06-15 22:22:41,518][ INFO][PID:1321658] Popen command started: ssh -F /home/copr/.ssh/config mockbuilder@23.22.109.133 copr-rpmbuild-log [2026-06-15 22:22:46,446][ INFO][PID:1321658] Periodic builder liveness probe: alive [2026-06-15 22:22:46,447][ INFO][PID:1321658] Checking for cancel request [2026-06-15 22:22:51,448][ INFO][PID:1321658] Checking for cancel request [2026-06-15 22:22:56,450][ INFO][PID:1321658] Checking for cancel request [2026-06-15 22:23:01,451][ INFO][PID:1321658] Checking for cancel request [2026-06-15 22:23:06,452][ INFO][PID:1321658] Checking for cancel request [2026-06-15 22:23:11,454][ INFO][PID:1321658] Checking for cancel request [2026-06-15 22:23:16,455][ INFO][PID:1321658] Checking for cancel request [2026-06-15 22:23:21,456][ INFO][PID:1321658] Checking for cancel request [2026-06-15 22:23:26,458][ INFO][PID:1321658] Checking for cancel request [2026-06-15 22:23:31,459][ INFO][PID:1321658] Checking for cancel request [2026-06-15 22:23:36,460][ INFO][PID:1321658] Checking for cancel request [2026-06-15 22:23:41,461][ INFO][PID:1321658] Checking for cancel request [2026-06-15 22:23:46,463][ INFO][PID:1321658] Checking for cancel request [2026-06-15 22:23:51,464][ INFO][PID:1321658] Checking for cancel request [2026-06-15 22:23:56,465][ INFO][PID:1321658] Checking for cancel request [2026-06-15 22:24:01,466][ INFO][PID:1321658] Checking for cancel request [2026-06-15 22:24:06,468][ INFO][PID:1321658] Checking for cancel request [2026-06-15 22:24:11,470][ INFO][PID:1321658] Checking for cancel request [2026-06-15 22:24:16,471][ INFO][PID:1321658] Checking for cancel request [2026-06-15 22:24:21,472][ INFO][PID:1321658] Checking for cancel request [2026-06-15 22:24:26,473][ INFO][PID:1321658] Checking for cancel request [2026-06-15 22:24:31,475][ INFO][PID:1321658] Checking for cancel request [2026-06-15 22:24:36,476][ INFO][PID:1321658] Checking for cancel request [2026-06-15 22:24:41,477][ INFO][PID:1321658] Checking for cancel request [2026-06-15 22:24:46,479][ INFO][PID:1321658] Checking for cancel request [2026-06-15 22:24:51,480][ INFO][PID:1321658] Checking for cancel request [2026-06-15 22:24:56,482][ INFO][PID:1321658] Checking for cancel request [2026-06-15 22:25:01,483][ INFO][PID:1321658] Checking for cancel request [2026-06-15 22:25:06,485][ INFO][PID:1321658] Checking for cancel request [2026-06-15 22:25:11,486][ INFO][PID:1321658] Checking for cancel request [2026-06-15 22:25:16,487][ INFO][PID:1321658] Checking for cancel request [2026-06-15 22:25:21,489][ INFO][PID:1321658] Checking for cancel request [2026-06-15 22:25:26,490][ INFO][PID:1321658] Checking for cancel request [2026-06-15 22:25:31,491][ INFO][PID:1321658] Checking for cancel request [2026-06-15 22:25:36,493][ INFO][PID:1321658] Checking for cancel request [2026-06-15 22:25:41,494][ INFO][PID:1321658] Checking for cancel request [2026-06-15 22:25:46,495][ INFO][PID:1321658] Checking for cancel request [2026-06-15 22:25:51,496][ INFO][PID:1321658] Checking for cancel request [2026-06-15 22:25:56,498][ INFO][PID:1321658] Checking for cancel request [2026-06-15 22:26:01,499][ INFO][PID:1321658] Checking for cancel request [2026-06-15 22:26:06,501][ INFO][PID:1321658] Checking for cancel request [2026-06-15 22:26:11,502][ INFO][PID:1321658] Checking for cancel request [2026-06-15 22:26:16,503][ INFO][PID:1321658] Checking for cancel request [2026-06-15 22:26:21,504][ INFO][PID:1321658] Checking for cancel request [2026-06-15 22:26:26,506][ INFO][PID:1321658] Checking for cancel request [2026-06-15 22:26:31,507][ INFO][PID:1321658] Checking for cancel request [2026-06-15 22:26:36,508][ INFO][PID:1321658] Checking for cancel request [2026-06-15 22:26:41,509][ INFO][PID:1321658] Checking for cancel request [2026-06-15 22:26:46,510][ INFO][PID:1321658] Checking for cancel request [2026-06-15 22:26:51,512][ INFO][PID:1321658] Checking for cancel request [2026-06-15 22:26:56,513][ INFO][PID:1321658] Checking for cancel request [2026-06-15 22:27:01,514][ INFO][PID:1321658] Checking for cancel request [2026-06-15 22:27:06,515][ INFO][PID:1321658] Checking for cancel request [2026-06-15 22:27:11,517][ INFO][PID:1321658] Checking for cancel request [2026-06-15 22:27:16,518][ INFO][PID:1321658] Checking for cancel request [2026-06-15 22:27:21,519][ INFO][PID:1321658] Checking for cancel request [2026-06-15 22:27:26,520][ INFO][PID:1321658] Checking for cancel request [2026-06-15 22:27:31,521][ INFO][PID:1321658] Checking for cancel request [2026-06-15 22:27:36,523][ INFO][PID:1321658] Checking for cancel request [2026-06-15 22:27:41,524][ INFO][PID:1321658] Checking for cancel request [2026-06-15 22:27:46,525][ INFO][PID:1321658] Checking for cancel request [2026-06-15 22:27:51,526][ INFO][PID:1321658] Checking for cancel request [2026-06-15 22:27:56,528][ INFO][PID:1321658] Checking for cancel request [2026-06-15 22:28:01,529][ INFO][PID:1321658] Checking for cancel request [2026-06-15 22:28:06,530][ INFO][PID:1321658] Checking for cancel request [2026-06-15 22:28:11,531][ INFO][PID:1321658] Checking for cancel request [2026-06-15 22:28:16,532][ INFO][PID:1321658] Checking for cancel request [2026-06-15 22:28:21,534][ INFO][PID:1321658] Checking for cancel request [2026-06-15 22:28:26,535][ INFO][PID:1321658] Checking for cancel request [2026-06-15 22:28:31,536][ INFO][PID:1321658] Checking for cancel request [2026-06-15 22:28:36,538][ INFO][PID:1321658] Checking for cancel request [2026-06-15 22:28:41,539][ INFO][PID:1321658] Checking for cancel request [2026-06-15 22:28:46,540][ INFO][PID:1321658] Checking for cancel request [2026-06-15 22:28:51,542][ INFO][PID:1321658] Checking for cancel request [2026-06-15 22:28:56,543][ INFO][PID:1321658] Checking for cancel request [2026-06-15 22:29:01,544][ INFO][PID:1321658] Checking for cancel request [2026-06-15 22:29:06,545][ INFO][PID:1321658] Checking for cancel request [2026-06-15 22:29:11,547][ INFO][PID:1321658] Checking for cancel request [2026-06-15 22:29:16,548][ INFO][PID:1321658] Checking for cancel request [2026-06-15 22:29:21,549][ INFO][PID:1321658] Checking for cancel request [2026-06-15 22:29:26,550][ INFO][PID:1321658] Checking for cancel request [2026-06-15 22:29:31,551][ INFO][PID:1321658] Checking for cancel request [2026-06-15 22:29:36,553][ INFO][PID:1321658] Checking for cancel request [2026-06-15 22:29:41,554][ INFO][PID:1321658] Checking for cancel request [2026-06-15 22:29:46,555][ INFO][PID:1321658] Checking for cancel request [2026-06-15 22:29:51,557][ INFO][PID:1321658] Checking for cancel request [2026-06-15 22:29:56,558][ INFO][PID:1321658] Checking for cancel request [2026-06-15 22:30:01,559][ INFO][PID:1321658] Checking for cancel request [2026-06-15 22:30:06,560][ INFO][PID:1321658] Checking for cancel request [2026-06-15 22:30:11,562][ INFO][PID:1321658] Checking for cancel request [2026-06-15 22:30:16,563][ INFO][PID:1321658] Checking for cancel request [2026-06-15 22:30:21,564][ INFO][PID:1321658] Checking for cancel request [2026-06-15 22:30:26,565][ INFO][PID:1321658] Checking for cancel request [2026-06-15 22:30:31,567][ INFO][PID:1321658] Checking for cancel request [2026-06-15 22:30:36,568][ INFO][PID:1321658] Checking for cancel request [2026-06-15 22:30:41,569][ INFO][PID:1321658] Checking for cancel request [2026-06-15 22:30:46,570][ INFO][PID:1321658] Checking for cancel request [2026-06-15 22:30:51,572][ INFO][PID:1321658] Checking for cancel request [2026-06-15 22:30:56,573][ INFO][PID:1321658] Checking for cancel request [2026-06-15 22:31:01,574][ INFO][PID:1321658] Checking for cancel request [2026-06-15 22:31:06,575][ INFO][PID:1321658] Checking for cancel request [2026-06-15 22:31:11,577][ INFO][PID:1321658] Checking for cancel request [2026-06-15 22:31:16,578][ INFO][PID:1321658] Checking for cancel request [2026-06-15 22:31:21,579][ INFO][PID:1321658] Checking for cancel request [2026-06-15 22:31:26,581][ INFO][PID:1321658] Checking for cancel request [2026-06-15 22:31:31,656][ INFO][PID:1321658] Checking for cancel request [2026-06-15 22:31:31,871][ INFO][PID:1321658] Downloading results from builder [2026-06-15 22:31:31,872][ INFO][PID:1321658] rsyncing of mockbuilder@23.22.109.133:/var/lib/copr-rpmbuild/results/ to /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5295/srpm-builds/10606641 started [2026-06-15 22:31:31,873][ INFO][PID:1321658] Popen command started: /usr/bin/rsync -rltDvH --chmod=D755,F644 -e 'ssh -F /home/copr/.ssh/config' mockbuilder@23.22.109.133:/var/lib/copr-rpmbuild/results/ /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5295/srpm-builds/10606641/ &> /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5295/srpm-builds/10606641/build-10606641.rsync.log [2026-06-15 22:31:36,097][ INFO][PID:1321658] rsyncing finished. [2026-06-15 22:31:36,098][ INFO][PID:1321658] VM Release request [2026-06-15 22:31:36,108][ INFO][PID:1321658] Searching for 'success' file in resultdir [2026-06-15 22:31:36,109][ INFO][PID:1321658] Getting build details [2026-06-15 22:31:36,109][ INFO][PID:1321658] Retrieving SRPM info from /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5295/srpm-builds/10606641 [2026-06-15 22:31:36,110][ INFO][PID:1321658] SRPM URL: https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5295/srpm-builds/10606641/Sunshine-0.0.5295-1.src.rpm [2026-06-15 22:31:36,110][ INFO][PID:1321658] build details: {'srpm_url': 'https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5295/srpm-builds/10606641/Sunshine-0.0.5295-1.src.rpm', 'pkg_name': 'Sunshine', 'pkg_version': '0.0.5295-1'} [2026-06-15 22:31:36,111][ INFO][PID:1321658] Finished build: id=10606641 failed=False timeout=108000 destdir=/var/lib/copr/public_html/results/lizardbyte/pulls:pr:5295 chroot=srpm-builds [2026-06-15 22:31:36,112][ INFO][PID:1321658] Worker succeeded build, took 535.7880840301514 [2026-06-15 22:31:36,113][ INFO][PID:1321658] 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:5295", "submitter": null, "ended_on": 1781562696.1128733, "started_on": 1781562160.3247893, "submitted_on": null, "status": 1, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10606641", "build_id": 10606641, "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\": \"tmp4dva1pmp\", \"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:5295/srpm-builds/10606641/Sunshine-0.0.5295-1.src.rpm", "uses_devel_repo": null, "sandbox": "lizardbyte/pulls--b182462f-6a5d-4481-94bd-afa296c73c65", "results": { "architecture_specific_tags": { "fedora-42": {}, "fedora-43": {}, "fedora-44": {}, "fedora-rawhide": {}, "opensuse-leap-15.6": {} }, "name": "Sunshine", "epoch": null, "version": "0.0.5295", "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:5295", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5295", "result_dir": "10606641", "built_packages": "", "tags": [ "arch_x86_64" ], "rpmeta_prediction": null, "pkg_version": "0.0.5295-1", "id": 10606641, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2026-06-15 22:31:36,167][ INFO][PID:1321658] Sending fedora-messaging bus message in build.end [2026-06-15 22:31:36,195][ INFO][PID:1321658] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5295/srpm-builds/10606641/builder-live.log by gzip [2026-06-15 22:31:36,197][ INFO][PID:1321658] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5295/srpm-builds/10606641/builder-live.log' as PID 1349807 [2026-06-15 22:31:36,204][ INFO][PID:1321658] Finished after 0 seconds with exit code 0 (gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5295/srpm-builds/10606641/builder-live.log) [2026-06-15 22:31:36,205][ INFO][PID:1321658] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5295/srpm-builds/10606641/backend.log by gzip [2026-06-15 22:31:36,206][ INFO][PID:1321658] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5295/srpm-builds/10606641/backend.log' as PID 1349808