[2026-05-07 04:03:24,322][ INFO][PID:1775968] Marking build as starting [2026-05-07 04:03:24,359][ INFO][PID:1775968] Checking for cancel request [2026-05-07 04:03:24,360][ INFO][PID:1775968] VM allocation process starts [2026-05-07 04:03:24,369][ INFO][PID:1775968] Trying to allocate VM: ResallocHost, ticket_id=2764156, requested_tags=['arch_x86_64', 'copr_builder'] [2026-05-07 04:03:27,416][ INFO][PID:1775968] Allocated host ResallocHost, ticket_id=2764156, hostname=2620:52:6:1161:dead:beef:cafe:c10e, name=vmhost_x86_02_prod_08662232_20260506_225532, requested_tags=['arch_x86_64', 'copr_builder'] [2026-05-07 04:03:27,417][ INFO][PID:1775968] Allocating ssh connection to builder [2026-05-07 04:03:27,418][ INFO][PID:1775968] Checking that builder machine is OK [2026-05-07 04:03:27,997][ INFO][PID:1775968] Installed copr-rpmbuild version: 1.8 [2026-05-07 04:03:27,998][ INFO][PID:1775968] Running remote command: copr-builder-ready srpm-builds [2026-05-07 04:03:28,377][ INFO][PID:1775968] Red Hat subscription not needed for srpm-builds Builder is ready to be used [2026-05-07 04:03:28,378][ INFO][PID:1775968] Filling build.info file with builder info [2026-05-07 04:03:28,379][ INFO][PID:1775968] Checking for cancel request [2026-05-07 04:03:28,380][ INFO][PID:1775968] 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:5080", "submitter": null, "ended_on": null, "started_on": 1778126608.3803499, "submitted_on": null, "status": 3, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10431515", "build_id": 10431515, "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\": \"tmpazp0gghx\", \"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--8b4fd865-acbf-49c6-a5d6-657ca647c6e5", "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:5080", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5080", "result_dir": "10431515", "built_packages": "", "tags": [ "arch_x86_64" ], "id": 10431515, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2026-05-07 04:03:28,425][ INFO][PID:1775968] Sending fedora-messaging bus message in build.start [2026-05-07 04:03:28,935][ INFO][PID:1775968] Sending fedora-messaging bus message in chroot.start [2026-05-07 04:03:28,965][ INFO][PID:1775968] Starting remote build: copr-rpmbuild --verbose --drop-resultdir --srpm --task-url https://copr.fedorainfracloud.org/backend/get-srpm-build-task/10431515 --detached [2026-05-07 04:03:29,595][ INFO][PID:1775968] The copr-rpmbuild seems started, per: stdout: stderr: Warning: Permanently added '2620:52:6:1161:dead:beef:cafe:c10e' (ED25519) to the list of known hosts. [2026-05-07 04:03:29,596][ INFO][PID:1775968] Downloading the builder-live.log file, attempt 1 [2026-05-07 04:03:29,598][ INFO][PID:1775968] Popen command started: ssh -F /home/copr/.ssh/config mockbuilder@2620:52:6:1161:dead:beef:cafe:c10e copr-rpmbuild-log [2026-05-07 04:03:34,644][ INFO][PID:1775968] Periodic builder liveness probe: alive [2026-05-07 04:03:34,645][ INFO][PID:1775968] Checking for cancel request [2026-05-07 04:03:39,646][ INFO][PID:1775968] Checking for cancel request [2026-05-07 04:03:44,648][ INFO][PID:1775968] Checking for cancel request [2026-05-07 04:03:49,649][ INFO][PID:1775968] Checking for cancel request [2026-05-07 04:03:54,650][ INFO][PID:1775968] Checking for cancel request [2026-05-07 04:03:59,652][ INFO][PID:1775968] Checking for cancel request [2026-05-07 04:04:04,653][ INFO][PID:1775968] Checking for cancel request [2026-05-07 04:04:09,655][ INFO][PID:1775968] Checking for cancel request [2026-05-07 04:04:14,657][ INFO][PID:1775968] Checking for cancel request [2026-05-07 04:04:19,658][ INFO][PID:1775968] Checking for cancel request [2026-05-07 04:04:24,660][ INFO][PID:1775968] Checking for cancel request [2026-05-07 04:04:29,661][ INFO][PID:1775968] Checking for cancel request [2026-05-07 04:04:34,663][ INFO][PID:1775968] Checking for cancel request [2026-05-07 04:04:39,664][ INFO][PID:1775968] Checking for cancel request [2026-05-07 04:04:44,665][ INFO][PID:1775968] Checking for cancel request [2026-05-07 04:04:49,667][ INFO][PID:1775968] Checking for cancel request [2026-05-07 04:04:54,668][ INFO][PID:1775968] Checking for cancel request [2026-05-07 04:04:59,670][ INFO][PID:1775968] Checking for cancel request [2026-05-07 04:05:04,672][ INFO][PID:1775968] Checking for cancel request [2026-05-07 04:05:09,676][ INFO][PID:1775968] Checking for cancel request [2026-05-07 04:05:14,679][ INFO][PID:1775968] Checking for cancel request [2026-05-07 04:05:19,684][ INFO][PID:1775968] Checking for cancel request [2026-05-07 04:05:24,690][ INFO][PID:1775968] Checking for cancel request [2026-05-07 04:05:29,696][ INFO][PID:1775968] Checking for cancel request [2026-05-07 04:05:34,719][ INFO][PID:1775968] Checking for cancel request [2026-05-07 04:05:39,721][ INFO][PID:1775968] Checking for cancel request [2026-05-07 04:05:44,724][ INFO][PID:1775968] Checking for cancel request [2026-05-07 04:05:49,730][ INFO][PID:1775968] Checking for cancel request [2026-05-07 04:05:54,799][ INFO][PID:1775968] Checking for cancel request [2026-05-07 04:05:59,801][ INFO][PID:1775968] Checking for cancel request [2026-05-07 04:06:04,805][ INFO][PID:1775968] Checking for cancel request [2026-05-07 04:06:09,830][ INFO][PID:1775968] Checking for cancel request [2026-05-07 04:06:14,839][ INFO][PID:1775968] Checking for cancel request [2026-05-07 04:06:19,849][ INFO][PID:1775968] Checking for cancel request [2026-05-07 04:06:24,858][ INFO][PID:1775968] Checking for cancel request [2026-05-07 04:06:29,869][ INFO][PID:1775968] Checking for cancel request [2026-05-07 04:06:34,910][ INFO][PID:1775968] Checking for cancel request [2026-05-07 04:06:39,921][ INFO][PID:1775968] Checking for cancel request [2026-05-07 04:06:44,929][ INFO][PID:1775968] Checking for cancel request [2026-05-07 04:06:49,931][ INFO][PID:1775968] Checking for cancel request [2026-05-07 04:06:54,937][ INFO][PID:1775968] Checking for cancel request [2026-05-07 04:06:59,948][ INFO][PID:1775968] Checking for cancel request [2026-05-07 04:07:04,977][ INFO][PID:1775968] Checking for cancel request [2026-05-07 04:07:09,985][ INFO][PID:1775968] Checking for cancel request [2026-05-07 04:07:14,992][ INFO][PID:1775968] Checking for cancel request [2026-05-07 04:07:20,017][ INFO][PID:1775968] Checking for cancel request [2026-05-07 04:07:25,021][ INFO][PID:1775968] Checking for cancel request [2026-05-07 04:07:30,023][ INFO][PID:1775968] Checking for cancel request [2026-05-07 04:07:35,074][ INFO][PID:1775968] Checking for cancel request [2026-05-07 04:07:40,088][ INFO][PID:1775968] Checking for cancel request [2026-05-07 04:07:45,097][ INFO][PID:1775968] Checking for cancel request [2026-05-07 04:07:50,110][ INFO][PID:1775968] Checking for cancel request [2026-05-07 04:07:55,180][ INFO][PID:1775968] Checking for cancel request [2026-05-07 04:08:00,190][ INFO][PID:1775968] Checking for cancel request [2026-05-07 04:08:05,200][ INFO][PID:1775968] Checking for cancel request [2026-05-07 04:08:10,206][ INFO][PID:1775968] Checking for cancel request [2026-05-07 04:08:15,223][ INFO][PID:1775968] Checking for cancel request [2026-05-07 04:08:20,237][ INFO][PID:1775968] Checking for cancel request [2026-05-07 04:08:25,265][ INFO][PID:1775968] Checking for cancel request [2026-05-07 04:08:30,315][ INFO][PID:1775968] Checking for cancel request [2026-05-07 04:08:35,319][ INFO][PID:1775968] Checking for cancel request [2026-05-07 04:08:40,335][ INFO][PID:1775968] Checking for cancel request [2026-05-07 04:08:45,368][ INFO][PID:1775968] Checking for cancel request [2026-05-07 04:08:50,392][ INFO][PID:1775968] Checking for cancel request [2026-05-07 04:08:55,412][ INFO][PID:1775968] Checking for cancel request [2026-05-07 04:09:00,457][ INFO][PID:1775968] Checking for cancel request [2026-05-07 04:09:05,466][ INFO][PID:1775968] Checking for cancel request [2026-05-07 04:09:10,534][ INFO][PID:1775968] Checking for cancel request [2026-05-07 04:09:15,556][ INFO][PID:1775968] Checking for cancel request [2026-05-07 04:09:20,575][ INFO][PID:1775968] Checking for cancel request [2026-05-07 04:09:25,593][ INFO][PID:1775968] Checking for cancel request [2026-05-07 04:09:30,634][ INFO][PID:1775968] Checking for cancel request [2026-05-07 04:09:35,646][ INFO][PID:1775968] Checking for cancel request [2026-05-07 04:09:40,662][ INFO][PID:1775968] Checking for cancel request [2026-05-07 04:09:45,669][ INFO][PID:1775968] Checking for cancel request [2026-05-07 04:09:50,682][ INFO][PID:1775968] Checking for cancel request [2026-05-07 04:09:55,698][ INFO][PID:1775968] Checking for cancel request [2026-05-07 04:10:00,704][ INFO][PID:1775968] Checking for cancel request [2026-05-07 04:10:05,723][ INFO][PID:1775968] Checking for cancel request [2026-05-07 04:10:10,725][ INFO][PID:1775968] Checking for cancel request [2026-05-07 04:10:15,744][ INFO][PID:1775968] Checking for cancel request [2026-05-07 04:10:20,752][ INFO][PID:1775968] Checking for cancel request [2026-05-07 04:10:25,758][ INFO][PID:1775968] Checking for cancel request [2026-05-07 04:10:30,814][ INFO][PID:1775968] Checking for cancel request [2026-05-07 04:10:35,817][ INFO][PID:1775968] Checking for cancel request [2026-05-07 04:10:40,819][ INFO][PID:1775968] Checking for cancel request [2026-05-07 04:10:45,821][ INFO][PID:1775968] Checking for cancel request [2026-05-07 04:10:50,846][ INFO][PID:1775968] Checking for cancel request [2026-05-07 04:10:55,854][ INFO][PID:1775968] Checking for cancel request [2026-05-07 04:11:00,867][ INFO][PID:1775968] Checking for cancel request [2026-05-07 04:11:05,981][ INFO][PID:1775968] Checking for cancel request [2026-05-07 04:11:11,006][ INFO][PID:1775968] Checking for cancel request [2026-05-07 04:11:16,028][ INFO][PID:1775968] Checking for cancel request [2026-05-07 04:11:21,065][ INFO][PID:1775968] Checking for cancel request [2026-05-07 04:11:26,083][ INFO][PID:1775968] Checking for cancel request [2026-05-07 04:11:31,109][ INFO][PID:1775968] Checking for cancel request [2026-05-07 04:11:36,126][ INFO][PID:1775968] Checking for cancel request [2026-05-07 04:11:41,133][ INFO][PID:1775968] Checking for cancel request [2026-05-07 04:11:43,839][ INFO][PID:1775968] Downloading results from builder [2026-05-07 04:11:43,878][ INFO][PID:1775968] rsyncing of mockbuilder@[2620:52:6:1161:dead:beef:cafe:c10e]:/var/lib/copr-rpmbuild/results/ to /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5080/srpm-builds/10431515 started [2026-05-07 04:11:43,923][ INFO][PID:1775968] Popen command started: /usr/bin/rsync -rltDvH --chmod=D755,F644 -e 'ssh -F /home/copr/.ssh/config' mockbuilder@[2620:52:6:1161:dead:beef:cafe:c10e]:/var/lib/copr-rpmbuild/results/ /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5080/srpm-builds/10431515/ &> /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5080/srpm-builds/10431515/build-10431515.rsync.log [2026-05-07 04:12:19,168][ INFO][PID:1775968] rsyncing finished. [2026-05-07 04:12:19,228][ INFO][PID:1775968] VM Release request [2026-05-07 04:12:19,428][ INFO][PID:1775968] Searching for 'success' file in resultdir [2026-05-07 04:12:19,489][ INFO][PID:1775968] Getting build details [2026-05-07 04:12:19,511][ INFO][PID:1775968] Retrieving SRPM info from /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5080/srpm-builds/10431515 [2026-05-07 04:12:19,673][ INFO][PID:1775968] SRPM URL: https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5080/srpm-builds/10431515/Sunshine-0.0.5080-1.src.rpm [2026-05-07 04:12:19,813][ INFO][PID:1775968] build details: {'srpm_url': 'https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5080/srpm-builds/10431515/Sunshine-0.0.5080-1.src.rpm', 'pkg_name': 'Sunshine', 'pkg_version': '0.0.5080-1'} [2026-05-07 04:12:19,891][ INFO][PID:1775968] Finished build: id=10431515 failed=False timeout=108000 destdir=/var/lib/copr/public_html/results/lizardbyte/pulls:pr:5080 chroot=srpm-builds [2026-05-07 04:12:20,154][ INFO][PID:1775968] Worker succeeded build, took 531.7739601135254 [2026-05-07 04:12:20,227][ INFO][PID:1775968] 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:5080", "submitter": null, "ended_on": 1778127140.15431, "started_on": 1778126608.3803499, "submitted_on": null, "status": 1, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10431515", "build_id": 10431515, "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\": \"tmpazp0gghx\", \"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:5080/srpm-builds/10431515/Sunshine-0.0.5080-1.src.rpm", "uses_devel_repo": null, "sandbox": "lizardbyte/pulls--8b4fd865-acbf-49c6-a5d6-657ca647c6e5", "results": { "architecture_specific_tags": { "fedora-42": {}, "fedora-43": {}, "fedora-44": {}, "fedora-rawhide": {}, "opensuse-leap-15.6": {} }, "name": "Sunshine", "epoch": null, "version": "0.0.5080", "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:5080", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5080", "result_dir": "10431515", "built_packages": "", "tags": [ "arch_x86_64" ], "pkg_version": "0.0.5080-1", "id": 10431515, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2026-05-07 04:12:21,062][ INFO][PID:1775968] Sending fedora-messaging bus message in build.end [2026-05-07 04:12:22,213][ INFO][PID:1775968] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5080/srpm-builds/10431515/builder-live.log by gzip [2026-05-07 04:12:22,302][ INFO][PID:1775968] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5080/srpm-builds/10431515/builder-live.log' as PID 1881743 [2026-05-07 04:12:22,541][ INFO][PID:1775968] Finished after 0 seconds with exit code 0 (gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5080/srpm-builds/10431515/builder-live.log) [2026-05-07 04:12:22,577][ INFO][PID:1775968] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5080/srpm-builds/10431515/backend.log by gzip [2026-05-07 04:12:22,589][ INFO][PID:1775968] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5080/srpm-builds/10431515/backend.log' as PID 1881828