Olaf Bohlen
2023-02-08 a5273551e073a65e71dbae46611e0bb6d7687f4f
new jenkins pipeline
1 files added
17 ■■■■■ changed files
Jenkinsfile 17 ●●●●● patch | view | raw | blame | history
Jenkinsfile
New file
@@ -0,0 +1,17 @@
pipeline {
    agent any
    stages {
    stage('first stage') {
        steps {
        echo 'FIXME'
        sh 'uname -a'
        }
    }
    stage('other stage') {
        steps {
        echo "Stage 2"
        }
    }
    }
}