-
Notifications
You must be signed in to change notification settings - Fork 326
/
example6Jobs.groovy
56 lines (40 loc) · 1.42 KB
/
example6Jobs.groovy
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
String basePath = 'example6'
folder(basePath) {
description 'This example shows how to include script resources from the workspace.'
}
job("$basePath/resources-example-inline") {
steps {
shell '''
# install node/grunt if necessary
node_version=0.10.26
node_name=node-v${node_version}-linux-x64
node_dir=~/jenkins/node
mkdir -p $node_dir
test -f ${node_dir}/${node_name}.tar.gz || wget -P $node_dir http://nodejs.org/dist/v${node_version}/${node_name}.tar.gz
test -f ${node_dir}/${node_name}/bin/node || tar -zxvf ${node_dir}/${node_name}.tar.gz -C $node_dir
export PATH=${node_dir}/${node_name}/bin:$PATH
npm update
npm install
npm install grunt
npm install grunt-cli
export PATH=$PATH:node_modules/grunt-cli/bin/
grunt test
'''.stripIndent().trim()
}
publishers {
groovyPostBuild '''
manager.listener.logger.println 'Do some groovy post processing!'
if (somethingHappens) {
manager.buildFailure()
}
'''.stripIndent().trim()
}
}
job("$basePath/resources-example-external") {
steps {
shell readFileFromWorkspace('src/scripts/gruntTest.sh')
}
publishers {
groovyPostBuild readFileFromWorkspace('src/scripts/postProcess.groovy')
}
}