From e0531bf518221227caa404bb4cc70df729796176 Mon Sep 17 00:00:00 2001 From: NishiOwO Date: Fri, 6 Mar 2026 21:37:53 +0900 Subject: [PATCH] hm --- Jenkinsfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Jenkinsfile b/Jenkinsfile index 6a86fcb..9652c72 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -11,6 +11,7 @@ pipeline { } steps { sh("git submodule update --init --recursive --force") + sh("make clean") sh("make -j4 CC=musl-gcc LDFLAGS=-static") sh("mv taiga taiga-linux64") archiveArtifacts("taiga-linux64") @@ -22,6 +23,7 @@ pipeline { } steps { sh("git submodule update --init --recursive --force") + sh("make clean") sh("make -j4 CC='musl-gcc -g' LDFLAGS=-static") sh("mv taiga taiga-debug-linux64") archiveArtifacts("taiga-debug-linux64") @@ -38,6 +40,7 @@ pipeline { } steps { sh("git submodule update --init --recursive --force") + sh("make clean") sh("make -j4 -f Makefile.watcom") sh("mv taiga.exe taiga-win32.exe") archiveArtifacts("taiga-win32.exe")