commit 199d194cf0c3b41f1d27cbb229424ee00c61c0b8 Author: Tomasz Łysiak Date: Fri Apr 26 10:28:45 2019 +0200 initial commit diff --git a/Jenkinsfile b/Jenkinsfile new file mode 100644 index 0000000..e7d04ab --- /dev/null +++ b/Jenkinsfile @@ -0,0 +1,10 @@ +pipeline { + agent any + stages { + stage('Stage 1') { + steps { + echo 'Hello world!' + } + } + } +}