[2025-10-28 17:41:16,749][ INFO][PID:3443521] Marking build as starting [2025-10-28 17:41:16,965][ INFO][PID:3443521] Checking for cancel request [2025-10-28 17:41:16,966][ INFO][PID:3443521] VM allocation process starts [2025-10-28 17:41:16,978][ INFO][PID:3443521] Trying to allocate VM: ResallocHost, ticket_id=5894233, requested_tags=['copr_builder', 'arch_aarch64'] [2025-10-28 17:41:19,993][ INFO][PID:3443521] Allocated host ResallocHost, ticket_id=5894233, hostname=35.172.184.91, name=aws_aarch64_normalreserved_prod_07698564_20251028_173629, requested_tags=['copr_builder', 'arch_aarch64'] [2025-10-28 17:41:19,993][ INFO][PID:3443521] Allocating ssh connection to builder [2025-10-28 17:41:19,994][ INFO][PID:3443521] Checking that builder machine is OK [2025-10-28 17:41:20,412][ INFO][PID:3443521] Running remote command: copr-builder-ready srpm-builds [2025-10-28 17:41:20,638][ INFO][PID:3443521] Red Hat subscription not needed for srpm-builds Builder is ready to be used [2025-10-28 17:41:20,638][ INFO][PID:3443521] Filling build.info file with builder info [2025-10-28 17:41:20,639][ INFO][PID:3443521] Checking for cancel request [2025-10-28 17:41:20,640][ INFO][PID:3443521] 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": 1761673280.640121, "submitted_on": null, "status": 3, "chroot": "srpm-builds", "arch": "aarch64", "buildroot_pkgs": null, "task_id": "9740491", "build_id": 9740491, "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# Custom sources (Spec+Sources) for COPR\\n# But: extraire le SRPM libvirt EL10, patcher libvirt.spec pour activer ZFS sur aarch64,\\n# puis d\\u00e9poser *uniquement* libvirt.spec + SOURCES dans $COPR_RESULTDIR.\\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: \\\"${COPR_RESULTDIR:=/workdir}\\\"\\n\\n# 1) R\\u00e9cup\\u00e9rer le SRPM (HTTP; pas de dnf)\\nWORK=\\\"$(mktemp -d /tmp/libvirt-srpm.XXXXXX)\\\"\\ncd \\\"$WORK\\\"\\ncurl -fSLo libvirt.src.rpm \\\"$SRPM_URL\\\"\\n\\n# 2) Extraire le SRPM \\u2192 on obtient *.spec + sources (+ patches)\\nmkdir -p unpack && cd unpack\\nrpm2cpio ../libvirt.src.rpm | cpio -idmv\\n\\n# Arbo minimale attendue par COPR (Spec and sources)\\nmkdir -p SPECS SOURCES\\nSPEC_FILE=\\\"$(ls -1 *.spec | head -n1)\\\"\\nmv \\\"$SPEC_FILE\\\" SPECS/libvirt.spec\\nfor f in *; do\\n [ -f \\\"$f\\\" ] || continue\\n case \\\"$f\\\" in\\n *.spec) : ;;\\n *) mv \\\"$f\\\" SOURCES/ ;;\\n esac\\ndone\\nSPEC=\\\"SPECS/libvirt.spec\\\"\\n\\n# 3) PATCHS *in-place* (AVANT %changelog)\\n# 3.1 Ajouter aarch64 \\u00e0 arches_zfs (si absent)\\nif grep -Eq '^[[:space:]]*%define[[:space:]]+arches_zfs' \\\"$SPEC\\\"; then\\n grep -Eq '^[[:space:]]*%define[[:space:]]+arches_zfs.*\\\\baarch64\\\\b' \\\"$SPEC\\\" || \\\\\\n sed -i -E 's|^(%define[[:space:]]+arches_zfs[[:space:]]+.*)$|\\\\1 aarch64|' \\\"$SPEC\\\"\\nelse\\n # D\\u00e9fense : si la macro n'existe pas, l'ajouter t\\u00f4t dans le fichier (avant %changelog)\\n sed -i '1i %define arches_zfs x86_64 aarch64' \\\"$SPEC\\\"\\nfi\\n\\n# 3.2 Activer ZFS dans le bloc Fedora/RHEL (\\\"Fedora had zfs-fuse until F43\\\")\\n# On remplace la valeur de la branche non-Fedora: %else -> %define with_storage_zfs 1\\nawk '\\n BEGIN{inblk=0}\\n /^\\\\s*# Fedora (has|had) zfs-fuse/ {inblk=1}\\n inblk && /^\\\\s*%else/ {\\n print; # imprime le %else\\n getline; # lire la ligne suivante (le %define ...)\\n sub(/(%define[[:space:]]+with_storage_zfs[[:space:]]+)0\\\\b/, \\\"\\\\\\\\11\\\"); # 0 -> 1\\n print; inblk=0; next\\n }\\n {print}\\n' \\\"$SPEC\\\" > \\\"$SPEC.tmp\\\" && mv \\\"$SPEC.tmp\\\" \\\"$SPEC\\\"\\n\\n# 3.3 (optionnel) D\\u00e9sactiver Gluster pour \\u00e9viter ses BuildRequires\\n# (si la macro existe, on la force \\u00e0 0; sinon on n'ajoute rien)\\nsed -i -E 's/^(%define[[:space:]]+with_storage_gluster[[:space:]]+).*/\\\\10/' \\\"$SPEC\\\" || true\\n\\n# (IMPORTANT) On ne touche pas \\u00e0 %meson. La spec EL10 traduit d\\u00e9j\\u00e0 les macros en -Dstorage_*.\\n\\n# 4) D\\u00e9poser EXACTEMENT le .spec + toutes les sources\\nmkdir -p \\\"$COPR_RESULTDIR\\\"\\ncp -a SPECS/libvirt.spec \\\"$COPR_RESULTDIR\\\"/\\ncp -a SOURCES/* \\\"$COPR_RESULTDIR\\\"/\\n\\n# Debug rapide\\necho \\\"---- grep arches_zfs / with_storage_zfs ----\\\"\\ngrep -nE 'arches_zfs|with_storage_zfs' \\\"$COPR_RESULTDIR/libvirt.spec\\\" || true\\necho \\\"-------------------------------------------\\\"\\n\\nls -l \\\"$COPR_RESULTDIR\\\"\\necho \\\"OK: spec + sources patch\\u00e9s d\\u00e9pos\\u00e9s.\\\"\\n\", \"chroot\": \"centos-stream-10-aarch64\", \"builddeps\": \"\", \"resultdir\": \"/workdir\", \"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": "09740491", "built_packages": "", "tags": [ "arch_aarch64" ], "id": 9740491, "mockchain_macros": { "copr_username": "bdherouville", "copr_projectname": "libvirt-zfs", "vendor": "Fedora Project COPR (bdherouville/libvirt-zfs)" } } ] } [2025-10-28 17:41:20,659][ INFO][PID:3443521] Sending fedora-messaging bus message in build.start [2025-10-28 17:41:21,366][ INFO][PID:3443521] Sending fedora-messaging bus message in chroot.start [2025-10-28 17:41:21,394][ INFO][PID:3443521] Starting remote build: copr-rpmbuild --verbose --drop-resultdir --srpm --task-url https://copr.fedorainfracloud.org/backend/get-srpm-build-task/9740491 --detached [2025-10-28 17:41:21,790][ INFO][PID:3443521] The copr-rpmbuild seems started, per: stdout: stderr: Warning: Permanently added '35.172.184.91' (ED25519) to the list of known hosts. [2025-10-28 17:41:21,791][ INFO][PID:3443521] Downloading the builder-live.log file, attempt 1 [2025-10-28 17:41:21,793][ INFO][PID:3443521] Popen command started: ssh -F /home/copr/.ssh/config mockbuilder@35.172.184.91 copr-rpmbuild-log [2025-10-28 17:41:26,801][ INFO][PID:3443521] Periodic builder liveness probe: alive [2025-10-28 17:41:26,802][ INFO][PID:3443521] Checking for cancel request [2025-10-28 17:41:31,804][ INFO][PID:3443521] Checking for cancel request [2025-10-28 17:41:36,805][ INFO][PID:3443521] Checking for cancel request [2025-10-28 17:41:41,806][ INFO][PID:3443521] Checking for cancel request [2025-10-28 17:41:46,807][ INFO][PID:3443521] Checking for cancel request [2025-10-28 17:41:51,808][ INFO][PID:3443521] Checking for cancel request [2025-10-28 17:41:56,812][ INFO][PID:3443521] Checking for cancel request [2025-10-28 17:42:00,002][ INFO][PID:3443521] Downloading results from builder [2025-10-28 17:42:00,003][ INFO][PID:3443521] rsyncing of mockbuilder@35.172.184.91:/var/lib/copr-rpmbuild/results/ to /var/lib/copr/public_html/results/bdherouville/libvirt-zfs/srpm-builds/09740491 started [2025-10-28 17:42:00,004][ INFO][PID:3443521] Popen command started: /usr/bin/rsync -rltDvH --chmod=D755,F644 -e 'ssh -F /home/copr/.ssh/config' mockbuilder@35.172.184.91:/var/lib/copr-rpmbuild/results/ /var/lib/copr/public_html/results/bdherouville/libvirt-zfs/srpm-builds/09740491/ &> /var/lib/copr/public_html/results/bdherouville/libvirt-zfs/srpm-builds/09740491/build-09740491.rsync.log [2025-10-28 17:42:00,460][ INFO][PID:3443521] rsyncing finished. [2025-10-28 17:42:00,461][ INFO][PID:3443521] Releasing VM back to pool [2025-10-28 17:42:00,473][ INFO][PID:3443521] Searching for 'success' file in resultdir [2025-10-28 17:42:00,474][ INFO][PID:3443521] Getting build details [2025-10-28 17:42:00,474][ INFO][PID:3443521] Retrieving SRPM info from /var/lib/copr/public_html/results/bdherouville/libvirt-zfs/srpm-builds/09740491 [2025-10-28 17:42:00,475][ INFO][PID:3443521] SRPM URL: https://download.copr.fedorainfracloud.org/results/bdherouville/libvirt-zfs/srpm-builds/09740491/libvirt-11.8.0-1.src.rpm [2025-10-28 17:42:00,476][ INFO][PID:3443521] build details: {'srpm_url': 'https://download.copr.fedorainfracloud.org/results/bdherouville/libvirt-zfs/srpm-builds/09740491/libvirt-11.8.0-1.src.rpm', 'pkg_name': 'libvirt', 'pkg_version': '11.8.0-1'} [2025-10-28 17:42:00,476][ INFO][PID:3443521] Finished build: id=9740491 failed=False timeout=108000 destdir=/var/lib/copr/public_html/results/bdherouville/libvirt-zfs chroot=srpm-builds [2025-10-28 17:42:00,478][ INFO][PID:3443521] Worker succeeded build, took 39.838653326034546 [2025-10-28 17:42:00,479][ INFO][PID:3443521] 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": 1761673320.4787743, "started_on": 1761673280.640121, "submitted_on": null, "status": 1, "chroot": "srpm-builds", "arch": "aarch64", "buildroot_pkgs": null, "task_id": "9740491", "build_id": 9740491, "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# Custom sources (Spec+Sources) for COPR\\n# But: extraire le SRPM libvirt EL10, patcher libvirt.spec pour activer ZFS sur aarch64,\\n# puis d\\u00e9poser *uniquement* libvirt.spec + SOURCES dans $COPR_RESULTDIR.\\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: \\\"${COPR_RESULTDIR:=/workdir}\\\"\\n\\n# 1) R\\u00e9cup\\u00e9rer le SRPM (HTTP; pas de dnf)\\nWORK=\\\"$(mktemp -d /tmp/libvirt-srpm.XXXXXX)\\\"\\ncd \\\"$WORK\\\"\\ncurl -fSLo libvirt.src.rpm \\\"$SRPM_URL\\\"\\n\\n# 2) Extraire le SRPM \\u2192 on obtient *.spec + sources (+ patches)\\nmkdir -p unpack && cd unpack\\nrpm2cpio ../libvirt.src.rpm | cpio -idmv\\n\\n# Arbo minimale attendue par COPR (Spec and sources)\\nmkdir -p SPECS SOURCES\\nSPEC_FILE=\\\"$(ls -1 *.spec | head -n1)\\\"\\nmv \\\"$SPEC_FILE\\\" SPECS/libvirt.spec\\nfor f in *; do\\n [ -f \\\"$f\\\" ] || continue\\n case \\\"$f\\\" in\\n *.spec) : ;;\\n *) mv \\\"$f\\\" SOURCES/ ;;\\n esac\\ndone\\nSPEC=\\\"SPECS/libvirt.spec\\\"\\n\\n# 3) PATCHS *in-place* (AVANT %changelog)\\n# 3.1 Ajouter aarch64 \\u00e0 arches_zfs (si absent)\\nif grep -Eq '^[[:space:]]*%define[[:space:]]+arches_zfs' \\\"$SPEC\\\"; then\\n grep -Eq '^[[:space:]]*%define[[:space:]]+arches_zfs.*\\\\baarch64\\\\b' \\\"$SPEC\\\" || \\\\\\n sed -i -E 's|^(%define[[:space:]]+arches_zfs[[:space:]]+.*)$|\\\\1 aarch64|' \\\"$SPEC\\\"\\nelse\\n # D\\u00e9fense : si la macro n'existe pas, l'ajouter t\\u00f4t dans le fichier (avant %changelog)\\n sed -i '1i %define arches_zfs x86_64 aarch64' \\\"$SPEC\\\"\\nfi\\n\\n# 3.2 Activer ZFS dans le bloc Fedora/RHEL (\\\"Fedora had zfs-fuse until F43\\\")\\n# On remplace la valeur de la branche non-Fedora: %else -> %define with_storage_zfs 1\\nawk '\\n BEGIN{inblk=0}\\n /^\\\\s*# Fedora (has|had) zfs-fuse/ {inblk=1}\\n inblk && /^\\\\s*%else/ {\\n print; # imprime le %else\\n getline; # lire la ligne suivante (le %define ...)\\n sub(/(%define[[:space:]]+with_storage_zfs[[:space:]]+)0\\\\b/, \\\"\\\\\\\\11\\\"); # 0 -> 1\\n print; inblk=0; next\\n }\\n {print}\\n' \\\"$SPEC\\\" > \\\"$SPEC.tmp\\\" && mv \\\"$SPEC.tmp\\\" \\\"$SPEC\\\"\\n\\n# 3.3 (optionnel) D\\u00e9sactiver Gluster pour \\u00e9viter ses BuildRequires\\n# (si la macro existe, on la force \\u00e0 0; sinon on n'ajoute rien)\\nsed -i -E 's/^(%define[[:space:]]+with_storage_gluster[[:space:]]+).*/\\\\10/' \\\"$SPEC\\\" || true\\n\\n# (IMPORTANT) On ne touche pas \\u00e0 %meson. La spec EL10 traduit d\\u00e9j\\u00e0 les macros en -Dstorage_*.\\n\\n# 4) D\\u00e9poser EXACTEMENT le .spec + toutes les sources\\nmkdir -p \\\"$COPR_RESULTDIR\\\"\\ncp -a SPECS/libvirt.spec \\\"$COPR_RESULTDIR\\\"/\\ncp -a SOURCES/* \\\"$COPR_RESULTDIR\\\"/\\n\\n# Debug rapide\\necho \\\"---- grep arches_zfs / with_storage_zfs ----\\\"\\ngrep -nE 'arches_zfs|with_storage_zfs' \\\"$COPR_RESULTDIR/libvirt.spec\\\" || true\\necho \\\"-------------------------------------------\\\"\\n\\nls -l \\\"$COPR_RESULTDIR\\\"\\necho \\\"OK: spec + sources patch\\u00e9s d\\u00e9pos\\u00e9s.\\\"\\n\", \"chroot\": \"centos-stream-10-aarch64\", \"builddeps\": \"\", \"resultdir\": \"/workdir\", \"repos\": \"\", \"fedora_review\": true}", "pkg_name": "libvirt", "pkg_main_version": null, "pkg_epoch": null, "pkg_release": null, "srpm_url": "https://download.copr.fedorainfracloud.org/results/bdherouville/libvirt-zfs/srpm-builds/09740491/libvirt-11.8.0-1.src.rpm", "uses_devel_repo": null, "sandbox": "bdherouville/libvirt-zfs--bdherouville", "results": { "name": "libvirt", "epoch": null, "version": "11.8.0", "release": "1", "exclusivearch": [], "excludearch": [] }, "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": "09740491", "built_packages": "", "tags": [ "arch_aarch64" ], "pkg_version": "11.8.0-1", "id": 9740491, "mockchain_macros": { "copr_username": "bdherouville", "copr_projectname": "libvirt-zfs", "vendor": "Fedora Project COPR (bdherouville/libvirt-zfs)" } } ] } [2025-10-28 17:42:00,511][ INFO][PID:3443521] Sending fedora-messaging bus message in build.end [2025-10-28 17:42:00,540][ INFO][PID:3443521] Compressing /var/lib/copr/public_html/results/bdherouville/libvirt-zfs/srpm-builds/09740491/builder-live.log by gzip [2025-10-28 17:42:00,541][ INFO][PID:3443521] Running command 'gzip /var/lib/copr/public_html/results/bdherouville/libvirt-zfs/srpm-builds/09740491/builder-live.log' as PID 3447331 [2025-10-28 17:42:00,546][ INFO][PID:3443521] Finished after 0 seconds with exit code 0 (gzip /var/lib/copr/public_html/results/bdherouville/libvirt-zfs/srpm-builds/09740491/builder-live.log) [2025-10-28 17:42:00,547][ INFO][PID:3443521] Compressing /var/lib/copr/public_html/results/bdherouville/libvirt-zfs/srpm-builds/09740491/backend.log by gzip [2025-10-28 17:42:00,548][ INFO][PID:3443521] Running command 'gzip /var/lib/copr/public_html/results/bdherouville/libvirt-zfs/srpm-builds/09740491/backend.log' as PID 3447333