carla/Jenkinsfile

85 lines
2.0 KiB
Plaintext
Raw Normal View History

2018-05-07 23:33:43 +08:00
pipeline {
agent any
environment {
2019-01-22 22:15:08 +08:00
UE4_ROOT = '/var/lib/jenkins/UnrealEngine_4.21'
2018-05-07 23:33:43 +08:00
}
2018-05-08 23:01:04 +08:00
options {
2018-07-10 22:26:05 +08:00
buildDiscarder(logRotator(numToKeepStr: '3', artifactNumToKeepStr: '3'))
2018-05-08 23:01:04 +08:00
}
2018-05-07 23:33:43 +08:00
stages {
stage('Setup') {
steps {
2018-07-06 19:14:48 +08:00
sh 'make setup'
}
}
2018-07-10 22:26:05 +08:00
stage('Build') {
2018-07-06 19:14:48 +08:00
steps {
sh 'make LibCarla'
sh 'make PythonAPI'
2018-07-10 22:26:05 +08:00
sh 'make CarlaUE4Editor'
2018-07-06 19:14:48 +08:00
}
2018-10-16 17:18:12 +08:00
post {
always {
archiveArtifacts 'PythonAPI/dist/*.egg'
}
}
2018-07-06 19:14:48 +08:00
}
stage('Unit Tests') {
steps {
2018-07-07 00:14:38 +08:00
sh 'make check ARGS="--all --xml"'
2018-07-06 19:14:48 +08:00
}
2018-07-10 22:26:05 +08:00
post {
always {
junit 'Build/test-results/*.xml'
archiveArtifacts 'profiler.csv'
}
2018-05-07 23:33:43 +08:00
}
}
stage('Retrieve Content') {
steps {
sh './Update.sh'
}
}
2018-05-07 23:33:43 +08:00
stage('Package') {
steps {
2018-07-06 19:14:48 +08:00
sh 'make package'
2019-02-28 21:15:27 +08:00
sh 'make export-maps ARGS="--map=/Game/Carla/Maps/Town06 --file=Town06"'
2019-03-28 02:38:09 +08:00
sh 'make export-maps ARGS="--map=/Game/Carla/Maps/Town07 --file=Town07"'
2018-05-07 23:33:43 +08:00
}
2018-07-10 22:26:05 +08:00
post {
always {
archiveArtifacts 'Dist/*.tar.gz'
2019-02-28 21:15:27 +08:00
archiveArtifacts 'ExportedMaps/*.tar.gz'
2018-07-10 22:26:05 +08:00
}
}
2018-05-07 23:33:43 +08:00
}
2018-05-08 23:01:04 +08:00
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'
}
}
}
2018-05-07 23:33:43 +08:00
}
post {
2018-05-08 23:01:04 +08:00
always {
deleteDir()
2018-05-07 23:33:43 +08:00
}
}
}