because reasons

This commit is contained in:
Grant Limberg 2020-06-18 13:44:19 -07:00
parent fa4ecea095
commit ade8373c0c
No known key found for this signature in database
GPG key ID: 2BA62CCABBB4095A

4
Jenkinsfile vendored
View file

@ -62,12 +62,11 @@ def buildWindows() {
def myNode = {
node ('windows') {
env.SHELL = 'C:/Windows/System32/cmd.exe'
env.PATH = 'C:\\TDM-GCC-64\\bin;C:\\WINDOWS;C:\\Windows\\system32;C:\\CMake\\bin;C:\\Go\\bin'
dir ("build") {
checkout scm
dir ("build") {
withEnv(["PATH=C:\\TDM-GCC-64\\bin;C:\\WINDOWS;C:\\Windows\\system32;C:\\CMake\\bin;C:\\Go\\bin"]) {
def cmakeFlags = ""
if (platform == "i386") {
cmakeFlags = '-DBUILD_32BIT=1'
@ -77,6 +76,7 @@ def buildWindows() {
mingw32-make
"""
}
}
cleanWs deleteDirs: true, disableDeferredWipeout: true, notFailBuild: true
}
}