From a3f2c020b9341d42c3e9145d86b10e760202ffda Mon Sep 17 00:00:00 2001 From: NishiOwO Date: Tue, 3 Mar 2026 01:05:42 +0900 Subject: [PATCH] add watcom build --- Jenkinsfile | 19 ++++++++++++++++++- 1 file changed, 18 insertions(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 730dfbe..54492e4 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -12,7 +12,24 @@ pipeline { steps { sh("git submodule update --init --recursive --force") sh("make -j4 CC=musl-gcc LDFLAGS=-static") - archiveArtifacts("taiga") + sh("mv taiga taiga-linux64") + archiveArtifacts("taiga-linux64") + } + } + stage("Build for Windows 32-bit") { + agent { + label "built-in" + } + environment { + WATCOM = "/usr/watcom" + INCLUDE = "/usr/watcom/h:/usr/watcom/h/nt" + PATH = "/usr/watcom/binl64:${env.PATH}" + } + steps { + sh("git submodule update --init --recursive --force") + sh("make -j4 CC='owcc -bnt' E=.exe") + sh("mv taiga.exe taiga-win32.exe") + archiveArtifacts("taiga-win32.exe") } } }