添加Jenkinsfile

This commit is contained in:
LingZhaoHui 2020-09-12 10:06:13 +08:00
parent b111d1fc92
commit bdf91c1e36
2 changed files with 11 additions and 5 deletions

View File

@ -1,5 +0,0 @@
pipeline:
build:
image: plugins/docker
commands:
- make

11
Jenkinsfile vendored Normal file
View File

@ -0,0 +1,11 @@
pipeline {
agent any
stages {
stage('Build') {
steps {
sh 'make'
}
}
}
}