[T106][ZXW-22]7520V3SCV2.01.01.02P42U09_VEC_V0.8_AP_VEC origin source commit

Change-Id: Ic6e05d89ecd62fc34f82b23dcf306c93764aec4b
diff --git a/ap/pipeline/VerifyCI b/ap/pipeline/VerifyCI
new file mode 100755
index 0000000..c236fb6
--- /dev/null
+++ b/ap/pipeline/VerifyCI
@@ -0,0 +1,28 @@
+#!/usr/bin/env groovy
+
+pipeline_worknode = "10.235.74.121"
+
+pipeline {
+    agent {
+        node {
+            label pipeline_worknode
+        }
+    }
+    options {
+        timestamps()
+        timeout(time: 1, unit: 'HOURS')
+    }
+    stages {
+        stage("prepare") {
+            steps {
+                sh 'echo prepare'
+                sh "printenv"
+            }
+        }
+        stage("check") {
+            steps {
+                sh 'echo check'
+            }
+        }
+    }
+}