[2026-08-11 14:31:08,493][ INFO][PID:2775903] Marking build as starting [2026-08-11 14:31:08,536][ INFO][PID:2775903] Checking for cancel request [2026-08-11 14:31:08,538][ INFO][PID:2775903] VM allocation process starts [2026-08-11 14:31:08,551][ INFO][PID:2775903] Trying to allocate VM: ResallocHost, ticket_id=4394922, requested_tags=['arch_x86_64', 'copr_builder'] [2026-08-11 14:31:11,571][ INFO][PID:2775903] Allocated host ResallocHost, ticket_id=4394922, hostname=54.234.167.14, name=aws_x86_64_reserved_prod_17867439_20260811_142817, requested_tags=['arch_x86_64', 'copr_builder'] [2026-08-11 14:31:11,573][ INFO][PID:2775903] Allocating ssh connection to builder [2026-08-11 14:31:11,574][ INFO][PID:2775903] Checking that builder machine is OK [2026-08-11 14:31:11,923][ INFO][PID:2775903] Installed copr-rpmbuild version: 1.8 [2026-08-11 14:31:11,925][ INFO][PID:2775903] Running remote command: copr-builder-ready srpm-builds [2026-08-11 14:31:12,127][ INFO][PID:2775903] Red Hat subscription not needed for srpm-builds Builder is ready to be used [2026-08-11 14:31:12,128][ INFO][PID:2775903] Filling build.info file with builder info [2026-08-11 14:31:12,130][ INFO][PID:2775903] Checking for cancel request [2026-08-11 14:31:12,132][ INFO][PID:2775903] 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:5497", "submitter": null, "ended_on": null, "started_on": 1786458672.131797, "submitted_on": null, "status": 3, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10847003", "build_id": 10847003, "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\": \"tmpdhjtjqp8\", \"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--765f6ecc-8cc1-48c4-a2d9-14cdfee239b1", "results": null, "appstream": false, "allow_user_ssh": null, "ssh_public_keys": null, "storage": null, "repos": [], "background": true, "distributions_in_build": [ "fedora-43", "fedora-44", "fedora-rawhide" ], "distributions_in_project": [ "fedora-43", "fedora-44", "fedora-rawhide" ], "destdir": "/var/lib/copr/public_html/results/lizardbyte/pulls:pr:5497", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5497", "result_dir": "10847003", "built_packages": "", "tags": [ "arch_x86_64" ], "rpmeta_prediction": null, "id": 10847003, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2026-08-11 14:31:12,184][ INFO][PID:2775903] Sending fedora-messaging bus message in build.start [2026-08-11 14:31:12,850][ INFO][PID:2775903] Sending fedora-messaging bus message in chroot.start [2026-08-11 14:31:12,889][ INFO][PID:2775903] Starting remote build: copr-rpmbuild --verbose --drop-resultdir --srpm --task-url https://copr.fedorainfracloud.org/backend/get-srpm-build-task/10847003 --detached [2026-08-11 14:31:13,397][ INFO][PID:2775903] The copr-rpmbuild seems started, per: stdout: stderr: Warning: Permanently added '54.234.167.14' (ED25519) to the list of known hosts. [2026-08-11 14:31:13,399][ INFO][PID:2775903] Downloading the builder-live.log file, attempt 1 [2026-08-11 14:31:13,401][ INFO][PID:2775903] Popen command started: ssh -F /home/copr/.ssh/config mockbuilder@54.234.167.14 copr-rpmbuild-log [2026-08-11 14:31:18,407][ INFO][PID:2775903] Periodic builder liveness probe: alive [2026-08-11 14:31:18,408][ INFO][PID:2775903] Checking for cancel request [2026-08-11 14:31:23,409][ INFO][PID:2775903] Checking for cancel request [2026-08-11 14:31:28,411][ INFO][PID:2775903] Checking for cancel request [2026-08-11 14:31:33,412][ INFO][PID:2775903] Checking for cancel request [2026-08-11 14:31:38,414][ INFO][PID:2775903] Checking for cancel request [2026-08-11 14:31:43,416][ INFO][PID:2775903] Checking for cancel request [2026-08-11 14:31:48,417][ INFO][PID:2775903] Checking for cancel request [2026-08-11 14:31:53,419][ INFO][PID:2775903] Checking for cancel request [2026-08-11 14:31:58,420][ INFO][PID:2775903] Checking for cancel request [2026-08-11 14:32:03,421][ INFO][PID:2775903] Checking for cancel request [2026-08-11 14:32:08,423][ INFO][PID:2775903] Checking for cancel request [2026-08-11 14:32:13,429][ INFO][PID:2775903] Checking for cancel request [2026-08-11 14:32:18,431][ INFO][PID:2775903] Checking for cancel request [2026-08-11 14:32:23,432][ INFO][PID:2775903] Checking for cancel request [2026-08-11 14:32:28,435][ INFO][PID:2775903] Checking for cancel request [2026-08-11 14:32:33,438][ INFO][PID:2775903] Checking for cancel request [2026-08-11 14:32:38,440][ INFO][PID:2775903] Checking for cancel request [2026-08-11 14:32:43,441][ INFO][PID:2775903] Checking for cancel request [2026-08-11 14:32:48,443][ INFO][PID:2775903] Checking for cancel request [2026-08-11 14:32:53,444][ INFO][PID:2775903] Checking for cancel request [2026-08-11 14:32:58,446][ INFO][PID:2775903] Checking for cancel request [2026-08-11 14:33:03,448][ INFO][PID:2775903] Checking for cancel request [2026-08-11 14:33:08,449][ INFO][PID:2775903] Checking for cancel request [2026-08-11 14:33:13,453][ INFO][PID:2775903] Checking for cancel request [2026-08-11 14:33:18,454][ INFO][PID:2775903] Checking for cancel request [2026-08-11 14:33:23,456][ INFO][PID:2775903] Checking for cancel request [2026-08-11 14:33:28,457][ INFO][PID:2775903] Checking for cancel request [2026-08-11 14:33:33,458][ INFO][PID:2775903] Checking for cancel request [2026-08-11 14:33:38,460][ INFO][PID:2775903] Checking for cancel request [2026-08-11 14:33:43,461][ INFO][PID:2775903] Checking for cancel request [2026-08-11 14:33:48,463][ INFO][PID:2775903] Checking for cancel request [2026-08-11 14:33:53,465][ INFO][PID:2775903] Checking for cancel request [2026-08-11 14:33:58,466][ INFO][PID:2775903] Checking for cancel request [2026-08-11 14:34:03,467][ INFO][PID:2775903] Checking for cancel request [2026-08-11 14:34:08,469][ INFO][PID:2775903] Checking for cancel request [2026-08-11 14:34:13,471][ INFO][PID:2775903] Checking for cancel request [2026-08-11 14:34:18,472][ INFO][PID:2775903] Checking for cancel request [2026-08-11 14:34:23,474][ INFO][PID:2775903] Checking for cancel request [2026-08-11 14:34:28,475][ INFO][PID:2775903] Checking for cancel request [2026-08-11 14:34:33,477][ INFO][PID:2775903] Checking for cancel request [2026-08-11 14:34:38,479][ INFO][PID:2775903] Checking for cancel request [2026-08-11 14:34:43,481][ INFO][PID:2775903] Checking for cancel request [2026-08-11 14:34:48,482][ INFO][PID:2775903] Checking for cancel request [2026-08-11 14:34:53,483][ INFO][PID:2775903] Checking for cancel request [2026-08-11 14:34:58,485][ INFO][PID:2775903] Checking for cancel request [2026-08-11 14:35:03,486][ INFO][PID:2775903] Checking for cancel request [2026-08-11 14:35:08,487][ INFO][PID:2775903] Checking for cancel request [2026-08-11 14:35:13,489][ INFO][PID:2775903] Checking for cancel request [2026-08-11 14:35:18,493][ INFO][PID:2775903] Checking for cancel request [2026-08-11 14:35:23,502][ INFO][PID:2775903] Checking for cancel request [2026-08-11 14:35:28,504][ INFO][PID:2775903] Checking for cancel request [2026-08-11 14:35:33,505][ INFO][PID:2775903] Checking for cancel request [2026-08-11 14:35:38,509][ INFO][PID:2775903] Checking for cancel request [2026-08-11 14:35:43,511][ INFO][PID:2775903] Checking for cancel request [2026-08-11 14:35:48,513][ INFO][PID:2775903] Checking for cancel request [2026-08-11 14:35:53,515][ INFO][PID:2775903] Checking for cancel request [2026-08-11 14:35:58,520][ INFO][PID:2775903] Checking for cancel request [2026-08-11 14:36:03,524][ INFO][PID:2775903] Checking for cancel request [2026-08-11 14:36:08,529][ INFO][PID:2775903] Checking for cancel request [2026-08-11 14:36:13,531][ INFO][PID:2775903] Checking for cancel request [2026-08-11 14:36:18,533][ INFO][PID:2775903] Checking for cancel request [2026-08-11 14:36:23,539][ INFO][PID:2775903] Checking for cancel request [2026-08-11 14:36:28,541][ INFO][PID:2775903] Checking for cancel request [2026-08-11 14:36:33,544][ INFO][PID:2775903] Checking for cancel request [2026-08-11 14:36:38,547][ INFO][PID:2775903] Checking for cancel request [2026-08-11 14:36:43,551][ INFO][PID:2775903] Checking for cancel request [2026-08-11 14:36:48,552][ INFO][PID:2775903] Checking for cancel request [2026-08-11 14:36:53,555][ INFO][PID:2775903] Checking for cancel request [2026-08-11 14:36:58,564][ INFO][PID:2775903] Checking for cancel request [2026-08-11 14:37:03,566][ INFO][PID:2775903] Checking for cancel request [2026-08-11 14:37:08,569][ INFO][PID:2775903] Checking for cancel request [2026-08-11 14:37:13,571][ INFO][PID:2775903] Checking for cancel request [2026-08-11 14:37:18,574][ INFO][PID:2775903] Checking for cancel request [2026-08-11 14:37:23,581][ INFO][PID:2775903] Checking for cancel request [2026-08-11 14:37:28,583][ INFO][PID:2775903] Checking for cancel request [2026-08-11 14:37:33,585][ INFO][PID:2775903] Checking for cancel request [2026-08-11 14:37:38,586][ INFO][PID:2775903] Checking for cancel request [2026-08-11 14:37:43,588][ INFO][PID:2775903] Checking for cancel request [2026-08-11 14:37:48,595][ INFO][PID:2775903] Checking for cancel request [2026-08-11 14:37:53,601][ INFO][PID:2775903] Checking for cancel request [2026-08-11 14:37:58,606][ INFO][PID:2775903] Checking for cancel request [2026-08-11 14:38:03,610][ INFO][PID:2775903] Checking for cancel request [2026-08-11 14:38:08,612][ INFO][PID:2775903] Checking for cancel request [2026-08-11 14:38:13,615][ INFO][PID:2775903] Checking for cancel request [2026-08-11 14:38:18,618][ INFO][PID:2775903] Checking for cancel request [2026-08-11 14:38:23,621][ INFO][PID:2775903] Checking for cancel request [2026-08-11 14:38:28,625][ INFO][PID:2775903] Checking for cancel request [2026-08-11 14:38:33,633][ INFO][PID:2775903] Checking for cancel request [2026-08-11 14:38:38,635][ INFO][PID:2775903] Checking for cancel request [2026-08-11 14:38:43,637][ INFO][PID:2775903] Checking for cancel request [2026-08-11 14:38:48,641][ INFO][PID:2775903] Checking for cancel request [2026-08-11 14:38:53,652][ INFO][PID:2775903] Checking for cancel request [2026-08-11 14:38:58,657][ INFO][PID:2775903] Checking for cancel request [2026-08-11 14:39:03,670][ INFO][PID:2775903] Checking for cancel request [2026-08-11 14:39:08,675][ INFO][PID:2775903] Checking for cancel request [2026-08-11 14:39:13,678][ INFO][PID:2775903] Checking for cancel request [2026-08-11 14:39:18,681][ INFO][PID:2775903] Checking for cancel request [2026-08-11 14:39:23,685][ INFO][PID:2775903] Checking for cancel request [2026-08-11 14:39:28,693][ INFO][PID:2775903] Checking for cancel request [2026-08-11 14:39:33,695][ INFO][PID:2775903] Checking for cancel request [2026-08-11 14:39:38,697][ INFO][PID:2775903] Checking for cancel request [2026-08-11 14:39:43,698][ INFO][PID:2775903] Checking for cancel request [2026-08-11 14:39:48,702][ INFO][PID:2775903] Checking for cancel request [2026-08-11 14:39:53,704][ INFO][PID:2775903] Checking for cancel request [2026-08-11 14:39:58,707][ INFO][PID:2775903] Checking for cancel request [2026-08-11 14:40:03,711][ INFO][PID:2775903] Checking for cancel request [2026-08-11 14:40:08,719][ INFO][PID:2775903] Checking for cancel request [2026-08-11 14:40:13,724][ INFO][PID:2775903] Checking for cancel request [2026-08-11 14:40:18,725][ INFO][PID:2775903] Checking for cancel request [2026-08-11 14:40:23,728][ INFO][PID:2775903] Checking for cancel request [2026-08-11 14:40:28,732][ INFO][PID:2775903] Checking for cancel request [2026-08-11 14:40:33,741][ INFO][PID:2775903] Checking for cancel request [2026-08-11 14:40:38,744][ INFO][PID:2775903] Checking for cancel request [2026-08-11 14:40:43,747][ INFO][PID:2775903] Checking for cancel request [2026-08-11 14:40:48,752][ INFO][PID:2775903] Checking for cancel request [2026-08-11 14:40:53,761][ INFO][PID:2775903] Checking for cancel request [2026-08-11 14:40:58,772][ INFO][PID:2775903] Checking for cancel request [2026-08-11 14:41:03,776][ INFO][PID:2775903] Checking for cancel request [2026-08-11 14:41:08,783][ INFO][PID:2775903] Checking for cancel request [2026-08-11 14:41:13,788][ INFO][PID:2775903] Checking for cancel request [2026-08-11 14:41:18,797][ INFO][PID:2775903] Periodic builder liveness probe: alive [2026-08-11 14:41:18,798][ INFO][PID:2775903] Checking for cancel request [2026-08-11 14:41:23,800][ INFO][PID:2775903] Checking for cancel request [2026-08-11 14:41:26,380][ INFO][PID:2775903] Downloading results from builder [2026-08-11 14:41:26,385][ INFO][PID:2775903] rsyncing of mockbuilder@54.234.167.14:/var/lib/copr-rpmbuild/results/ to /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5497/srpm-builds/10847003 started [2026-08-11 14:41:26,390][ INFO][PID:2775903] Popen command started: /usr/bin/rsync -rltDvH --chmod=D755,F644 -e 'ssh -F /home/copr/.ssh/config' mockbuilder@54.234.167.14:/var/lib/copr-rpmbuild/results/ /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5497/srpm-builds/10847003/ &> /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5497/srpm-builds/10847003/build-10847003.rsync.log [2026-08-11 14:41:34,597][ INFO][PID:2775903] rsyncing finished. [2026-08-11 14:41:34,598][ INFO][PID:2775903] VM Release request [2026-08-11 14:41:34,615][ INFO][PID:2775903] Searching for 'success' file in resultdir [2026-08-11 14:41:34,616][ INFO][PID:2775903] Getting build details [2026-08-11 14:41:34,617][ INFO][PID:2775903] Retrieving SRPM info from /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5497/srpm-builds/10847003 [2026-08-11 14:41:34,619][ INFO][PID:2775903] SRPM URL: https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5497/srpm-builds/10847003/Sunshine-0.0.5497-1.src.rpm [2026-08-11 14:41:34,620][ INFO][PID:2775903] build details: {'srpm_url': 'https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5497/srpm-builds/10847003/Sunshine-0.0.5497-1.src.rpm', 'pkg_name': 'Sunshine', 'pkg_version': '0.0.5497-1'} [2026-08-11 14:41:34,622][ INFO][PID:2775903] Finished build: id=10847003 failed=False timeout=108000 destdir=/var/lib/copr/public_html/results/lizardbyte/pulls:pr:5497 chroot=srpm-builds [2026-08-11 14:41:34,625][ INFO][PID:2775903] Worker succeeded build, took 622.4936056137085 [2026-08-11 14:41:34,626][ INFO][PID:2775903] 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:5497", "submitter": null, "ended_on": 1786459294.6254027, "started_on": 1786458672.131797, "submitted_on": null, "status": 1, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10847003", "build_id": 10847003, "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\": \"tmpdhjtjqp8\", \"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:5497/srpm-builds/10847003/Sunshine-0.0.5497-1.src.rpm", "uses_devel_repo": null, "sandbox": "lizardbyte/pulls--765f6ecc-8cc1-48c4-a2d9-14cdfee239b1", "results": { "architecture_specific_tags": { "fedora-43": {}, "fedora-44": {}, "fedora-rawhide": {} }, "name": "Sunshine", "epoch": null, "version": "0.0.5497", "release": "1" }, "appstream": false, "allow_user_ssh": null, "ssh_public_keys": null, "storage": null, "repos": [], "background": true, "distributions_in_build": [ "fedora-43", "fedora-44", "fedora-rawhide" ], "distributions_in_project": [ "fedora-43", "fedora-44", "fedora-rawhide" ], "destdir": "/var/lib/copr/public_html/results/lizardbyte/pulls:pr:5497", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5497", "result_dir": "10847003", "built_packages": "", "tags": [ "arch_x86_64" ], "rpmeta_prediction": null, "pkg_version": "0.0.5497-1", "id": 10847003, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2026-08-11 14:41:34,682][ INFO][PID:2775903] Sending fedora-messaging bus message in build.end [2026-08-11 14:41:34,712][ INFO][PID:2775903] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5497/srpm-builds/10847003/builder-live.log by gzip [2026-08-11 14:41:34,715][ INFO][PID:2775903] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5497/srpm-builds/10847003/builder-live.log' as PID 2877794 [2026-08-11 14:41:34,766][ INFO][PID:2775903] Finished after 0 seconds with exit code 0 (gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5497/srpm-builds/10847003/builder-live.log) [2026-08-11 14:41:34,767][ INFO][PID:2775903] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5497/srpm-builds/10847003/backend.log by gzip [2026-08-11 14:41:34,769][ INFO][PID:2775903] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5497/srpm-builds/10847003/backend.log' as PID 2877804