This commit is contained in:
parent
bb8d3242c6
commit
e0531bf518
1 changed files with 3 additions and 0 deletions
3
Jenkinsfile
vendored
3
Jenkinsfile
vendored
|
|
@ -11,6 +11,7 @@ pipeline {
|
|||
}
|
||||
steps {
|
||||
sh("git submodule update --init --recursive --force")
|
||||
sh("make clean")
|
||||
sh("make -j4 CC=musl-gcc LDFLAGS=-static")
|
||||
sh("mv taiga taiga-linux64")
|
||||
archiveArtifacts("taiga-linux64")
|
||||
|
|
@ -22,6 +23,7 @@ pipeline {
|
|||
}
|
||||
steps {
|
||||
sh("git submodule update --init --recursive --force")
|
||||
sh("make clean")
|
||||
sh("make -j4 CC='musl-gcc -g' LDFLAGS=-static")
|
||||
sh("mv taiga taiga-debug-linux64")
|
||||
archiveArtifacts("taiga-debug-linux64")
|
||||
|
|
@ -38,6 +40,7 @@ pipeline {
|
|||
}
|
||||
steps {
|
||||
sh("git submodule update --init --recursive --force")
|
||||
sh("make clean")
|
||||
sh("make -j4 -f Makefile.watcom")
|
||||
sh("mv taiga.exe taiga-win32.exe")
|
||||
archiveArtifacts("taiga-win32.exe")
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue