diff --git a/Jenkinsfile b/Jenkinsfile index 4a16913..01ef4b8 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -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() - } - } - } } }