blob: aac02ad77e2a673ed77fd47436002751a7d8f0c8 [file] [log] [blame]
pipeline {
agent any
stages {
stage('Build') {
steps {
sh 'mkdir build && cd build && cmake .. && make'
}
}
}
}