소스 검색

add jenkinsfile

huqi 6 년 전
부모
커밋
72a21357e9
1개의 변경된 파일10개의 추가작업 그리고 0개의 파일을 삭제
  1. 10 0
      jenkinsfile

+ 10 - 0
jenkinsfile

@@ -0,0 +1,10 @@
+pipeline {
+    agent {label: "132"}
+    stages {
+        stage('build') {
+            steps {
+                bat 'npm --v'
+            }
+        }
+    }
+}