nostalgia/Jenkinsfile

24 lines
428 B
Plaintext
Raw Normal View History

2018-04-12 23:02:36 -05:00
pipeline {
2019-10-22 23:56:05 -05:00
agent any
2018-04-12 23:02:36 -05:00
stages {
stage('Environment') {
steps {
sh 'conan profile update settings.compiler.libcxx=libstdc++11 default'
sh 'conan remote add bincrafters https://api.bintray.com/conan/bincrafters/public-conan'
}
}
2018-04-12 23:02:36 -05:00
stage('Build') {
steps {
sh 'make conan'
sh 'make configure-debug configure-release'
2018-04-12 23:02:36 -05:00
sh 'make'
}
}
2018-04-13 20:53:59 -05:00
stage('Test') {
steps {
sh 'make test'
}
}
2018-04-12 23:02:36 -05:00
}
}