Add test Jenkinsfile

This commit is contained in:
Salt 2022-01-22 15:25:03 -06:00
parent 6041244174
commit 7e45b51a8a
2 changed files with 12 additions and 0 deletions

View File

@ -4,3 +4,4 @@
deploy.sh
README.md
test.sh
Jenkinsfile

11
Jenkinsfile vendored Normal file
View File

@ -0,0 +1,11 @@
pipeline {
agent any
stages {
stage('Build') {
echo 'BUILD'
}
stage('Build Tag') {
echo 'BUILD TAG'
}
}
}