Added Jenkinsfile
This commit is contained in:
parent
3c69fcecd0
commit
117195a72a
30
Jenkinsfile
vendored
30
Jenkinsfile
vendored
@ -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...'
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user