This commit is contained in:
parent
3e9ffcee0b
commit
f2dd0ac3f1
13 changed files with 698 additions and 15 deletions
8
Jenkinsfile
vendored
8
Jenkinsfile
vendored
|
|
@ -30,7 +30,7 @@ pipeline {
|
|||
}
|
||||
steps {
|
||||
sh("git clean -dfx")
|
||||
sh("./configure --enable-opengl --enable-vulkan --without-vulkan-string-helper")
|
||||
sh("./configure --enable-opengl --enable-directx --enable-vulkan --without-vulkan-string-helper")
|
||||
sh("make -j4")
|
||||
sh("mv src/libMw.so libMw64.so")
|
||||
archiveArtifacts("libMw64.so")
|
||||
|
|
@ -42,7 +42,7 @@ pipeline {
|
|||
}
|
||||
steps {
|
||||
sh("git clean -dfx")
|
||||
sh("./configure --enable-opengl --cross --target=Windows --host=i686-w64-mingw32")
|
||||
sh("./configure --enable-opengl --enable-directx --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")
|
||||
|
|
@ -55,7 +55,7 @@ pipeline {
|
|||
}
|
||||
steps {
|
||||
sh("git clean -dfx")
|
||||
sh("./configure --enable-opengl --cross --target=Windows --host=x86_64-w64-mingw32")
|
||||
sh("./configure --enable-opengl --enable-directx --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")
|
||||
|
|
@ -80,7 +80,7 @@ pipeline {
|
|||
}
|
||||
environment {
|
||||
WATCOM = "/usr/watcom"
|
||||
INCLUDE = "/usr/watcom/h:/usr/watcom/h/nt"
|
||||
INCLUDE = "/usr/watcom/h:/usr/watcom/h/nt:/usr/watcom/h/nt/directx"
|
||||
PATH = "/usr/watcom/binl64:${env.PATH}"
|
||||
}
|
||||
steps {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue