jenkinsfile test

This commit is contained in:
Mario Hüttel 2021-10-10 22:49:53 +02:00
parent 2bc2c0c670
commit 0ab13edced

10
Jenkinsfile vendored
View File

@ -2,7 +2,15 @@ pipeline {
agent any
stages {
stage('Build') {
stage('Configure') {
steps {
echo 'Configuring Cmake...'
mdkir build
cd build
ls
}
}
stage('Build') {
steps {
echo 'Building..'
}