[nostalgia] Move Jenkinsfile to allow for platform specificity

This commit is contained in:
2020-05-16 22:46:48 -05:00
parent faaddd1234
commit e3e00b1716

45
jenkins/linux/Jenkinsfile vendored Normal file
View File

@ -0,0 +1,45 @@
pipeline {
agent any
stages {
stage('Environment') {
steps {
sh 'conan profile update settings.compiler.libcxx=libstdc++11 default'
sh 'conan remote add -f bincrafters https://api.bintray.com/conan/bincrafters/public-conan'
sh 'make conan'
}
}
stage('Build Asan') {
steps {
sh 'make purge configure-asan'
sh 'make'
}
}
stage('Test Asan') {
steps {
sh 'make test'
}
}
stage('Build Debug') {
steps {
sh 'make purge configure-debug'
sh 'make'
}
}
stage('Test Debug') {
steps {
sh 'make test'
}
}
stage('Build Release') {
steps {
sh 'make purge configure-release'
sh 'make'
}
}
stage('Test Release') {
steps {
sh 'make test'
}
}
}
}