From bb8d3242c67d6a106a568964ef94aa92dc2b8736 Mon Sep 17 00:00:00 2001 From: NishiOwO Date: Fri, 6 Mar 2026 21:32:23 +0900 Subject: [PATCH] enable debug --- Jenkinsfile | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/Jenkinsfile b/Jenkinsfile index 638ea68..6a86fcb 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -16,6 +16,17 @@ pipeline { archiveArtifacts("taiga-linux64") } } + stage("Build for Linux 64-bit (Debug)") { + agent { + label "built-in" + } + steps { + sh("git submodule update --init --recursive --force") + sh("make -j4 CC='musl-gcc -g' LDFLAGS=-static") + sh("mv taiga taiga-debug-linux64") + archiveArtifacts("taiga-debug-linux64") + } + } stage("Build for Windows 32-bit") { agent { label "built-in"