enable debug
Some checks failed
pyrite-dev/taiga/pipeline/head There was a failure building this commit

This commit is contained in:
Nishi 2026-03-06 21:32:23 +09:00
commit bb8d3242c6
Signed by: nishi
GPG key ID: 27EF69B208EB9343

11
Jenkinsfile vendored
View file

@ -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"