milsko/Jenkinsfile

83 lines
2.5 KiB
Text
Raw Normal View History

2026-02-03 23:24:34 +09:00
pipeline {
2026-07-21 19:37:57 -07:00
agent{
label "built-in"} stages {
2026-02-03 23:24:34 +09:00
stage("Build document") {
2026-07-21 19:37:57 -07:00
when{
branch "master"} agent{
label "built-in"} steps{
sh("rm -rf include/Mw/LowLevel/Wayland")
2026-02-03 23:43:08 +09:00
sh("doxygen")
2026-07-21 19:37:57 -07:00
sh("rm -rf /var/www/milsko-doxygen")
sh("mv doxygen/html /var/www/milsko-doxygen")} post {
2026-02-04 00:02:21 +09:00
always {
notifyDiscord()
}
}
2026-02-03 23:24:34 +09:00
}
2026-02-03 23:46:24 +09:00
stage("Build") {
parallel {
stage("Build for Linux 64-bit") {
2026-07-21 19:37:57 -07:00
agent{
label "built-in"} steps {
2026-05-06 04:36:34 +09:00
sh("git clean -dfx")
2026-07-21 19:37:57 -07:00
sh("./configure --enable-opengl --enable-vulkan --without-vulkan-string-helper")
sh("make -j4")
sh("mv src/libMw.so libMw64.so")
archiveArtifacts("libMw64.so")
2026-02-03 23:46:24 +09:00
}
}
stage("Build for Windows 32-bit") {
2026-07-21 19:37:57 -07:00
agent{
label "built-in"} steps {
2026-05-06 04:36:34 +09:00
sh("git clean -dfx")
2026-07-21 19:37:57 -07:00
sh("./configure --enable-opengl --enable-stb-truetype --disable-freetype2 --cross --target=Windows --host=i686-w64-mingw32")
sh("make -j4")
sh("mv src/Mw.dll Mw32.dll")
sh("mv src/libMw.dll.a libMw32.dll.a")
archiveArtifacts("Mw32.dll,libMw32.dll.a")
2026-02-03 23:46:24 +09:00
}
}
stage("Build for Windows 64-bit") {
2026-07-21 19:37:57 -07:00
agent{
label "built-in"} steps {
2026-05-06 04:36:34 +09:00
sh("git clean -dfx")
2026-07-21 19:37:57 -07:00
sh("./configure --enable-opengl --enable-stb-truetype --disable-freetype2 --cross --target=Windows --host=x86_64-w64-mingw32")
sh("make -j4")
sh("mv src/Mw.dll Mw64.dll")
sh("mv src/libMw.dll.a libMw64.dll.a")
archiveArtifacts("Mw64.dll,libMw64.dll.a")
2026-02-03 23:46:24 +09:00
}
}
2026-04-06 17:37:19 +09:00
stage("Build for Windows 32-bit (MSVC)") {
2026-07-21 19:37:57 -07:00
agent{
label "2012r2"} steps {
2026-05-06 04:36:34 +09:00
bat("git clean -dfx")
2026-07-21 19:37:57 -07:00
bat("nmake -f NTMakefile")
bat("move /y src\\Mw.dll MwMSVC32.dll")
bat("move /y src\\Mw.lib MwMSVC32.lib")
archiveArtifacts("MwMSVC32.dll,MwMSVC32.lib")
2026-02-04 00:25:49 +09:00
}
}
2026-05-06 04:39:53 +09:00
stage("Build for Windows 32-bit (Watcom)") {
2026-07-21 19:37:57 -07:00
agent{
label "built-in"} environment{
WATCOM = "/usr/watcom" INCLUDE = "/usr/watcom/h:/usr/watcom/h/nt" PATH = "/usr/watcom/binl64:${env.PATH}"} steps {
2026-05-06 04:36:34 +09:00
sh("git clean -dfx")
2026-07-21 19:37:57 -07:00
sh("wmake -f WatMakefile")
sh("mv src/Mw.dll MwWat32.dll")
sh("mv src/Mw.lib MwWat32.lib")
archiveArtifacts("MwWat32.dll,MwWat32.lib")
sh("./tools/watcom-pack.sh")
sh("mv milsko-examples.zip milsko-examples-win32.zip")
archiveArtifacts("milsko-examples-win32.zip")
2026-05-06 04:36:34 +09:00
}
}
2026-02-03 23:46:24 +09:00
}
2026-02-04 00:02:21 +09:00
post {
always {
notifyDiscord()
}
}
2026-02-03 23:46:24 +09:00
}
2026-02-03 23:24:34 +09:00
}
}