[2025-10-28 18:29:09,667][ INFO][PID:3789979] Marking build as starting [2025-10-28 18:29:09,690][ INFO][PID:3789979] Checking for cancel request [2025-10-28 18:29:09,692][ INFO][PID:3789979] VM allocation process starts [2025-10-28 18:29:09,707][ INFO][PID:3789979] Trying to allocate VM: ResallocHost, ticket_id=5895348, requested_tags=['copr_builder', 'arch_aarch64'] [2025-10-28 18:29:14,709][ INFO][PID:3789979] Checking for cancel request [2025-10-28 18:29:19,710][ INFO][PID:3789979] Checking for cancel request [2025-10-28 18:29:24,711][ INFO][PID:3789979] Checking for cancel request [2025-10-28 18:29:29,712][ INFO][PID:3789979] Checking for cancel request [2025-10-28 18:29:34,713][ INFO][PID:3789979] Checking for cancel request [2025-10-28 18:29:37,755][ INFO][PID:3789979] Allocated host ResallocHost, ticket_id=5895348, hostname=54.210.201.85, name=aws_aarch64_normalreserved_prod_07699579_20251028_182810, requested_tags=['copr_builder', 'arch_aarch64'] [2025-10-28 18:29:37,755][ INFO][PID:3789979] Allocating ssh connection to builder [2025-10-28 18:29:37,756][ INFO][PID:3789979] Checking that builder machine is OK [2025-10-28 18:29:38,119][ INFO][PID:3789979] Running remote command: copr-builder-ready srpm-builds [2025-10-28 18:29:38,346][ INFO][PID:3789979] Red Hat subscription not needed for srpm-builds Builder is ready to be used [2025-10-28 18:29:38,346][ INFO][PID:3789979] Filling build.info file with builder info [2025-10-28 18:29:38,347][ INFO][PID:3789979] Checking for cancel request [2025-10-28 18:29:38,348][ INFO][PID:3789979] Sending build state back to frontend: { "builds": [ { "timeout": 108000, "frontend_base_url": "https://copr.fedorainfracloud.org", "memory_reqs": null, "enable_net": true, "project_owner": "bdherouville", "project_name": "libvirt-zfs", "project_dirname": "libvirt-zfs", "submitter": "bdherouville", "ended_on": null, "started_on": 1761676178.348541, "submitted_on": null, "status": 3, "chroot": "srpm-builds", "arch": "aarch64", "buildroot_pkgs": null, "task_id": "9740649", "build_id": 9740649, "package_name": null, "package_version": null, "git_repo": null, "git_hash": null, "git_branch": null, "source_type": 9, "source_json": "{\"script\": \"#! /bin/sh -ex\\n# COPR Custom (Spec+Sources): libvirt EL10 avec ZFS activ\\u00e9 (aarch64)\\n# Sortie attendue par COPR : libvirt.spec + toutes les sources/patches dans \\\".\\\"\\n\\nEVR=\\\"${EVR:-11.8.0-1.el10}\\\"\\nBASEVER=\\\"${BASEVER:-11.8.0}\\\"\\nSRPM_URL=\\\"${SRPM_URL:-https://kojihub.stream.centos.org/kojifiles/packages/libvirt/${BASEVER}/1.el10/src/libvirt-${EVR}.src.rpm}\\\"\\n\\n# 1) Pr\\u00e9parer comme dans l\\u2019exemple de la doc: d\\u00e9poser le SRPM sous redhat/rpm/SRPMS/\\nmkdir -p redhat/rpm/SRPMS\\ncurl -fSLo \\\"redhat/rpm/SRPMS/libvirt-${EVR}.src.rpm\\\" \\\"$SRPM_URL\\\"\\n\\n# 2) Extraire le SRPM avec rpmdev-extract (fourni par rpmdevtools)\\n# => cr\\u00e9e un r\\u00e9pertoire libvirt-*/ contenant .spec + sources\\n \\\"redhat/rpm/SRPMS/libvirt-${EVR}.src.rpm\\\"\\n\\n# 3) Mettre .spec + sources \\u00e0 la RACINE du cwd (exigence COPR Custom)\\n# (ne surtout PAS laisser SPECS/ SOURCES/ ; COPR lit dans \\\".\\\")\\nSRC_DIR=\\\"$(echo libvirt-\\\"${EVR}\\\"* | head -n1)\\\"\\n# Copie la spec\\ncp -a \\\"${SRC_DIR}\\\"/libvirt.spec ./libvirt.spec\\n# Copie toutes les sources/patches au m\\u00eame niveau\\nfind \\\"${SRC_DIR}\\\" -maxdepth 1 -type f ! -name '*.spec' -exec cp -a {} ./ \\\\;\\n\\n# 4) PATCHS *in-place* dans ./libvirt.spec (AVANT %changelog)\\n# 4.1 Ajouter aarch64 \\u00e0 arches_zfs (si absent)\\nif grep -Eq '^[[:space:]]*%define[[:space:]]+arches_zfs' libvirt.spec; then\\n grep -Eq '^[[:space:]]*%define[[:space:]]+arches_zfs.*\\\\baarch64\\\\b' libvirt.spec || \\\\\\n sed -i -E 's|^(%define[[:space:]]+arches_zfs[[:space:]]+.*)$|\\\\1 aarch64|' libvirt.spec\\nelse\\n # D\\u00e9fense si la macro n\\u2019existe pas : l\\u2019ins\\u00e9rer t\\u00f4t\\n sed -i '1i %define arches_zfs x86_64 aarch64' libvirt.spec\\nfi\\n\\n# 4.2 Activer ZFS dans la branche non-Fedora du bloc \\\"Fedora had zfs-fuse until F43\\\"\\nawk '\\n BEGIN{inblk=0}\\n /^\\\\s*# Fedora (has|had) zfs-fuse/ {inblk=1}\\n inblk && /^\\\\s*%else/ {\\n print; # imprime %else\\n getline; # ligne suivante: %define with_storage_zfs 0\\n sub(/(%define[[:space:]]+with_storage_zfs[[:space:]]+)0\\\\b/, \\\"\\\\\\\\11\\\");\\n print; inblk=0; next\\n }\\n {print}\\n' libvirt.spec > libvirt.spec.new && mv libvirt.spec.new libvirt.spec\\n\\n\\n# 5) Sanity: montrer ce que COPR va consommer (dans \\\".\\\")\\necho \\\"---- IN-CWD SPEC CHECK ----\\\"\\npwd; ls -la\\ngrep -nE 'arches_zfs|with_storage_zfs' libvirt.spec || true\\necho \\\"---------------------------\\\"\\n\", \"chroot\": \"centos-stream-10-aarch64\", \"builddeps\": \"\", \"resultdir\": \"\", \"repos\": \"\", \"fedora_review\": true}", "pkg_name": null, "pkg_main_version": null, "pkg_epoch": null, "pkg_release": null, "srpm_url": null, "uses_devel_repo": null, "sandbox": "bdherouville/libvirt-zfs--bdherouville", "results": null, "appstream": false, "allow_user_ssh": null, "ssh_public_keys": null, "storage": null, "repos": [], "background": false, "destdir": "/var/lib/copr/public_html/results/bdherouville/libvirt-zfs", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/bdherouville/libvirt-zfs", "result_dir": "09740649", "built_packages": "", "tags": [ "arch_aarch64" ], "id": 9740649, "mockchain_macros": { "copr_username": "bdherouville", "copr_projectname": "libvirt-zfs", "vendor": "Fedora Project COPR (bdherouville/libvirt-zfs)" } } ] } [2025-10-28 18:29:38,367][ INFO][PID:3789979] Sending fedora-messaging bus message in build.start [2025-10-28 18:29:39,174][ INFO][PID:3789979] Sending fedora-messaging bus message in chroot.start [2025-10-28 18:29:39,213][ INFO][PID:3789979] Starting remote build: copr-rpmbuild --verbose --drop-resultdir --srpm --task-url https://copr.fedorainfracloud.org/backend/get-srpm-build-task/9740649 --detached [2025-10-28 18:29:39,591][ INFO][PID:3789979] The copr-rpmbuild seems started, per: stdout: stderr: Warning: Permanently added '54.210.201.85' (ED25519) to the list of known hosts. [2025-10-28 18:29:39,592][ INFO][PID:3789979] Downloading the builder-live.log file, attempt 1 [2025-10-28 18:29:39,593][ INFO][PID:3789979] Popen command started: ssh -F /home/copr/.ssh/config mockbuilder@54.210.201.85 copr-rpmbuild-log [2025-10-28 18:29:44,600][ INFO][PID:3789979] Periodic builder liveness probe: alive [2025-10-28 18:29:44,600][ INFO][PID:3789979] Checking for cancel request [2025-10-28 18:29:49,601][ INFO][PID:3789979] Checking for cancel request [2025-10-28 18:29:54,602][ INFO][PID:3789979] Checking for cancel request [2025-10-28 18:29:59,603][ INFO][PID:3789979] Checking for cancel request [2025-10-28 18:30:04,605][ INFO][PID:3789979] Checking for cancel request [2025-10-28 18:30:09,606][ INFO][PID:3789979] Checking for cancel request [2025-10-28 18:30:14,086][ INFO][PID:3789979] Downloading results from builder [2025-10-28 18:30:14,087][ INFO][PID:3789979] rsyncing of mockbuilder@54.210.201.85:/var/lib/copr-rpmbuild/results/ to /var/lib/copr/public_html/results/bdherouville/libvirt-zfs/srpm-builds/09740649 started [2025-10-28 18:30:14,088][ INFO][PID:3789979] Popen command started: /usr/bin/rsync -rltDvH --chmod=D755,F644 -e 'ssh -F /home/copr/.ssh/config' mockbuilder@54.210.201.85:/var/lib/copr-rpmbuild/results/ /var/lib/copr/public_html/results/bdherouville/libvirt-zfs/srpm-builds/09740649/ &> /var/lib/copr/public_html/results/bdherouville/libvirt-zfs/srpm-builds/09740649/build-09740649.rsync.log [2025-10-28 18:30:14,430][ INFO][PID:3789979] rsyncing finished. [2025-10-28 18:30:14,431][ INFO][PID:3789979] Releasing VM back to pool [2025-10-28 18:30:14,441][ INFO][PID:3789979] Searching for 'success' file in resultdir [2025-10-28 18:30:14,442][ ERROR][PID:3789979] Build failed: Backend process error: No success file => build failure [2025-10-28 18:30:14,442][ INFO][PID:3789979] Finished build: id=9740649 failed=True timeout=108000 destdir=/var/lib/copr/public_html/results/bdherouville/libvirt-zfs chroot=srpm-builds [2025-10-28 18:30:14,444][ ERROR][PID:3789979] Backend process error: No success file => build failure [2025-10-28 18:30:14,444][ INFO][PID:3789979] Worker failed build, took 36.09626007080078 [2025-10-28 18:30:14,445][ INFO][PID:3789979] Sending build state back to frontend: { "builds": [ { "timeout": 108000, "frontend_base_url": "https://copr.fedorainfracloud.org", "memory_reqs": null, "enable_net": true, "project_owner": "bdherouville", "project_name": "libvirt-zfs", "project_dirname": "libvirt-zfs", "submitter": "bdherouville", "ended_on": 1761676214.444801, "started_on": 1761676178.348541, "submitted_on": null, "status": 0, "chroot": "srpm-builds", "arch": "aarch64", "buildroot_pkgs": null, "task_id": "9740649", "build_id": 9740649, "package_name": null, "package_version": null, "git_repo": null, "git_hash": null, "git_branch": null, "source_type": 9, "source_json": "{\"script\": \"#! /bin/sh -ex\\n# COPR Custom (Spec+Sources): libvirt EL10 avec ZFS activ\\u00e9 (aarch64)\\n# Sortie attendue par COPR : libvirt.spec + toutes les sources/patches dans \\\".\\\"\\n\\nEVR=\\\"${EVR:-11.8.0-1.el10}\\\"\\nBASEVER=\\\"${BASEVER:-11.8.0}\\\"\\nSRPM_URL=\\\"${SRPM_URL:-https://kojihub.stream.centos.org/kojifiles/packages/libvirt/${BASEVER}/1.el10/src/libvirt-${EVR}.src.rpm}\\\"\\n\\n# 1) Pr\\u00e9parer comme dans l\\u2019exemple de la doc: d\\u00e9poser le SRPM sous redhat/rpm/SRPMS/\\nmkdir -p redhat/rpm/SRPMS\\ncurl -fSLo \\\"redhat/rpm/SRPMS/libvirt-${EVR}.src.rpm\\\" \\\"$SRPM_URL\\\"\\n\\n# 2) Extraire le SRPM avec rpmdev-extract (fourni par rpmdevtools)\\n# => cr\\u00e9e un r\\u00e9pertoire libvirt-*/ contenant .spec + sources\\n \\\"redhat/rpm/SRPMS/libvirt-${EVR}.src.rpm\\\"\\n\\n# 3) Mettre .spec + sources \\u00e0 la RACINE du cwd (exigence COPR Custom)\\n# (ne surtout PAS laisser SPECS/ SOURCES/ ; COPR lit dans \\\".\\\")\\nSRC_DIR=\\\"$(echo libvirt-\\\"${EVR}\\\"* | head -n1)\\\"\\n# Copie la spec\\ncp -a \\\"${SRC_DIR}\\\"/libvirt.spec ./libvirt.spec\\n# Copie toutes les sources/patches au m\\u00eame niveau\\nfind \\\"${SRC_DIR}\\\" -maxdepth 1 -type f ! -name '*.spec' -exec cp -a {} ./ \\\\;\\n\\n# 4) PATCHS *in-place* dans ./libvirt.spec (AVANT %changelog)\\n# 4.1 Ajouter aarch64 \\u00e0 arches_zfs (si absent)\\nif grep -Eq '^[[:space:]]*%define[[:space:]]+arches_zfs' libvirt.spec; then\\n grep -Eq '^[[:space:]]*%define[[:space:]]+arches_zfs.*\\\\baarch64\\\\b' libvirt.spec || \\\\\\n sed -i -E 's|^(%define[[:space:]]+arches_zfs[[:space:]]+.*)$|\\\\1 aarch64|' libvirt.spec\\nelse\\n # D\\u00e9fense si la macro n\\u2019existe pas : l\\u2019ins\\u00e9rer t\\u00f4t\\n sed -i '1i %define arches_zfs x86_64 aarch64' libvirt.spec\\nfi\\n\\n# 4.2 Activer ZFS dans la branche non-Fedora du bloc \\\"Fedora had zfs-fuse until F43\\\"\\nawk '\\n BEGIN{inblk=0}\\n /^\\\\s*# Fedora (has|had) zfs-fuse/ {inblk=1}\\n inblk && /^\\\\s*%else/ {\\n print; # imprime %else\\n getline; # ligne suivante: %define with_storage_zfs 0\\n sub(/(%define[[:space:]]+with_storage_zfs[[:space:]]+)0\\\\b/, \\\"\\\\\\\\11\\\");\\n print; inblk=0; next\\n }\\n {print}\\n' libvirt.spec > libvirt.spec.new && mv libvirt.spec.new libvirt.spec\\n\\n\\n# 5) Sanity: montrer ce que COPR va consommer (dans \\\".\\\")\\necho \\\"---- IN-CWD SPEC CHECK ----\\\"\\npwd; ls -la\\ngrep -nE 'arches_zfs|with_storage_zfs' libvirt.spec || true\\necho \\\"---------------------------\\\"\\n\", \"chroot\": \"centos-stream-10-aarch64\", \"builddeps\": \"\", \"resultdir\": \"\", \"repos\": \"\", \"fedora_review\": true}", "pkg_name": null, "pkg_main_version": null, "pkg_epoch": null, "pkg_release": null, "srpm_url": null, "uses_devel_repo": null, "sandbox": "bdherouville/libvirt-zfs--bdherouville", "results": null, "appstream": false, "allow_user_ssh": null, "ssh_public_keys": null, "storage": null, "repos": [], "background": false, "destdir": "/var/lib/copr/public_html/results/bdherouville/libvirt-zfs", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/bdherouville/libvirt-zfs", "result_dir": "09740649", "built_packages": "", "tags": [ "arch_aarch64" ], "id": 9740649, "mockchain_macros": { "copr_username": "bdherouville", "copr_projectname": "libvirt-zfs", "vendor": "Fedora Project COPR (bdherouville/libvirt-zfs)" } } ] } [2025-10-28 18:30:14,472][ INFO][PID:3789979] Sending fedora-messaging bus message in build.end [2025-10-28 18:30:14,495][ INFO][PID:3789979] Compressing /var/lib/copr/public_html/results/bdherouville/libvirt-zfs/srpm-builds/09740649/builder-live.log by gzip [2025-10-28 18:30:14,496][ INFO][PID:3789979] Running command 'gzip /var/lib/copr/public_html/results/bdherouville/libvirt-zfs/srpm-builds/09740649/builder-live.log' as PID 3798621 [2025-10-28 18:30:14,500][ INFO][PID:3789979] Finished after 0 seconds with exit code 0 (gzip /var/lib/copr/public_html/results/bdherouville/libvirt-zfs/srpm-builds/09740649/builder-live.log) [2025-10-28 18:30:14,501][ INFO][PID:3789979] Compressing /var/lib/copr/public_html/results/bdherouville/libvirt-zfs/srpm-builds/09740649/backend.log by gzip [2025-10-28 18:30:14,502][ INFO][PID:3789979] Running command 'gzip /var/lib/copr/public_html/results/bdherouville/libvirt-zfs/srpm-builds/09740649/backend.log' as PID 3798623