separate tests
Some checks are pending
sgraves/cpp-build-system_mac/pipeline/head Build queued...
sgraves/cpp-build-system/pipeline/head Build queued...

This commit is contained in:
2026-01-25 09:28:19 -06:00
parent 22dd35da0b
commit 9294e7f4dd
2 changed files with 29 additions and 2 deletions

View File

@@ -49,7 +49,7 @@ pipeline {
steps { script { retryWithBackoff(2, 5) { sh 'scripts/make_unix.sh aarch64' } } } steps { script { retryWithBackoff(2, 5) { sh 'scripts/make_unix.sh aarch64' } } }
} }
stage('test') { stage('test_linux_x86_64') {
steps { steps {
script { script {
retryWithBackoff(2, 5) { sh 'scripts/run_tests.sh' } retryWithBackoff(2, 5) { sh 'scripts/run_tests.sh' }
@@ -63,6 +63,26 @@ pipeline {
} }
} }
stage('test_mingw64') {
steps {
script {
retryWithBackoff(2, 5) {
sh '''
scripts/run_tests.sh "" "" "" "" 1 1
'''
}
}
}
}
stage('test_linux_aarch64') {
steps {
script {
retryWithBackoff(2, 5) { sh 'scripts/run_tests.sh aarch64' }
}
}
}
stage('deliver') { stage('deliver') {
steps { steps {
script { script {

View File

@@ -45,10 +45,17 @@ pipeline {
steps { script { retryWithBackoff(2, 5) { sh 'scripts/make_unix.sh x86_64' } } } steps { script { retryWithBackoff(2, 5) { sh 'scripts/make_unix.sh x86_64' } } }
} }
stage('test') { stage('test_darwin_aarch64') {
steps { steps {
script { script {
retryWithBackoff(2, 5) { sh 'scripts/run_tests.sh aarch64' } retryWithBackoff(2, 5) { sh 'scripts/run_tests.sh aarch64' }
}
}
}
stage('test_darwin_x86_64') {
steps {
script {
retryWithBackoff(2, 5) { sh 'scripts/run_tests.sh x86_64' } retryWithBackoff(2, 5) { sh 'scripts/run_tests.sh x86_64' }
} }
} }