add watcom build
All checks were successful
pyrite-dev/taiga/pipeline/head This commit looks good

This commit is contained in:
Nishi 2026-03-03 01:05:42 +09:00
commit a3f2c020b9
Signed by: nishi
GPG key ID: 27EF69B208EB9343

19
Jenkinsfile vendored
View file

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