[Feature][T106]ZXW P56U09 code
Only Configure: Yes
Affected branch: master
Affected module: unknow
Is it affected on both ZXIC and MTK: only ZXIC
Self-test: No
Doc Update: No
Change-Id: I3cbd8b420271eb20c2b40ebe5c78f83059cd42f3
diff --git a/boot/pipeline/VerifyCI b/boot/pipeline/VerifyCI
new file mode 100755
index 0000000..c236fb6
--- /dev/null
+++ b/boot/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'
+ }
+ }
+ }
+}