-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathJenkinsfile
34 lines (32 loc) · 836 Bytes
/
Jenkinsfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
pipeline {
agent any
stages {
stage('Fetch') {
steps {
git branch: 'main', url: 'https://github.com/aniruddhac13/numbers.git'
sh "mkdir -p ~/workspace/${JOB_NAME}/${BUILD_NUMBER}"
sh "cp ~/workspace/${JOB_NAME}/*.c ~/workspace/${JOB_NAME}/*.h ~/workspace/${JOB_NAME}/*.txt ~/workspace/${JOB_NAME}/Makefile ~/workspace/${JOB_NAME}/${BUILD_NUMBER}/"
}
}
stage('Build') {
steps {
sh "make libnum.a"
}
}
stage('Test') {
steps {
sh "make test"
}
}
stage('Deploy') {
steps {
sh "make deploy"
}
}
}
post {
always {
sh "make clean"
}
}
}