forked from analogdevicesinc/precision-converters-firmware
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathJenkinsfile
83 lines (77 loc) · 2 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
@Library(['jenkins_shared_lib','pcts_jenkins_shared_lib']) _
pipeline {
agent none
environment {
// Compiler type used is currently hard coded
TOOLCHAIN = "GCC_ARM"
// MBED_GCC_TOOLCHAIN_PATH is a global jenkins defined environment variable
TOOLCHAIN_PATH = "${MBED_GCC_TOOLCHAIN_PATH}"
}
options {
// This stops multiple copies of this job running, but not multiple parallel matrix builds
disableConcurrentBuilds()
// keeps some named stashes around so that pipeline stages can be restarted
preserveStashes(buildCount: 5)
// Set build log and artifact discarding policy
buildDiscarder(
logRotator(
// number of build logs to keep
numToKeepStr:'10',
// number of builds have their artifacts kept
artifactNumToKeepStr: '10'
)
)
}
stages {
stage("Load Build") {
agent {
node {
label 'firmware_builder'
}
}
steps {
script {
general = load 'CI\\scripts\\generic_ci.groovy'
general.findProjectChanged()
}
}
post {
cleanup {
cleanWs()
}
}
}
stage('Check Licensing') {
when { // When merging to main or develop branches, run licensing check
expression { env.CHANGE_TARGET == "main" || env.CHANGE_TARGET == "develop" }
}
agent { label 'docker' }
steps {
script {
licensing.check()
}
}
}
}
post {
always {
// nothing to do
echo "always"
}
success {
// nothing to do
echo "success"
}
failure {
echo "failure"
}
unstable {
// nothing to do
echo "unstable"
}
changed {
// nothing to do
echo "changed"
}
}
}