AMDVLK/Jenkinsfile

34 lines
534 B
Plaintext
Raw Normal View History

2018-03-23 23:49:32 +03:00
pipeline {
2018-03-24 00:51:33 +03:00
agent none
2018-03-23 23:49:32 +03:00
stages {
2018-03-24 00:51:33 +03:00
stage('Greeting') {
2018-03-23 23:49:32 +03:00
steps {
2018-03-24 00:51:33 +03:00
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...'
2018-03-23 23:49:32 +03:00
}
}
}
}