Added Jenkinsfile

This commit is contained in:
Rihong 2018-03-23 17:51:33 -04:00
parent 3c69fcecd0
commit 117195a72a

30
Jenkinsfile vendored
View File

@ -1,9 +1,33 @@
pipeline {
agent any
agent none
stages {
stage('Example Build') {
stage('Greeting') {
steps {
echo 'Hello World'
echo 'Hello Vulkan Open Source'
}
}
stage('Builds') {
parallel {
stage('Build32') {
steps {
sh 'sfsdfsd'
}
}
stage('Build64') {
steps {
sh 'Build64'
}
}
}
}
stage('Tests') {
steps {
echo 'Testing starts'
}
}
stage('Deploy') {
steps {
echo 'Deployment starts...'
}
}
}