forked from geogebra/geogebra
-
Notifications
You must be signed in to change notification settings - Fork 0
/
uitest.jenkinsfile
41 lines (39 loc) · 1.11 KB
/
uitest.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
pipeline {
options {
overrideIndexTriggers(false)
buildDiscarder(logRotator(numToKeepStr: '10'))
}
agent {label 'Ubuntu'}
triggers {
cron('H 10,19 * * 1-5')
}
stages {
stage('Native check') {
steps {
sh "grep -rn '/\\*-{' */src */*/src | sed 's/\\([0-9]:\\)/\\1 warning:/' "
recordIssues tool:java()
}
}
stage('Get Web JS'){
steps {
dir('uitest') {
sh "bash get-from-autotest.sh ${env.GIT_BRANCH}"
}
}
}
stage('Build') {
steps {
sh 'docker run --ipc=host -u $(id -u):$(id -g) -e HOME=/work -w /work -v $PWD/uitest:/work cypress/base:16.13.0 sh runtest.sh'
}
post {
always {
junit '**/ui-tests.*.xml'
archiveArtifacts artifacts: 'uitest/cypress/videos/**', allowEmptyArchive: true
}
}
}
}
post {
always { cleanAndNotify() }
}
}