[2026-08-18 01:03:00,448][ INFO][PID:1443629] Marking build as starting [2026-08-18 01:03:00,519][ INFO][PID:1443629] Checking for cancel request [2026-08-18 01:03:00,522][ INFO][PID:1443629] VM allocation process starts [2026-08-18 01:03:00,536][ INFO][PID:1443629] Trying to allocate VM: ResallocHost, ticket_id=4490261, requested_tags=['arch_x86_64', 'copr_builder'] [2026-08-18 01:03:05,539][ INFO][PID:1443629] Checking for cancel request [2026-08-18 01:03:06,563][ INFO][PID:1443629] Allocated host ResallocHost, ticket_id=4490261, hostname=44.199.207.23, name=aws_x86_64_reserved_prod_19237161_20260818_010024, requested_tags=['arch_x86_64', 'copr_builder'] [2026-08-18 01:03:06,564][ INFO][PID:1443629] Allocating ssh connection to builder [2026-08-18 01:03:06,565][ INFO][PID:1443629] Checking that builder machine is OK [2026-08-18 01:03:06,876][ INFO][PID:1443629] Installed copr-rpmbuild version: 1.9 [2026-08-18 01:03:06,878][ INFO][PID:1443629] Running remote command: copr-builder-ready srpm-builds [2026-08-18 01:03:07,071][ INFO][PID:1443629] Red Hat subscription not needed for srpm-builds Builder is ready to be used [2026-08-18 01:03:07,072][ INFO][PID:1443629] Filling build.info file with builder info [2026-08-18 01:03:07,073][ INFO][PID:1443629] Checking for cancel request [2026-08-18 01:03:07,077][ INFO][PID:1443629] 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": "beta", "project_dirname": "beta", "submitter": null, "ended_on": null, "started_on": 1787014987.0766973, "submitted_on": null, "status": 3, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10874482", "build_id": 10874482, "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-45-x86_64\", \"builddeps\": \"git jq python3 rpmlint\", \"resultdir\": \"\", \"repos\": \"\", \"tmp\": \"tmpmat5ub9w\", \"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/beta--0bb60c3b-86b6-4445-b67c-ebf3516b1c0c", "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-45", "fedora-rawhide" ], "distributions_in_project": [ "fedora-43", "fedora-44", "fedora-45", "fedora-rawhide" ], "destdir": "/var/lib/copr/public_html/results/lizardbyte/beta", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/lizardbyte/beta", "result_dir": "10874482", "built_packages": "", "tags": [ "arch_x86_64" ], "rpmeta_prediction": null, "id": 10874482, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "beta", "vendor": "Fedora Project COPR (lizardbyte/beta)" } } ] } [2026-08-18 01:03:07,133][ INFO][PID:1443629] Sending fedora-messaging bus message in build.start [2026-08-18 01:03:07,782][ INFO][PID:1443629] Sending fedora-messaging bus message in chroot.start [2026-08-18 01:03:07,807][ INFO][PID:1443629] Starting remote build: copr-rpmbuild --verbose --drop-resultdir --srpm --task-url https://copr.fedorainfracloud.org/backend/get-srpm-build-task/10874482 --detached [2026-08-18 01:03:08,273][ INFO][PID:1443629] The copr-rpmbuild seems started, per: stdout: stderr: Warning: Permanently added '44.199.207.23' (ED25519) to the list of known hosts. [2026-08-18 01:03:08,274][ INFO][PID:1443629] Downloading the builder-live.log file, attempt 1 [2026-08-18 01:03:08,276][ INFO][PID:1443629] Popen command started: ssh -F /home/copr/.ssh/config mockbuilder@44.199.207.23 copr-rpmbuild-log [2026-08-18 01:03:13,294][ INFO][PID:1443629] Periodic builder liveness probe: alive [2026-08-18 01:03:13,294][ INFO][PID:1443629] Checking for cancel request [2026-08-18 01:03:18,296][ INFO][PID:1443629] Checking for cancel request [2026-08-18 01:03:23,298][ INFO][PID:1443629] Checking for cancel request [2026-08-18 01:03:28,300][ INFO][PID:1443629] Checking for cancel request [2026-08-18 01:03:33,301][ INFO][PID:1443629] Checking for cancel request [2026-08-18 01:03:38,304][ INFO][PID:1443629] Checking for cancel request [2026-08-18 01:03:43,306][ INFO][PID:1443629] Checking for cancel request [2026-08-18 01:03:48,308][ INFO][PID:1443629] Checking for cancel request [2026-08-18 01:03:53,310][ INFO][PID:1443629] Checking for cancel request [2026-08-18 01:03:58,311][ INFO][PID:1443629] Checking for cancel request [2026-08-18 01:04:03,324][ INFO][PID:1443629] Checking for cancel request [2026-08-18 01:04:08,326][ INFO][PID:1443629] Checking for cancel request [2026-08-18 01:04:13,327][ INFO][PID:1443629] Checking for cancel request [2026-08-18 01:04:18,330][ INFO][PID:1443629] Checking for cancel request [2026-08-18 01:04:23,334][ INFO][PID:1443629] Checking for cancel request [2026-08-18 01:04:28,348][ INFO][PID:1443629] Checking for cancel request [2026-08-18 01:04:33,349][ INFO][PID:1443629] Checking for cancel request [2026-08-18 01:04:38,351][ INFO][PID:1443629] Checking for cancel request [2026-08-18 01:04:43,353][ INFO][PID:1443629] Checking for cancel request [2026-08-18 01:04:48,354][ INFO][PID:1443629] Checking for cancel request [2026-08-18 01:04:53,356][ INFO][PID:1443629] Checking for cancel request [2026-08-18 01:04:58,359][ INFO][PID:1443629] Checking for cancel request [2026-08-18 01:05:03,360][ INFO][PID:1443629] Checking for cancel request [2026-08-18 01:05:08,362][ INFO][PID:1443629] Checking for cancel request [2026-08-18 01:05:13,364][ INFO][PID:1443629] Checking for cancel request [2026-08-18 01:05:18,365][ INFO][PID:1443629] Checking for cancel request [2026-08-18 01:05:23,367][ INFO][PID:1443629] Checking for cancel request [2026-08-18 01:05:28,369][ INFO][PID:1443629] Checking for cancel request [2026-08-18 01:05:33,372][ INFO][PID:1443629] Checking for cancel request [2026-08-18 01:05:38,373][ INFO][PID:1443629] Checking for cancel request [2026-08-18 01:05:43,375][ INFO][PID:1443629] Checking for cancel request [2026-08-18 01:05:48,377][ INFO][PID:1443629] Checking for cancel request [2026-08-18 01:05:53,380][ INFO][PID:1443629] Checking for cancel request [2026-08-18 01:05:58,382][ INFO][PID:1443629] Checking for cancel request [2026-08-18 01:06:03,383][ INFO][PID:1443629] Checking for cancel request [2026-08-18 01:06:08,385][ INFO][PID:1443629] Checking for cancel request [2026-08-18 01:06:13,403][ INFO][PID:1443629] Checking for cancel request [2026-08-18 01:06:18,404][ INFO][PID:1443629] Checking for cancel request [2026-08-18 01:06:23,406][ INFO][PID:1443629] Checking for cancel request [2026-08-18 01:06:28,411][ INFO][PID:1443629] Checking for cancel request [2026-08-18 01:06:33,417][ INFO][PID:1443629] Checking for cancel request [2026-08-18 01:06:38,420][ INFO][PID:1443629] Checking for cancel request [2026-08-18 01:06:43,422][ INFO][PID:1443629] Checking for cancel request [2026-08-18 01:06:48,441][ INFO][PID:1443629] Checking for cancel request [2026-08-18 01:06:53,445][ INFO][PID:1443629] Checking for cancel request [2026-08-18 01:06:58,450][ INFO][PID:1443629] Checking for cancel request [2026-08-18 01:07:03,454][ INFO][PID:1443629] Checking for cancel request [2026-08-18 01:07:08,456][ INFO][PID:1443629] Checking for cancel request [2026-08-18 01:07:13,460][ INFO][PID:1443629] Checking for cancel request [2026-08-18 01:07:18,469][ INFO][PID:1443629] Checking for cancel request [2026-08-18 01:07:23,470][ INFO][PID:1443629] Checking for cancel request [2026-08-18 01:07:28,473][ INFO][PID:1443629] Checking for cancel request [2026-08-18 01:07:33,479][ INFO][PID:1443629] Checking for cancel request [2026-08-18 01:07:38,485][ INFO][PID:1443629] Checking for cancel request [2026-08-18 01:07:43,488][ INFO][PID:1443629] Checking for cancel request [2026-08-18 01:07:48,490][ INFO][PID:1443629] Checking for cancel request [2026-08-18 01:07:53,494][ INFO][PID:1443629] Checking for cancel request [2026-08-18 01:07:58,496][ INFO][PID:1443629] Checking for cancel request [2026-08-18 01:08:03,498][ INFO][PID:1443629] Checking for cancel request [2026-08-18 01:08:08,500][ INFO][PID:1443629] Checking for cancel request [2026-08-18 01:08:13,504][ INFO][PID:1443629] Checking for cancel request [2026-08-18 01:08:18,506][ INFO][PID:1443629] Checking for cancel request [2026-08-18 01:08:23,509][ INFO][PID:1443629] Checking for cancel request [2026-08-18 01:08:28,511][ INFO][PID:1443629] Checking for cancel request [2026-08-18 01:08:33,519][ INFO][PID:1443629] Checking for cancel request [2026-08-18 01:08:38,522][ INFO][PID:1443629] Checking for cancel request [2026-08-18 01:08:43,539][ INFO][PID:1443629] Checking for cancel request [2026-08-18 01:08:48,541][ INFO][PID:1443629] Checking for cancel request [2026-08-18 01:08:53,544][ INFO][PID:1443629] Checking for cancel request [2026-08-18 01:08:58,546][ INFO][PID:1443629] Checking for cancel request [2026-08-18 01:09:03,549][ INFO][PID:1443629] Checking for cancel request [2026-08-18 01:09:08,558][ INFO][PID:1443629] Checking for cancel request [2026-08-18 01:09:13,562][ INFO][PID:1443629] Checking for cancel request [2026-08-18 01:09:18,568][ INFO][PID:1443629] Checking for cancel request [2026-08-18 01:09:23,569][ INFO][PID:1443629] Checking for cancel request [2026-08-18 01:09:28,575][ INFO][PID:1443629] Checking for cancel request [2026-08-18 01:09:33,576][ INFO][PID:1443629] Checking for cancel request [2026-08-18 01:09:38,578][ INFO][PID:1443629] Checking for cancel request [2026-08-18 01:09:43,579][ INFO][PID:1443629] Checking for cancel request [2026-08-18 01:09:48,581][ INFO][PID:1443629] Checking for cancel request [2026-08-18 01:09:53,585][ INFO][PID:1443629] Checking for cancel request [2026-08-18 01:09:58,587][ INFO][PID:1443629] Checking for cancel request [2026-08-18 01:10:03,589][ INFO][PID:1443629] Checking for cancel request [2026-08-18 01:10:08,591][ INFO][PID:1443629] Checking for cancel request [2026-08-18 01:10:13,595][ INFO][PID:1443629] Checking for cancel request [2026-08-18 01:10:18,596][ INFO][PID:1443629] Checking for cancel request [2026-08-18 01:10:23,598][ INFO][PID:1443629] Checking for cancel request [2026-08-18 01:10:28,600][ INFO][PID:1443629] Checking for cancel request [2026-08-18 01:10:33,605][ INFO][PID:1443629] Checking for cancel request [2026-08-18 01:10:38,620][ INFO][PID:1443629] Checking for cancel request [2026-08-18 01:10:43,623][ INFO][PID:1443629] Checking for cancel request [2026-08-18 01:10:48,624][ INFO][PID:1443629] Checking for cancel request [2026-08-18 01:10:53,626][ INFO][PID:1443629] Checking for cancel request [2026-08-18 01:10:58,628][ INFO][PID:1443629] Checking for cancel request [2026-08-18 01:11:03,629][ INFO][PID:1443629] Checking for cancel request [2026-08-18 01:11:08,633][ INFO][PID:1443629] Checking for cancel request [2026-08-18 01:11:13,637][ INFO][PID:1443629] Checking for cancel request [2026-08-18 01:11:18,640][ INFO][PID:1443629] Checking for cancel request [2026-08-18 01:11:23,646][ INFO][PID:1443629] Checking for cancel request [2026-08-18 01:11:28,658][ INFO][PID:1443629] Checking for cancel request [2026-08-18 01:11:33,663][ INFO][PID:1443629] Checking for cancel request [2026-08-18 01:11:38,670][ INFO][PID:1443629] Checking for cancel request [2026-08-18 01:11:43,674][ INFO][PID:1443629] Checking for cancel request [2026-08-18 01:11:48,677][ INFO][PID:1443629] Checking for cancel request [2026-08-18 01:11:53,681][ INFO][PID:1443629] Checking for cancel request [2026-08-18 01:11:58,703][ INFO][PID:1443629] Checking for cancel request [2026-08-18 01:12:03,716][ INFO][PID:1443629] Checking for cancel request [2026-08-18 01:12:08,726][ INFO][PID:1443629] Checking for cancel request [2026-08-18 01:12:13,729][ INFO][PID:1443629] Checking for cancel request [2026-08-18 01:12:18,744][ INFO][PID:1443629] Checking for cancel request [2026-08-18 01:12:23,750][ INFO][PID:1443629] Checking for cancel request [2026-08-18 01:12:28,758][ INFO][PID:1443629] Checking for cancel request [2026-08-18 01:12:33,764][ INFO][PID:1443629] Checking for cancel request [2026-08-18 01:12:38,767][ INFO][PID:1443629] Checking for cancel request [2026-08-18 01:12:43,770][ INFO][PID:1443629] Checking for cancel request [2026-08-18 01:12:48,775][ INFO][PID:1443629] Checking for cancel request [2026-08-18 01:12:53,777][ INFO][PID:1443629] Checking for cancel request [2026-08-18 01:12:58,780][ INFO][PID:1443629] Checking for cancel request [2026-08-18 01:13:03,784][ INFO][PID:1443629] Checking for cancel request [2026-08-18 01:13:08,790][ INFO][PID:1443629] Checking for cancel request [2026-08-18 01:13:13,800][ INFO][PID:1443629] Periodic builder liveness probe: alive [2026-08-18 01:13:13,801][ INFO][PID:1443629] Checking for cancel request [2026-08-18 01:13:18,803][ INFO][PID:1443629] Checking for cancel request [2026-08-18 01:13:23,805][ INFO][PID:1443629] Checking for cancel request [2026-08-18 01:13:28,808][ INFO][PID:1443629] Checking for cancel request [2026-08-18 01:13:33,810][ INFO][PID:1443629] Checking for cancel request [2026-08-18 01:13:38,817][ INFO][PID:1443629] Checking for cancel request [2026-08-18 01:13:43,843][ INFO][PID:1443629] Checking for cancel request [2026-08-18 01:13:48,845][ INFO][PID:1443629] Checking for cancel request [2026-08-18 01:13:53,847][ INFO][PID:1443629] Checking for cancel request [2026-08-18 01:13:57,481][ INFO][PID:1443629] Downloading results from builder [2026-08-18 01:13:57,482][ INFO][PID:1443629] rsyncing of mockbuilder@44.199.207.23:/var/lib/copr-rpmbuild/results/ to /var/lib/copr/public_html/results/lizardbyte/beta/srpm-builds/10874482 started [2026-08-18 01:13:57,483][ INFO][PID:1443629] Popen command started: /usr/bin/rsync -rltDvH --chmod=D755,F644 -e 'ssh -F /home/copr/.ssh/config' mockbuilder@44.199.207.23:/var/lib/copr-rpmbuild/results/ /var/lib/copr/public_html/results/lizardbyte/beta/srpm-builds/10874482/ &> /var/lib/copr/public_html/results/lizardbyte/beta/srpm-builds/10874482/build-10874482.rsync.log [2026-08-18 01:14:03,808][ INFO][PID:1443629] rsyncing finished. [2026-08-18 01:14:03,809][ INFO][PID:1443629] VM Release request [2026-08-18 01:14:03,819][ INFO][PID:1443629] Searching for 'success' file in resultdir [2026-08-18 01:14:03,820][ INFO][PID:1443629] Getting build details [2026-08-18 01:14:03,821][ INFO][PID:1443629] Retrieving SRPM info from /var/lib/copr/public_html/results/lizardbyte/beta/srpm-builds/10874482 [2026-08-18 01:14:03,822][ INFO][PID:1443629] SRPM URL: https://download.copr.fedorainfracloud.org/results/lizardbyte/beta/srpm-builds/10874482/Sunshine-2026.817.185037-1.src.rpm [2026-08-18 01:14:03,822][ INFO][PID:1443629] build details: {'srpm_url': 'https://download.copr.fedorainfracloud.org/results/lizardbyte/beta/srpm-builds/10874482/Sunshine-2026.817.185037-1.src.rpm', 'pkg_name': 'Sunshine', 'pkg_version': '2026.817.185037-1'} [2026-08-18 01:14:03,823][ INFO][PID:1443629] Finished build: id=10874482 failed=False timeout=108000 destdir=/var/lib/copr/public_html/results/lizardbyte/beta chroot=srpm-builds [2026-08-18 01:14:03,824][ INFO][PID:1443629] Worker succeeded build, took 656.7479951381683 [2026-08-18 01:14:03,825][ INFO][PID:1443629] 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": "beta", "project_dirname": "beta", "submitter": null, "ended_on": 1787015643.8246925, "started_on": 1787014987.0766973, "submitted_on": null, "status": 1, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10874482", "build_id": 10874482, "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-45-x86_64\", \"builddeps\": \"git jq python3 rpmlint\", \"resultdir\": \"\", \"repos\": \"\", \"tmp\": \"tmpmat5ub9w\", \"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/beta/srpm-builds/10874482/Sunshine-2026.817.185037-1.src.rpm", "uses_devel_repo": null, "sandbox": "lizardbyte/beta--0bb60c3b-86b6-4445-b67c-ebf3516b1c0c", "results": { "architecture_specific_tags": { "fedora-43": {}, "fedora-44": {}, "fedora-45": {}, "fedora-rawhide": {} }, "name": "Sunshine", "epoch": null, "version": "2026.817.185037", "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-45", "fedora-rawhide" ], "distributions_in_project": [ "fedora-43", "fedora-44", "fedora-45", "fedora-rawhide" ], "destdir": "/var/lib/copr/public_html/results/lizardbyte/beta", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/lizardbyte/beta", "result_dir": "10874482", "built_packages": "", "tags": [ "arch_x86_64" ], "rpmeta_prediction": null, "pkg_version": "2026.817.185037-1", "id": 10874482, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "beta", "vendor": "Fedora Project COPR (lizardbyte/beta)" } } ] } [2026-08-18 01:14:03,892][ INFO][PID:1443629] Sending fedora-messaging bus message in build.end [2026-08-18 01:14:03,919][ INFO][PID:1443629] Compressing /var/lib/copr/public_html/results/lizardbyte/beta/srpm-builds/10874482/builder-live.log by gzip [2026-08-18 01:14:03,920][ INFO][PID:1443629] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/beta/srpm-builds/10874482/builder-live.log' as PID 1557630 [2026-08-18 01:14:03,935][ INFO][PID:1443629] Finished after 0 seconds with exit code 0 (gzip /var/lib/copr/public_html/results/lizardbyte/beta/srpm-builds/10874482/builder-live.log) [2026-08-18 01:14:03,936][ INFO][PID:1443629] Compressing /var/lib/copr/public_html/results/lizardbyte/beta/srpm-builds/10874482/backend.log by gzip [2026-08-18 01:14:03,938][ INFO][PID:1443629] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/beta/srpm-builds/10874482/backend.log' as PID 1557631