This commit is contained in:
Nishi 2026-02-04 00:25:49 +09:00
commit c04f751a4f
Signed by: nishi
GPG key ID: 27EF69B208EB9343

9
Jenkinsfile vendored
View file

@ -47,6 +47,15 @@ pipeline {
sh("make -j4")
}
}
stage("Build for Windows 64-bit (MSVC)") {
agent {
label "2012r2"
}
steps {
sh("nmake -f NTMakefile clean")
sh("nmake")
}
}
}
post {
always {