[nostalgia/jenkins] Add Mac Jenkinsfile
This commit is contained in:
parent
5774bcfdcf
commit
458258e30f
45
jenkins/mac/Jenkinsfile
vendored
Normal file
45
jenkins/mac/Jenkinsfile
vendored
Normal file
@ -0,0 +1,45 @@
|
||||
pipeline {
|
||||
agent {
|
||||
label 'mac-x86_64'
|
||||
}
|
||||
stages {
|
||||
stage('Environment') {
|
||||
steps {
|
||||
sh 'make vcpkg'
|
||||
}
|
||||
}
|
||||
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'
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user