Files
WorldCraft_Discord_Bot/Jenkinsfile
2020-11-14 11:07:41 +01:00

16 lines
168 B
Groovy

pipeline {
agent {
dockerfile {
filename 'Dockerfile'
}
}
stages {
stage('Build') {
steps {
sh 'echo "test"'
}
}
}
}