FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
DevOps-Python-tools/Jenkinsfile at master · XjwCrab/DevOps-Python-tools · GitHub
XjwCrab
/
DevOps-Python-tools
Public
forked from
HariSekhon/DevOps-Python-tools
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
DevOps-Python-tools
/
Jenkinsfile
Copy path
More file actions
More file actions
Latest commit
History
History
History
89 lines (77 loc) · 2.24 KB
Breadcrumbs
DevOps-Python-tools
/
Jenkinsfile
Copy path
File metadata and controls
89 lines (77 loc) · 2.24 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
#!
/usr/bin/env groovy
//
vim:ts=4:sts=4:sw=4:et:filetype=groovy:syntax=groovy
//
//
Author: Hari Sekhon
//
Date: 2017-06-28 12:39:02 +0200 (Wed, 28 Jun 2017)
//
//
https://github.com/harisekhon/devops-python-tools
//
//
License: see accompanying Hari Sekhon LICENSE file
//
//
If you're using my code you're welcome to connect with me on LinkedIn and optionally send me feedback to help steer this or other code I publish
//
//
https://www.linkedin.com/in/harisekhon
//
//
========================================================================== //
//
J e n k i n s P i p e l i n e
//
========================================================================== //
//
Epic Jenkinsfile template:
//
//
https://github.com/HariSekhon/Templates/blob/master/Jenkinsfile
//
Official Documentation:
//
//
https://jenkins.io/doc/book/pipeline/syntax/
//
//
https://www.jenkins.io/doc/pipeline/steps/
//
//
https://www.jenkins.io/doc/pipeline/steps/workflow-basic-steps/
pipeline {
//
to run on Docker or Kubernetes, see the master Jenkinsfile template listed at the top
agent any
options {
timestamps()
timeout(
time
:
2
,
unit
:
'
HOURS
'
)
}
triggers {
cron(
'
H 10 * * 1-5
'
)
pollSCM(
'
H/2 * * * *
'
)
}
stages {
stage (
'
Checkout
'
) {
steps {
checkout([$
class
:
'
GitSCM
'
,
branches
: [[
name
:
'
*/master
'
]],
doGenerateSubmoduleConfigurations
:
false
,
extensions
: [],
submoduleCfg
: [],
userRemoteConfigs
: [[
credentialsId
:
'
'
,
url
:
'
https://github.com/harisekhon/devops-python-tools
'
]]])
}
}
stage(
'
Build
'
) {
steps {
echo
"
Running
${
env.JOB_NAME
}
Build
${
env.BUILD_ID
}
on
${
env.JENKINS_URL
}
"
echo
'
Building...
'
timeout(
time
:
10
,
unit
:
'
MINUTES
'
) {
retry(
3
) {
//
sh 'apt update -q'
//
sh 'apt install -qy make'
//
sh 'make init'
sh
"""
setup/ci_bootstrap.sh &&
make init
"""
}
}
timeout(
time
:
180
,
unit
:
'
MINUTES
'
) {
sh
'
make ci
'
}
}
}
stage(
'
Test
'
) {
options {
retry(
2
)
}
steps {
echo
'
Testing...
'
timeout(
time
:
120
,
unit
:
'
MINUTES
'
) {
sh
'
make test
'
}
}
}
}
}
Back
|
FazBrowse Home
|
New Git URL