This repository has been archived on 2023-11-26. You can view files and clone it, but cannot push or open issues or pull requests.
FeedbackD-Configuration/Jenkinsfile
TheBrokenRail 0a99c6d815
All checks were successful
FeedbackD-Configuration/pipeline/head This commit looks good
Add Jenkinsfile
2020-09-10 12:01:46 -04:00

23 lines
543 B
Groovy

pipeline {
agent {
dockerfile true
}
stages {
stage('Prepare Build') {
steps {
sh 'mkdir build; cd build; cmake -DCMAKE_C_COMPILER=clang -DCMAKE_CXX_COMPILEr=clang++ ..'
}
}
stage('Build') {
steps {
sh 'cd build; make -j$(nproc) package'
}
post {
success {
archiveArtifacts artifacts: 'build/*.tar.gz', fingerprint: true
}
}
}
}
}