ft/adds jenkinsfile

This commit is contained in:
itsscb 2023-12-01 00:21:10 +01:00
parent fab35397cc
commit 841b8d4158

11
Jenkinsfile vendored Normal file
View File

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