This commit is contained in:
parent
14759ab89a
commit
a3f2c020b9
1 changed files with 18 additions and 1 deletions
19
Jenkinsfile
vendored
19
Jenkinsfile
vendored
|
|
@ -12,7 +12,24 @@ pipeline {
|
|||
steps {
|
||||
sh("git submodule update --init --recursive --force")
|
||||
sh("make -j4 CC=musl-gcc LDFLAGS=-static")
|
||||
archiveArtifacts("taiga")
|
||||
sh("mv taiga taiga-linux64")
|
||||
archiveArtifacts("taiga-linux64")
|
||||
}
|
||||
}
|
||||
stage("Build for Windows 32-bit") {
|
||||
agent {
|
||||
label "built-in"
|
||||
}
|
||||
environment {
|
||||
WATCOM = "/usr/watcom"
|
||||
INCLUDE = "/usr/watcom/h:/usr/watcom/h/nt"
|
||||
PATH = "/usr/watcom/binl64:${env.PATH}"
|
||||
}
|
||||
steps {
|
||||
sh("git submodule update --init --recursive --force")
|
||||
sh("make -j4 CC='owcc -bnt' E=.exe")
|
||||
sh("mv taiga.exe taiga-win32.exe")
|
||||
archiveArtifacts("taiga-win32.exe")
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue