Select Git revision
Jenkinsfile
-
Adrien Béraud authored
Change-Id: I16caa7cd58b082fae77b9f9815613418247b4f55
Adrien Béraud authoredChange-Id: I16caa7cd58b082fae77b9f9815613418247b4f55
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
Jenkinsfile 181 B
pipeline {
agent any
stages {
stage('Build') {
steps {
sh 'mkdir build && cd build && cmake .. && make'
}
}
}
}