-
Notifications
You must be signed in to change notification settings - Fork 0
/
Jenkinsfile
84 lines (74 loc) · 2.02 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
84
pipeline {
agent any
environment {
UE4_ROOT = '/var/lib/jenkins/UnrealEngine_4.21'
}
options {
buildDiscarder(logRotator(numToKeepStr: '3', artifactNumToKeepStr: '3'))
}
stages {
stage('Setup') {
steps {
sh 'make setup'
}
}
stage('Build') {
steps {
sh 'make LibCarla'
sh 'make PythonAPI'
sh 'make CarlaUE4Editor'
}
post {
always {
archiveArtifacts 'PythonAPI/carla/dist/*.egg'
}
}
}
stage('Unit Tests') {
steps {
sh 'make check ARGS="--all --xml"'
}
post {
always {
junit 'Build/test-results/*.xml'
archiveArtifacts 'profiler.csv'
}
}
}
stage('Retrieve Content') {
steps {
sh './Update.sh'
}
}
stage('Package') {
steps {
sh 'make package'
sh 'make export-maps ARGS="--map=/Game/Carla/Maps/Town06 --file=Town06"'
sh 'make export-maps ARGS="--map=/Game/Carla/Maps/Town07 --file=Town07"'
}
post {
always {
archiveArtifacts 'Dist/*.tar.gz'
archiveArtifacts 'ExportedMaps/*.tar.gz'
}
}
}
stage('Smoke Tests') {
steps {
sh 'DISPLAY= ./Dist/*/LinuxNoEditor/CarlaUE4.sh --carla-rpc-port=3654 --carla-streaming-port=0 > CarlaUE4.log &'
sh 'make smoke_tests ARGS="--xml"'
}
post {
always {
archiveArtifacts 'CarlaUE4.log'
junit 'Build/test-results/smoke-tests-*.xml'
}
}
}
}
post {
always {
deleteDir()
}
}
}