-
Notifications
You must be signed in to change notification settings - Fork 3
/
Jenkinsfile
52 lines (50 loc) · 1.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
#!groovy
@Library('kanolib') _
pipeline {
agent {
label 'ubuntu_18.04'
}
tools {
nodejs 'Node 8.11.2'
}
post {
always {
junit allowEmptyResults: true, testResults: 'test-results.xml'
junit allowEmptyResults: true, testResults: 'cordova-test-results.xml'
step([$class: 'CheckStylePublisher', pattern: 'eslint.xml'])
}
}
stages {
stage('tools') {
steps {
script {
def YARN_PATH = tool name: 'yarn'
env.PATH = "${env.PATH}:${YARN_PATH}/bin"
}
}
}
stage('install deps') {
steps {
script {
sh "yarn"
}
}
}
stage('checkstyle') {
steps {
script {
sh "yarn checkstyle-ci || exit 0"
}
}
}
stage('run tests') {
steps {
script {
install_chrome_dependencies()
sh "yarn test-ci"
sh "yarn test-cordova-ci"
}
}
}
}
}