Updated SD section, added jenkinsfile

This commit is contained in:
2023-02-12 12:01:38 -05:00
parent 221784f594
commit 0e98989091
5 changed files with 50 additions and 1 deletions

10
Jenkinsfile vendored Normal file
View File

@@ -0,0 +1,10 @@
pipeline {
agent any
stages {
stage('Build') {
steps {
echo 'Building'
}
}
}
}