forked from PX4/PX4-Devguide
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Jenkinsfile
76 lines (67 loc) · 1.86 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
pipeline {
agent {
docker {
image 'px4io/px4-docs:2019-02-03'
}
}
stages {
stage('Build') {
environment {
HOME = "${WORKSPACE}"
}
steps {
sh('export')
checkout(scm)
sh('gitbook install')
sh('gitbook build')
stash(includes: '_book/', name: 'gitbook')
// publish html
publishHTML(target: [
reportTitles: 'PX4 Dev Guide',
allowMissing: false,
alwaysLinkToLastBuild: true,
keepAll: true,
reportDir: '_book',
reportFiles: '*',
reportName: 'PX4 Dev Guide'
])
}
} // Build
stage('Deploy') {
environment {
GIT_AUTHOR_EMAIL = "bot@px4.io"
GIT_AUTHOR_NAME = "PX4BuildBot"
GIT_COMMITTER_EMAIL = "bot@px4.io"
GIT_COMMITTER_NAME = "PX4BuildBot"
}
steps {
sh('export')
unstash('gitbook')
withCredentials([usernamePassword(credentialsId: 'px4buildbot_github_personal_token', passwordVariable: 'GIT_PASS', usernameVariable: 'GIT_USER')]) {
sh('git clone https://${GIT_USER}:${GIT_PASS}@github.com/PX4/dev.px4.io.git')
sh('rm -rf dev.px4.io/${BRANCH_NAME}')
sh('mkdir -p dev.px4.io/${BRANCH_NAME}')
sh('cp -r _book/* dev.px4.io/${BRANCH_NAME}/')
sh('cd dev.px4.io; git add ${BRANCH_NAME}; git commit -a -m "gitbook build update `date`"')
sh('cd dev.px4.io; git push origin master')
}
}
post {
always {
sh('rm -rf dev.px4.io')
}
}
when {
anyOf {
branch "master";
branch "v1.*"
}
}
} // Deploy
} // stages
options {
buildDiscarder(logRotator(numToKeepStr: '10', artifactDaysToKeepStr: '30'))
skipDefaultCheckout()
timeout(time: 60, unit: 'MINUTES')
}
}