From: Michal Sojka Date: Wed, 26 Apr 2017 19:26:38 +0000 (+0200) Subject: jenkins X-Git-Url: https://rtime.felk.cvut.cz/gitweb/testing.git/commitdiff_plain/929c3968d7db7d00da8ab65b51cde9b7ed18709d jenkins --- diff --git a/aaa/Jenkinsfile b/aaa/Jenkinsfile new file mode 100644 index 0000000..88f2ca1 --- /dev/null +++ b/aaa/Jenkinsfile @@ -0,0 +1,26 @@ + + +pipeline { + agent any + + stages { + stage('Build') { + steps { + echo 'Building..' + sh 'date' + } + } + stage('Test') { + steps { + echo 'Testing..' + } + } + stage('Deploy') { + steps { + echo 'Deploying....' + } + } + } +} + +