[2025-06-07 19:48:32,880][ INFO][PID:2892917] Marking build as starting
[2025-06-07 19:48:32,982][ INFO][PID:2892917] Trying to allocate VM: ResallocHost, ticket_id=3404490, requested_tags=['copr_builder', 'arch_x86_64']
[2025-06-07 19:48:36,012][ INFO][PID:2892917] Allocated host ResallocHost, ticket_id=3404490, hostname=52.54.247.244, name=aws_x86_64_normalreserved_prod_04667754_20250607_194305, requested_tags=['copr_builder', 'arch_x86_64']
[2025-06-07 19:48:36,015][ INFO][PID:2892917] Allocating ssh connection to builder
[2025-06-07 19:48:36,017][ INFO][PID:2892917] Checking that builder machine is OK
[2025-06-07 19:48:36,417][ INFO][PID:2892917] Running remote command: copr-builder-ready srpm-builds
[2025-06-07 19:48:36,674][ INFO][PID:2892917] Red Hat subscription not needed for srpm-builds
Builder is ready to be used
[2025-06-07 19:48:36,679][ INFO][PID:2892917] Filling build.info file with builder info
[2025-06-07 19:48:36,686][ INFO][PID:2892917] Sending build state back to frontend: {
"builds": [
{
"timeout": 108000,
"frontend_base_url": "https://copr.fedorainfracloud.org",
"memory_reqs": null,
"enable_net": true,
"project_owner": "dlk",
"project_name": "transgui",
"project_dirname": "transgui",
"submitter": "dlk",
"ended_on": null,
"started_on": 1749325716.6858358,
"submitted_on": null,
"status": 3,
"chroot": "srpm-builds",
"arch": "x86_64",
"buildroot_pkgs": null,
"task_id": "9143431",
"build_id": 9143431,
"package_name": "test",
"package_version": null,
"git_repo": null,
"git_hash": null,
"git_branch": null,
"source_type": 9,
"source_json": "{\"script\": \"#!/bin/sh\\n\\nset -e\\n\\nDATEFMT=\\\"+%Y-%m-%d %H:%M:%S\\\"\\n\\necho \\\"=================================================================================\\\"\\necho \\\"$(date \\\"$DATEFMT\\\"): Starting the build setup script\\\"\\n\\nSDK_DIR=${HOME}/.transgui_sdk\\nFPC_INSTALLDIR=\\\"${SDK_DIR}/fpc-3.2.4-rc1\\\"\\nFPC_BASEPATH=\\\"${FPC_INSTALLDIR}/lib/fpc/3.2.4\\\"\\n\\nmkdir -p ${SDK_DIR}\\ncd ${SDK_DIR}\\nFPC324_RC1_COMMIT='56baf314b5ebf4e5a44fe3e214914fa2e1b34adb'\\ncurl -L -o fpc-src.tar.bz2 \\\"https://gitlab.com/freepascal.org/fpc/source/-/archive/${FPC324_RC1_COMMIT}/source-${FPC324_RC1_COMMIT}.tar.bz2\\\"\\ntar xf fpc-src.tar.bz2\\nmv \\\"source-${FPC324_RC1_COMMIT}\\\" fpc-src\\ncd fpc-src\\nmake all\\nmkdir -p \\\"${FPC_INSTALLDIR}\\\"\\nmake PREFIX=$FPC_INSTALLDIR install\\n\\nexport PATH=${FPC_INSTALLDIR}/bin:${FPC_BASEPATH}:$PATH\\nfpcmkcfg -d basepath=${FPC_BASEPATH} -o ${HOME}/.fpc.cfg\\necho \\\"fpc version = $(fpc -iW)\\\"\\n\\ncd \\\"$SDK_DIR\\\"\\nLAZARUS_COMMIT='cadda6230398688d6106fe37fb0673a9a2bf0cf3'\\ncurl -L -o lazarus-src.tar.bz2 \\\"https://gitlab.com/dkk089/lazarus/-/archive/${LAZARUS_COMMIT}/lazarus-${LAZARUS_COMMIT}.tar.bz2\\\"\\ntar xf lazarus-src.tar.bz2\\nmv \\\"lazarus-${LAZARUS_COMMIT}\\\" lazarus\\ncd lazarus\\nmake bigide LCL_PLATFORM=qt5\\nLAZ_INSTALLDIR=\\\"${SDK_DIR}/lazarus-4.0.0\\\"\\nmkdir -p \\\"${LAZ_INSTALLDIR}\\\"\\nmake PREFIX=\\\"${LAZ_INSTALLDIR}\\\" install\\n\\nls -l \\\"${LAZ_INSTALLDIR}\\\"\\n\\nexport PATH=${LAZ_INSTALLDIR}/bin:$PATH\\necho \\\"lazbuild version = $(lazbuild -v)\\\"\\n\\ncd \\\"$SDK_DIR\\\"\\nrm *.tar.bz2\\n## End of code theft\\n\\n# Create the Lazarus config file\\nmkdir -p ${HOME}/.lazarus\\ncat >${HOME}/.lazarus/environmentoptions.xml << __EOF__\\n\\n\\n \\n \\n \\n \\n\\t\\n__EOF__\\n\\necho \\\"$(date \\\"$DATEFMT\\\"): Fetching the transgui package sources\\\"\\n\\ncd /workdir\\n# Fetch the SPEC file from my fork of lighterowl's transgui repo\\ncurl -L -o transgui.spec \\\"https://raw.githubusercontent.com/dlk3/transgui/refs/heads/copr/build/fedora/transgui.spec\\\"\\n\\n# Comment out the fpc and lazarus package BuildRequires in the SPEC file\\nsed -i 's/\\\\(^BuildRequires:.*fpc.*\\\\)/# \\\\1/' transgui.spec\\nsed -i 's/\\\\(^BuildRequires:.*lazarus.*\\\\)/# \\\\1/' transgui.spec\\n# Make sure the rest of the BuildRequires get installed\\ndnf -y install $(awk '/^BuildRequires:/ {printf \\\"%s \\\",$2}' transgui.spec)\\n\\n# Fetch lighterowl's transgui source \\nTRANSGUI_VERSION=$(awk '/^Version:/ {print $2}' transgui.spec)\\ngit clone --depth 1 --branch v${TRANSGUI_VERSION} --recurse-submodules https://github.com/lighterowl/transgui.git transgui-${TRANSGUI_VERSION}\\n\\n# Fetch the transgui.desktop file and transgui.png icon from my fork of \\n# lighterowl's transgui repo\\ncurl -L -o transgui-${TRANSGUI_VERSION}/transgui.desktop \\\"https://raw.githubusercontent.com/dlk3/transgui/refs/heads/copr/build/fedora/transgui.desktop\\\"\\ncurl -L -o transgui-${TRANSGUI_VERSION}/transgui.png \\\"https://raw.githubusercontent.com/dlk3/transgui/refs/heads/copr/build/fedora/transgui.png\\\"\\n\\n# Create the source tar.gz\\ntar czf ${HOME}/rpmbuild/SOURCES/transgui-${TRANSGUI_VERSION}.tar.gz transgui-${TRANSGUI_VERSION}\\n\", \"chroot\": \"fedora-42-x86_64\", \"builddeps\": \"fpc glibc-devel qt5pas-devel libX11-devel\", \"resultdir\": null, \"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": "dlk/transgui--dlk",
"results": null,
"appstream": false,
"allow_user_ssh": null,
"ssh_public_keys": null,
"storage": null,
"background": false,
"repos": [],
"destdir": "/var/lib/copr/public_html/results/dlk/transgui",
"results_repo_url": "https://download.copr.fedorainfracloud.org/results/dlk/transgui",
"result_dir": "09143431",
"built_packages": "",
"tags": [
"arch_x86_64"
],
"id": 9143431,
"mockchain_macros": {
"copr_username": "dlk",
"copr_projectname": "transgui",
"vendor": "Fedora Project COPR (dlk/transgui)"
}
}
]
}
[2025-06-07 19:48:36,712][ INFO][PID:2892917] Sending fedora-messaging bus message in build.start
[2025-06-07 19:48:37,452][ INFO][PID:2892917] Sending fedora-messaging bus message in chroot.start
[2025-06-07 19:48:37,476][ INFO][PID:2892917] Starting remote build: copr-rpmbuild --verbose --drop-resultdir --srpm --task-url https://copr.fedorainfracloud.org/backend/get-srpm-build-task/9143431 --detached
[2025-06-07 19:48:37,882][ INFO][PID:2892917] Downloading the builder-live.log file, attempt 1
[2025-06-07 19:48:37,886][ INFO][PID:2892917] Popen command started: ssh -F /home/copr/.ssh/config mockbuilder@52.54.247.244 copr-rpmbuild-log
[2025-06-07 19:48:42,894][ INFO][PID:2892917] Periodic builder liveness probe: alive
[2025-06-07 19:53:37,560][ INFO][PID:2892917] Downloading results from builder
[2025-06-07 19:53:37,562][ INFO][PID:2892917] rsyncing of mockbuilder@52.54.247.244:/var/lib/copr-rpmbuild/results/ to /var/lib/copr/public_html/results/dlk/transgui/srpm-builds/09143431 started
[2025-06-07 19:53:37,563][ INFO][PID:2892917] Popen command started: /usr/bin/rsync -rltDvH --chmod=D755,F644 -e 'ssh -F /home/copr/.ssh/config' mockbuilder@52.54.247.244:/var/lib/copr-rpmbuild/results/ /var/lib/copr/public_html/results/dlk/transgui/srpm-builds/09143431/ &> /var/lib/copr/public_html/results/dlk/transgui/srpm-builds/09143431/build-09143431.rsync.log
[2025-06-07 19:53:37,798][ INFO][PID:2892917] rsyncing finished.
[2025-06-07 19:53:37,799][ INFO][PID:2892917] Releasing VM back to pool
[2025-06-07 19:53:37,811][ INFO][PID:2892917] Searching for 'success' file in resultdir
[2025-06-07 19:53:37,812][ ERROR][PID:2892917] Build failed: Backend process error: No success file => build failure
[2025-06-07 19:53:37,814][ INFO][PID:2892917] Finished build: id=9143431 failed=True timeout=108000 destdir=/var/lib/copr/public_html/results/dlk/transgui chroot=srpm-builds
[2025-06-07 19:53:37,820][ ERROR][PID:2892917] Backend process error: No success file => build failure
[2025-06-07 19:53:37,821][ INFO][PID:2892917] Worker failed build, took 301.1357116699219
[2025-06-07 19:53:37,823][ INFO][PID:2892917] Sending build state back to frontend: {
"builds": [
{
"timeout": 108000,
"frontend_base_url": "https://copr.fedorainfracloud.org",
"memory_reqs": null,
"enable_net": true,
"project_owner": "dlk",
"project_name": "transgui",
"project_dirname": "transgui",
"submitter": "dlk",
"ended_on": 1749326017.8215475,
"started_on": 1749325716.6858358,
"submitted_on": null,
"status": 0,
"chroot": "srpm-builds",
"arch": "x86_64",
"buildroot_pkgs": null,
"task_id": "9143431",
"build_id": 9143431,
"package_name": "test",
"package_version": null,
"git_repo": null,
"git_hash": null,
"git_branch": null,
"source_type": 9,
"source_json": "{\"script\": \"#!/bin/sh\\n\\nset -e\\n\\nDATEFMT=\\\"+%Y-%m-%d %H:%M:%S\\\"\\n\\necho \\\"=================================================================================\\\"\\necho \\\"$(date \\\"$DATEFMT\\\"): Starting the build setup script\\\"\\n\\nSDK_DIR=${HOME}/.transgui_sdk\\nFPC_INSTALLDIR=\\\"${SDK_DIR}/fpc-3.2.4-rc1\\\"\\nFPC_BASEPATH=\\\"${FPC_INSTALLDIR}/lib/fpc/3.2.4\\\"\\n\\nmkdir -p ${SDK_DIR}\\ncd ${SDK_DIR}\\nFPC324_RC1_COMMIT='56baf314b5ebf4e5a44fe3e214914fa2e1b34adb'\\ncurl -L -o fpc-src.tar.bz2 \\\"https://gitlab.com/freepascal.org/fpc/source/-/archive/${FPC324_RC1_COMMIT}/source-${FPC324_RC1_COMMIT}.tar.bz2\\\"\\ntar xf fpc-src.tar.bz2\\nmv \\\"source-${FPC324_RC1_COMMIT}\\\" fpc-src\\ncd fpc-src\\nmake all\\nmkdir -p \\\"${FPC_INSTALLDIR}\\\"\\nmake PREFIX=$FPC_INSTALLDIR install\\n\\nexport PATH=${FPC_INSTALLDIR}/bin:${FPC_BASEPATH}:$PATH\\nfpcmkcfg -d basepath=${FPC_BASEPATH} -o ${HOME}/.fpc.cfg\\necho \\\"fpc version = $(fpc -iW)\\\"\\n\\ncd \\\"$SDK_DIR\\\"\\nLAZARUS_COMMIT='cadda6230398688d6106fe37fb0673a9a2bf0cf3'\\ncurl -L -o lazarus-src.tar.bz2 \\\"https://gitlab.com/dkk089/lazarus/-/archive/${LAZARUS_COMMIT}/lazarus-${LAZARUS_COMMIT}.tar.bz2\\\"\\ntar xf lazarus-src.tar.bz2\\nmv \\\"lazarus-${LAZARUS_COMMIT}\\\" lazarus\\ncd lazarus\\nmake bigide LCL_PLATFORM=qt5\\nLAZ_INSTALLDIR=\\\"${SDK_DIR}/lazarus-4.0.0\\\"\\nmkdir -p \\\"${LAZ_INSTALLDIR}\\\"\\nmake PREFIX=\\\"${LAZ_INSTALLDIR}\\\" install\\n\\nls -l \\\"${LAZ_INSTALLDIR}\\\"\\n\\nexport PATH=${LAZ_INSTALLDIR}/bin:$PATH\\necho \\\"lazbuild version = $(lazbuild -v)\\\"\\n\\ncd \\\"$SDK_DIR\\\"\\nrm *.tar.bz2\\n## End of code theft\\n\\n# Create the Lazarus config file\\nmkdir -p ${HOME}/.lazarus\\ncat >${HOME}/.lazarus/environmentoptions.xml << __EOF__\\n\\n\\n \\n \\n \\n \\n\\t\\n__EOF__\\n\\necho \\\"$(date \\\"$DATEFMT\\\"): Fetching the transgui package sources\\\"\\n\\ncd /workdir\\n# Fetch the SPEC file from my fork of lighterowl's transgui repo\\ncurl -L -o transgui.spec \\\"https://raw.githubusercontent.com/dlk3/transgui/refs/heads/copr/build/fedora/transgui.spec\\\"\\n\\n# Comment out the fpc and lazarus package BuildRequires in the SPEC file\\nsed -i 's/\\\\(^BuildRequires:.*fpc.*\\\\)/# \\\\1/' transgui.spec\\nsed -i 's/\\\\(^BuildRequires:.*lazarus.*\\\\)/# \\\\1/' transgui.spec\\n# Make sure the rest of the BuildRequires get installed\\ndnf -y install $(awk '/^BuildRequires:/ {printf \\\"%s \\\",$2}' transgui.spec)\\n\\n# Fetch lighterowl's transgui source \\nTRANSGUI_VERSION=$(awk '/^Version:/ {print $2}' transgui.spec)\\ngit clone --depth 1 --branch v${TRANSGUI_VERSION} --recurse-submodules https://github.com/lighterowl/transgui.git transgui-${TRANSGUI_VERSION}\\n\\n# Fetch the transgui.desktop file and transgui.png icon from my fork of \\n# lighterowl's transgui repo\\ncurl -L -o transgui-${TRANSGUI_VERSION}/transgui.desktop \\\"https://raw.githubusercontent.com/dlk3/transgui/refs/heads/copr/build/fedora/transgui.desktop\\\"\\ncurl -L -o transgui-${TRANSGUI_VERSION}/transgui.png \\\"https://raw.githubusercontent.com/dlk3/transgui/refs/heads/copr/build/fedora/transgui.png\\\"\\n\\n# Create the source tar.gz\\ntar czf ${HOME}/rpmbuild/SOURCES/transgui-${TRANSGUI_VERSION}.tar.gz transgui-${TRANSGUI_VERSION}\\n\", \"chroot\": \"fedora-42-x86_64\", \"builddeps\": \"fpc glibc-devel qt5pas-devel libX11-devel\", \"resultdir\": null, \"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": "dlk/transgui--dlk",
"results": null,
"appstream": false,
"allow_user_ssh": null,
"ssh_public_keys": null,
"storage": null,
"background": false,
"repos": [],
"destdir": "/var/lib/copr/public_html/results/dlk/transgui",
"results_repo_url": "https://download.copr.fedorainfracloud.org/results/dlk/transgui",
"result_dir": "09143431",
"built_packages": "",
"tags": [
"arch_x86_64"
],
"id": 9143431,
"mockchain_macros": {
"copr_username": "dlk",
"copr_projectname": "transgui",
"vendor": "Fedora Project COPR (dlk/transgui)"
}
}
]
}
[2025-06-07 19:53:37,851][ INFO][PID:2892917] Sending fedora-messaging bus message in build.end
[2025-06-07 19:53:37,868][ INFO][PID:2892917] Compressing /var/lib/copr/public_html/results/dlk/transgui/srpm-builds/09143431/builder-live.log by gzip
[2025-06-07 19:53:37,870][ INFO][PID:2892917] Running command 'gzip /var/lib/copr/public_html/results/dlk/transgui/srpm-builds/09143431/builder-live.log' as PID 2923065
[2025-06-07 19:53:37,924][ INFO][PID:2892917] Finished after 0 seconds with exit code 0 (gzip /var/lib/copr/public_html/results/dlk/transgui/srpm-builds/09143431/builder-live.log)
[2025-06-07 19:53:37,926][ INFO][PID:2892917] Compressing /var/lib/copr/public_html/results/dlk/transgui/srpm-builds/09143431/backend.log by gzip