🤷‍♂️

This commit is contained in:
Grant Limberg 2020-06-17 13:26:36 -07:00
parent d8c83dbb08
commit 620fa9ab54
No known key found for this signature in database
GPG key ID: 2BA62CCABBB4095A

6
Jenkinsfile vendored
View file

@ -64,10 +64,8 @@ def buildWindows() {
dir ("build") { dir ("build") {
checkout scm checkout scm
dir ("build") { dir ("build") {
bat """ bat 'cmake -G"MinGW Makefiles" -DCMAKE_BUILD_TYPE=Release ..'
cmake -G"MinGW Makefiles" -DCMAKE_BUILD_TYPE=Release .. bat 'make'
make -j8
"""
} }
cleanWs deleteDirs: true, disableDeferredWipeout: true, notFailBuild: true cleanWs deleteDirs: true, disableDeferredWipeout: true, notFailBuild: true
} }