add jenkinsfile
This commit is contained in:
parent
7ea58fc132
commit
81295a05b1
9
Jenkinsfile
vendored
Normal file
9
Jenkinsfile
vendored
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
pipeline {
|
||||||
|
agent any
|
||||||
|
options { timestamps(); ansiColor('xterm') }
|
||||||
|
stages {
|
||||||
|
stage('Build') { steps { sh 'echo "Build..."' } }
|
||||||
|
stage('Test') { steps { sh 'echo "Test..."' } }
|
||||||
|
}
|
||||||
|
post { always { cleanWs() } }
|
||||||
|
}
|
||||||
Loading…
x
Reference in New Issue
Block a user