Remove windows CI job

This commit is contained in:
zontreck 2025-01-22 04:04:02 -07:00
parent b8428c1aab
commit 0dc2f68034

23
Jenkinsfile vendored
View file

@ -32,28 +32,5 @@ pipeline {
}
}
}
stage("Build on Windows") {
agent {
label 'windows'
}
steps {
bat 'compile.bat'
archiveArtifacts artifacts: "cpp\\build\\Debug\\vsleep-cpp.exe", fingerprint: true
archiveArtifacts artifacts: "cpp\\build\\Debug\\pause-cpp.exe", fingerprint: true
archiveArtifacts artifacts: "dart\\out\\*.exe", fingerprint: true
}
post {
always {
deleteDir()
}
}
}
}
}