Updated jenkins file

This commit is contained in:
WolverinDEV 2018-08-09 21:46:44 +02:00
parent 7cc40d9020
commit a55770af7d

7
Jenkinsfile vendored
View File

@ -1,5 +1,10 @@
pipeline { pipeline {
agent any agent any
stages {
stage ('building') {
steps {
echo "Hello World"
}
stages { stages {
stage ('x86') { stage ('x86') {
agent { agent {
@ -87,3 +92,5 @@ pipeline {
} }
} }
} }
}
}