From 0dc2f680347044684aa8b659ed8749d41da3f70f Mon Sep 17 00:00:00 2001 From: zontreck Date: Wed, 22 Jan 2025 04:04:02 -0700 Subject: [PATCH] Remove windows CI job --- Jenkinsfile | 23 ----------------------- 1 file changed, 23 deletions(-) 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() - } - } - } } }