[2025-07-15 15:41:58,572][ INFO][PID:3751990] Marking build as starting [2025-07-15 15:41:58,594][ INFO][PID:3751990] Checking for cancel request [2025-07-15 15:41:58,596][ INFO][PID:3751990] VM allocation process starts [2025-07-15 15:41:58,610][ INFO][PID:3751990] Trying to allocate VM: ResallocHost, ticket_id=3938644, requested_tags=['copr_builder', 'arch_x86_64'] [2025-07-15 15:42:03,612][ INFO][PID:3751990] Checking for cancel request [2025-07-15 15:42:08,680][ INFO][PID:3751990] Checking for cancel request [2025-07-15 15:42:13,689][ INFO][PID:3751990] Checking for cancel request [2025-07-15 15:42:18,712][ INFO][PID:3751990] Checking for cancel request [2025-07-15 15:42:23,720][ INFO][PID:3751990] Checking for cancel request [2025-07-15 15:42:28,722][ INFO][PID:3751990] Checking for cancel request [2025-07-15 15:42:33,817][ INFO][PID:3751990] Checking for cancel request [2025-07-15 15:42:39,005][ INFO][PID:3751990] Checking for cancel request [2025-07-15 15:42:44,014][ INFO][PID:3751990] Checking for cancel request [2025-07-15 15:42:49,017][ INFO][PID:3751990] Checking for cancel request [2025-07-15 15:42:54,135][ INFO][PID:3751990] Checking for cancel request [2025-07-15 15:42:59,143][ INFO][PID:3751990] Checking for cancel request [2025-07-15 15:43:04,147][ INFO][PID:3751990] Checking for cancel request [2025-07-15 15:43:06,704][ INFO][PID:3751990] Allocated host ResallocHost, ticket_id=3938644, hostname=44.222.171.21, name=aws_x86_64_normalreserved_prod_05419578_20250715_154132, requested_tags=['copr_builder', 'arch_x86_64'] [2025-07-15 15:43:06,704][ INFO][PID:3751990] Allocating ssh connection to builder [2025-07-15 15:43:06,706][ INFO][PID:3751990] Checking that builder machine is OK [2025-07-15 15:43:07,161][ INFO][PID:3751990] Running remote command: copr-builder-ready srpm-builds [2025-07-15 15:43:07,373][ INFO][PID:3751990] Red Hat subscription not needed for srpm-builds Builder is ready to be used [2025-07-15 15:43:07,373][ INFO][PID:3751990] Filling build.info file with builder info [2025-07-15 15:43:07,374][ INFO][PID:3751990] Checking for cancel request [2025-07-15 15:43:07,375][ INFO][PID:3751990] 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": 1752594187.3748245, "submitted_on": null, "status": 3, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "9275456", "build_id": 9275456, "package_name": "Sunshine", "package_version": null, "git_repo": null, "git_hash": null, "git_branch": null, "source_type": 9, "source_json": "{\"script\": \"#! /bin/sh -x\\n\\nset -e\\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 test -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 test -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# initialize the submodules\\ngit submodule update --init --recursive\\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=$(echo \\\"$TAG\\\" | sed 's/^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/fedora\\\"\\n)\\nfor dir in \\\"${directories[@]}\\\"; do\\n if [ -f \\\"${dir}/${COPR_PACKAGE}.spec\\\" ]; then\\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\\\"\\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\\ntar -czf \\\"${resultdir}/tarball.tar.gz\\\" .\\n\", \"chroot\": \"fedora-42-x86_64\", \"builddeps\": \"git jq python3\", \"resultdir\": \"\", \"repos\": \"\", \"tmp\": \"tmpzp070gwf\", \"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--a88fff0f-1589-49fe-9005-6ede9f99daef", "results": null, "appstream": false, "allow_user_ssh": null, "ssh_public_keys": null, "storage": null, "repos": [], "background": true, "destdir": "/var/lib/copr/public_html/results/lizardbyte/beta", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/lizardbyte/beta", "result_dir": "09275456", "built_packages": "", "tags": [ "arch_x86_64" ], "id": 9275456, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "beta", "vendor": "Fedora Project COPR (lizardbyte/beta)" } } ] } [2025-07-15 15:43:07,394][ INFO][PID:3751990] Sending fedora-messaging bus message in build.start [2025-07-15 15:43:08,090][ INFO][PID:3751990] Sending fedora-messaging bus message in chroot.start [2025-07-15 15:43:08,115][ INFO][PID:3751990] Starting remote build: copr-rpmbuild --verbose --drop-resultdir --srpm --task-url https://copr.fedorainfracloud.org/backend/get-srpm-build-task/9275456 --detached [2025-07-15 15:43:08,466][ INFO][PID:3751990] Downloading the builder-live.log file, attempt 1 [2025-07-15 15:43:08,468][ INFO][PID:3751990] Popen command started: ssh -F /home/copr/.ssh/config mockbuilder@44.222.171.21 copr-rpmbuild-log [2025-07-15 15:43:13,476][ INFO][PID:3751990] Periodic builder liveness probe: alive [2025-07-15 15:43:13,477][ INFO][PID:3751990] Checking for cancel request [2025-07-15 15:43:18,478][ INFO][PID:3751990] Checking for cancel request [2025-07-15 15:43:23,480][ INFO][PID:3751990] Checking for cancel request [2025-07-15 15:43:28,481][ INFO][PID:3751990] Checking for cancel request [2025-07-15 15:43:33,482][ INFO][PID:3751990] Checking for cancel request [2025-07-15 15:43:38,484][ INFO][PID:3751990] Checking for cancel request [2025-07-15 15:43:43,486][ INFO][PID:3751990] Checking for cancel request [2025-07-15 15:43:48,489][ INFO][PID:3751990] Checking for cancel request [2025-07-15 15:43:53,490][ INFO][PID:3751990] Checking for cancel request [2025-07-15 15:43:58,495][ INFO][PID:3751990] Checking for cancel request [2025-07-15 15:44:03,497][ INFO][PID:3751990] Checking for cancel request [2025-07-15 15:44:08,499][ INFO][PID:3751990] Checking for cancel request [2025-07-15 15:44:13,500][ INFO][PID:3751990] Checking for cancel request [2025-07-15 15:44:18,501][ INFO][PID:3751990] Checking for cancel request [2025-07-15 15:44:23,503][ INFO][PID:3751990] Checking for cancel request [2025-07-15 15:44:28,504][ INFO][PID:3751990] Checking for cancel request [2025-07-15 15:44:33,505][ INFO][PID:3751990] Checking for cancel request [2025-07-15 15:44:38,507][ INFO][PID:3751990] Checking for cancel request [2025-07-15 15:44:43,508][ INFO][PID:3751990] Checking for cancel request [2025-07-15 15:44:48,512][ INFO][PID:3751990] Checking for cancel request [2025-07-15 15:44:53,518][ INFO][PID:3751990] Checking for cancel request [2025-07-15 15:44:58,520][ INFO][PID:3751990] Checking for cancel request [2025-07-15 15:45:03,523][ INFO][PID:3751990] Checking for cancel request [2025-07-15 15:45:08,525][ INFO][PID:3751990] Checking for cancel request [2025-07-15 15:45:13,526][ INFO][PID:3751990] Checking for cancel request [2025-07-15 15:45:18,528][ INFO][PID:3751990] Checking for cancel request [2025-07-15 15:45:23,530][ INFO][PID:3751990] Checking for cancel request [2025-07-15 15:45:28,532][ INFO][PID:3751990] Checking for cancel request [2025-07-15 15:45:33,533][ INFO][PID:3751990] Checking for cancel request [2025-07-15 15:45:38,538][ INFO][PID:3751990] Checking for cancel request [2025-07-15 15:45:43,540][ INFO][PID:3751990] Checking for cancel request [2025-07-15 15:45:48,543][ INFO][PID:3751990] Checking for cancel request [2025-07-15 15:45:53,546][ INFO][PID:3751990] Checking for cancel request [2025-07-15 15:45:58,547][ INFO][PID:3751990] Checking for cancel request [2025-07-15 15:46:03,548][ INFO][PID:3751990] Checking for cancel request [2025-07-15 15:46:08,550][ INFO][PID:3751990] Checking for cancel request [2025-07-15 15:46:13,551][ INFO][PID:3751990] Checking for cancel request [2025-07-15 15:46:18,552][ INFO][PID:3751990] Checking for cancel request [2025-07-15 15:46:23,554][ INFO][PID:3751990] Checking for cancel request [2025-07-15 15:46:28,555][ INFO][PID:3751990] Checking for cancel request [2025-07-15 15:46:33,556][ INFO][PID:3751990] Checking for cancel request [2025-07-15 15:46:38,559][ INFO][PID:3751990] Checking for cancel request [2025-07-15 15:46:43,560][ INFO][PID:3751990] Checking for cancel request [2025-07-15 15:46:48,561][ INFO][PID:3751990] Checking for cancel request [2025-07-15 15:46:53,562][ INFO][PID:3751990] Checking for cancel request [2025-07-15 15:46:58,563][ INFO][PID:3751990] Checking for cancel request [2025-07-15 15:47:03,564][ INFO][PID:3751990] Checking for cancel request [2025-07-15 15:47:08,566][ INFO][PID:3751990] Checking for cancel request [2025-07-15 15:47:13,569][ INFO][PID:3751990] Checking for cancel request [2025-07-15 15:47:18,571][ INFO][PID:3751990] Checking for cancel request [2025-07-15 15:47:23,572][ INFO][PID:3751990] Checking for cancel request [2025-07-15 15:47:28,574][ INFO][PID:3751990] Checking for cancel request [2025-07-15 15:47:33,575][ INFO][PID:3751990] Checking for cancel request [2025-07-15 15:47:38,579][ INFO][PID:3751990] Checking for cancel request [2025-07-15 15:47:43,582][ INFO][PID:3751990] Checking for cancel request [2025-07-15 15:47:48,583][ INFO][PID:3751990] Checking for cancel request [2025-07-15 15:47:53,584][ INFO][PID:3751990] Checking for cancel request [2025-07-15 15:47:58,587][ INFO][PID:3751990] Checking for cancel request [2025-07-15 15:48:03,588][ INFO][PID:3751990] Checking for cancel request [2025-07-15 15:48:08,589][ INFO][PID:3751990] Checking for cancel request [2025-07-15 15:48:13,592][ INFO][PID:3751990] Checking for cancel request [2025-07-15 15:48:18,596][ INFO][PID:3751990] Checking for cancel request [2025-07-15 15:48:23,598][ INFO][PID:3751990] Checking for cancel request [2025-07-15 15:48:28,599][ INFO][PID:3751990] Checking for cancel request [2025-07-15 15:48:33,601][ INFO][PID:3751990] Checking for cancel request [2025-07-15 15:48:38,602][ INFO][PID:3751990] Checking for cancel request [2025-07-15 15:48:43,603][ INFO][PID:3751990] Checking for cancel request [2025-07-15 15:48:48,604][ INFO][PID:3751990] Checking for cancel request [2025-07-15 15:48:53,605][ INFO][PID:3751990] Checking for cancel request [2025-07-15 15:48:58,606][ INFO][PID:3751990] Checking for cancel request [2025-07-15 15:49:03,608][ INFO][PID:3751990] Checking for cancel request [2025-07-15 15:49:08,609][ INFO][PID:3751990] Checking for cancel request [2025-07-15 15:49:13,611][ INFO][PID:3751990] Checking for cancel request [2025-07-15 15:49:18,612][ INFO][PID:3751990] Checking for cancel request [2025-07-15 15:49:23,414][ INFO][PID:3751990] Downloading results from builder [2025-07-15 15:49:23,415][ INFO][PID:3751990] rsyncing of mockbuilder@44.222.171.21:/var/lib/copr-rpmbuild/results/ to /var/lib/copr/public_html/results/lizardbyte/beta/srpm-builds/09275456 started [2025-07-15 15:49:23,416][ INFO][PID:3751990] Popen command started: /usr/bin/rsync -rltDvH --chmod=D755,F644 -e 'ssh -F /home/copr/.ssh/config' mockbuilder@44.222.171.21:/var/lib/copr-rpmbuild/results/ /var/lib/copr/public_html/results/lizardbyte/beta/srpm-builds/09275456/ &> /var/lib/copr/public_html/results/lizardbyte/beta/srpm-builds/09275456/build-09275456.rsync.log [2025-07-15 15:49:29,213][ INFO][PID:3751990] rsyncing finished. [2025-07-15 15:49:29,214][ INFO][PID:3751990] Releasing VM back to pool [2025-07-15 15:49:29,227][ INFO][PID:3751990] Searching for 'success' file in resultdir [2025-07-15 15:49:29,228][ INFO][PID:3751990] Getting build details [2025-07-15 15:49:29,229][ INFO][PID:3751990] Retrieving SRPM info from /var/lib/copr/public_html/results/lizardbyte/beta/srpm-builds/09275456 [2025-07-15 15:49:29,229][ INFO][PID:3751990] SRPM URL: https://download.copr.fedorainfracloud.org/results/lizardbyte/beta/srpm-builds/09275456/Sunshine-2025.715.130234-1.src.rpm [2025-07-15 15:49:29,230][ INFO][PID:3751990] build details: {'srpm_url': 'https://download.copr.fedorainfracloud.org/results/lizardbyte/beta/srpm-builds/09275456/Sunshine-2025.715.130234-1.src.rpm', 'pkg_name': 'Sunshine', 'pkg_version': '2025.715.130234-1'} [2025-07-15 15:49:29,230][ INFO][PID:3751990] Finished build: id=9275456 failed=False timeout=108000 destdir=/var/lib/copr/public_html/results/lizardbyte/beta chroot=srpm-builds [2025-07-15 15:49:29,232][ INFO][PID:3751990] Worker succeeded build, took 381.858097076416 [2025-07-15 15:49:29,233][ INFO][PID:3751990] 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": 1752594569.2329216, "started_on": 1752594187.3748245, "submitted_on": null, "status": 1, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "9275456", "build_id": 9275456, "package_name": "Sunshine", "package_version": null, "git_repo": null, "git_hash": null, "git_branch": null, "source_type": 9, "source_json": "{\"script\": \"#! /bin/sh -x\\n\\nset -e\\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 test -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 test -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# initialize the submodules\\ngit submodule update --init --recursive\\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=$(echo \\\"$TAG\\\" | sed 's/^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/fedora\\\"\\n)\\nfor dir in \\\"${directories[@]}\\\"; do\\n if [ -f \\\"${dir}/${COPR_PACKAGE}.spec\\\" ]; then\\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\\\"\\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\\ntar -czf \\\"${resultdir}/tarball.tar.gz\\\" .\\n\", \"chroot\": \"fedora-42-x86_64\", \"builddeps\": \"git jq python3\", \"resultdir\": \"\", \"repos\": \"\", \"tmp\": \"tmpzp070gwf\", \"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/09275456/Sunshine-2025.715.130234-1.src.rpm", "uses_devel_repo": null, "sandbox": "lizardbyte/beta--a88fff0f-1589-49fe-9005-6ede9f99daef", "results": { "name": "Sunshine", "epoch": null, "version": "2025.715.130234", "release": "1", "exclusivearch": [], "excludearch": [] }, "appstream": false, "allow_user_ssh": null, "ssh_public_keys": null, "storage": null, "repos": [], "background": true, "destdir": "/var/lib/copr/public_html/results/lizardbyte/beta", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/lizardbyte/beta", "result_dir": "09275456", "built_packages": "", "tags": [ "arch_x86_64" ], "pkg_version": "2025.715.130234-1", "id": 9275456, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "beta", "vendor": "Fedora Project COPR (lizardbyte/beta)" } } ] } [2025-07-15 15:49:29,267][ INFO][PID:3751990] Sending fedora-messaging bus message in build.end [2025-07-15 15:49:29,293][ INFO][PID:3751990] Compressing /var/lib/copr/public_html/results/lizardbyte/beta/srpm-builds/09275456/builder-live.log by gzip [2025-07-15 15:49:29,295][ INFO][PID:3751990] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/beta/srpm-builds/09275456/builder-live.log' as PID 3804469 [2025-07-15 15:49:29,301][ INFO][PID:3751990] Finished after 0 seconds with exit code 0 (gzip /var/lib/copr/public_html/results/lizardbyte/beta/srpm-builds/09275456/builder-live.log) [2025-07-15 15:49:29,302][ INFO][PID:3751990] Compressing /var/lib/copr/public_html/results/lizardbyte/beta/srpm-builds/09275456/backend.log by gzip [2025-07-15 15:49:29,303][ INFO][PID:3751990] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/beta/srpm-builds/09275456/backend.log' as PID 3804470