From c308bd9324c6d3d953af71c9bb297e97bab93715 Mon Sep 17 00:00:00 2001 From: NishiOwO Date: Tue, 3 Feb 2026 23:46:24 +0900 Subject: [PATCH] test --- Jenkinsfile | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/Jenkinsfile b/Jenkinsfile index 8a51a78..8c9eb9d 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -10,5 +10,30 @@ pipeline { sh("mv doxygen/html /var/www/milsko-doxygen") } } + stage("Build") { + parallel { + stage("Build for Linux 64-bit") { + steps { + sh("./Makefile.pl --enable-opengl --enable-vulkan --without-vulkan-string-helper") + sh("make clean") + sh("make -j4") + } + } + stage("Build for Windows 32-bit") { + steps { + sh("./Makefile.pl --enable-opengl --enable-stb-truetype --disable-freetype2 --cross --target=Windows --host=i686-w64-mingw32") + sh("make clean") + sh("make -j4") + } + } + stage("Build for Windows 64-bit") { + steps { + sh("./Makefile.pl --enable-opengl --enable-stb-truetype --disable-freetype2 --cross --target=Windows --host=x86_64-w64-mingw32") + sh("make clean") + sh("make -j4") + } + } + } + } } }