-
Notifications
You must be signed in to change notification settings - Fork 0
/
Jenkinsfile
64 lines (62 loc) · 1.62 KB
/
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
node{
stage('GIT REPO CHECKOUT'){
git 'https://github.com/lightning-incorp/alphaA.git'
sh 'echo GIT pull success! '
}
stage('PRE ENVIRONMENT INSTALLATIONS'){
sh '''
sudo apt-get install python3-pip -y
sudo pip3 install virtualenv
virtualenv venv
. venv /bin/activate
sudo pip3 install -r requirements.txt'''
}
stage('APACHE CONFIG'){
sh '''
'''
}
}
// pipeline {
// agent any
// stages {
// stage('Terraform Initialization') {
// steps {
// sh 'terraform init'
// }
// }
// stage('Terraform Validation') {
// steps {
// sh 'terraform validate'
// }
// }
// stage('Terraform Planing') {
// steps {
// sh 'terraform plan -out sbi'
// }
// }
// stage('Terraform Formatting') {
// steps{
// sh 'terraform fmt'
// }
// }
// stage('GIT Publish') {
// steps{
// sh 'git branch'
// // sh 'git config --global user.email "[email protected]"'
// // sh 'git config --global user.name "john-s21"'
// // sh 'rm -rf mplan'
// // sh 'git add *'
// // sh 'git status'
// // sh 'git checkout main'
// }
// }
// }
// post {
// success{
// echo "SUCCESS!!!"
// }
// failure {
// echo "Deployment Failed"
// }
// }
// }