add more tests to Jenkinsfile

This commit is contained in:
ІО-23 Шмуляр Олег 2024-12-12 20:28:12 +02:00
parent 40e471f1a2
commit ea939928b3
1 changed files with 14 additions and 1 deletions

15
Jenkinsfile vendored
View File

@ -10,13 +10,26 @@ pipeline {
stage('Build') {
steps {
sh 'make -j$(nproc) build',
sh 'make -j$(nproc) test'
}
}
stage('Test') {
steps {
sh './tester'
sh './tester test/testcases_sort_official',
sh './tester test/testcases_sort_custom',
try {
sh './tester test/testcases_sort_wrong'
error("Wrong test indicates success!")
} catch (Exception e) {}
}
}
stage('Clean Up') {
steps {
sh 'make clean'
}
}
}