forked from danish348/pythoncode
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathJenkinsfile
More file actions
42 lines (35 loc) · 927 Bytes
/
Jenkinsfile
File metadata and controls
42 lines (35 loc) · 927 Bytes
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
34
35
36
37
38
39
40
41
42
pipeline {
agent any
stages {
stage('Build') {
steps {
script {
sh 'apt-get update'
sh 'apt-get upgrade -y'
}
}
}
stage('Test') {
steps {
script {
sh 'apt-get update'
sh 'apt-get upgrade -y'
sh 'apt-get install -y python3 python3-venv python3-pip'
sh '''
python3 -m venv .venv
. .venv/bin/activate
sleep 15
python test.py
'''
}
}
}
stage('Deploy') {
steps {
script {
echo "The code works fine"
}
}
}
}
}