shmuliar-sp-kr-lab4/Jenkinsfile

24 lines
423 B
Plaintext
Raw Normal View History

2024-12-12 00:43:02 +02:00
pipeline {
agent any
stages {
stage('Checkout') {
steps {
git url: 'http://10.1.1.1:3000/hasslesstech/shmuliar-sp-kr-lab4.git'
}
}
stage('Build') {
steps {
sh 'make -j$(nproc) test'
}
}
stage('Test') {
steps {
sh './tester'
}
}
}
}