Adds Jenkinsfile

This commit is contained in:
Kristian Knarvik 2020-02-10 23:17:08 +01:00
parent f0fbe6f4a3
commit 84be752f43

20
Jenkinsfile vendored Normal file
View File

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