shmuliar-sp-kr-lab4/Jenkinsfile

24 lines
423 B
Groovy

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'
}
}
}
}