This commit is contained in:
parent
282283609c
commit
c308bd9324
1 changed files with 25 additions and 0 deletions
25
Jenkinsfile
vendored
25
Jenkinsfile
vendored
|
|
@ -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")
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue