From 723bd3945e9448a9ba5c749a041cca160f1c5f33 Mon Sep 17 00:00:00 2001 From: nanxun Date: Thu, 30 Apr 2026 09:45:03 +0800 Subject: [PATCH] ci: move buildx heartbeat logs to tmp --- Jenkinsfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 0efceff..0896d63 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -122,7 +122,7 @@ pipeline { fi sudo docker buildx inspect --builder ${BUILDER_NAME} --bootstrap >/dev/null echo 'Building and pushing multi-arch API image: ${API_IMAGE_TAGGED}' - run_with_heartbeat .jenkins-api-buildx.log \ + run_with_heartbeat /tmp/live-recorder-api-buildx-${IMAGE_TAG}.log \ sudo docker buildx build \ --builder ${BUILDER_NAME} \ --platform ${TARGET_PLATFORMS} \ @@ -193,7 +193,7 @@ pipeline { fi sudo docker buildx inspect --builder ${BUILDER_NAME} --bootstrap >/dev/null echo 'Building and pushing multi-arch Web image: ${WEB_IMAGE_TAGGED}' - run_with_heartbeat .jenkins-web-buildx.log \ + run_with_heartbeat /tmp/live-recorder-web-buildx-${IMAGE_TAG}.log \ sudo docker buildx build \ --builder ${BUILDER_NAME} \ --platform ${TARGET_PLATFORMS} \