-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathJenkinsfile
97 lines (93 loc) · 2.89 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
#!groovy
def notifySlack(String buildStatus = 'STARTED') {
// Build status of null means success.
buildStatus = buildStatus ?: 'SUCCESS'
def color
if (buildStatus == 'STARTED') {
color = '#D4DADF'
} else if (buildStatus == 'SUCCESS') {
color = '#BDFFC3'
} else if (buildStatus == 'UNSTABLE') {
color = '#FFFE89'
} else {
color = '#FF9FA1'
}
def msg = "${buildStatus}: `${env.JOB_NAME}` #${env.BUILD_NUMBER}:\n${env.BUILD_URL}console"
slackSend(color: color, message: msg)
}
pipeline{
agent any
options {
buildDiscarder(logRotator(numToKeepStr: '10', artifactNumToKeepStr: '10'))
}
stages {
stage("Preparation") {
steps {
notifySlack()
git branch: 'next', credentialsId: '35d41123-6975-4d00-9bd7-67177509f1f0', url: '[email protected]:AsianHope/vdpme.git'
}
}
stage("Build") {
steps {
script{
sh''' PYENV_HOME=$WORKSPACE/.pyenv/
# Delete previously built virtualenv
if [ -d $PYENV_HOME ]; then rm -rf $PYENV_HOME
fi
# Create virtualenv and install necessary packages
virtualenv --no-site-packages $PYENV_HOME
. $PYENV_HOME/bin/activate
pip install --quiet -r requirements.txt
ssh [email protected] 'bash /opt/scripts/pickbackup.sh'
gunzip -f -d /opt/jenkins/*.gz
mv -fT /opt/jenkins/jethro-live*.sql /opt/jenkins/vdpme.sql
mysql -udjango -pdjango vdpme < /opt/jenkins/vdpme.sql
python manage.py makemigrations
python manage.py migrate
'''
}
}
}
}
post {
unstable {
script {
currentBuild.result = "UNSTABLE"
echo "build unstable"
notifySlack(currentBuild.result)
}
}
success {
script {
currentBuild.result = "SUCCESS"
echo "build success"
def status = sh(returnStatus: true, script:'''git checkout master
git merge next
git push origin master
cd /opt/jenkins/jethro/
ansible-playbook /opt/jenkins/jethro/site.yml''')
if (status != 0) {
currentBuild.result = "FAILED"
}
notifySlack(currentBuild.result)
}
}
failure {
script{
currentBuild.result = "FAILED"
echo "build failed"
notifySlack(currentBuild.result)
}
}
always {
script {
// junit '**/target/*.xml'
// archive 'target/*.jar'
// notifySlack(currentBuild.result)
echo "end of build"
// sh "rm /opt/jenkins/vdpme.sql"
}
}
}
}
//