carla/Jenkinsfile

107 lines
2.7 KiB
Plaintext
Raw Normal View History

2018-05-07 23:33:43 +08:00
pipeline {
agent any
environment {
UE4_ROOT = '/var/lib/jenkins/UnrealEngine_4.22'
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'
sh 'make examples'
2018-07-06 19:14:48 +08:00
}
2018-10-16 17:18:12 +08:00
post {
always {
archiveArtifacts 'PythonAPI/carla/dist/*.egg'
2018-10-16 17:18:12 +08:00
}
}
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-12-11 20:42:56 +08:00
sh 'make package ARGS="--packages=AdditionalMaps --clean-intermediate"'
2018-05-07 23:33:43 +08:00
}
2018-07-10 22:26:05 +08:00
post {
always {
archiveArtifacts 'Dist/*.tar.gz'
}
}
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 -opengl --carla-rpc-port=3654 --carla-streaming-port=0 -nosound > CarlaUE4.log &'
sh 'make smoke_tests ARGS="--xml"'
sh 'make run-examples ARGS="localhost 3654"'
}
post {
always {
archiveArtifacts 'CarlaUE4.log'
junit 'Build/test-results/smoke-tests-*.xml'
}
}
}
2019-05-03 01:58:03 +08:00
stage('Deploy') {
when { anyOf { branch "master"; buildingTag() } }
steps {
2019-12-12 21:03:00 +08:00
sh 'git checkout .'
sh 'make deploy ARGS="--replace-latest --docker-push"'
2019-05-03 01:58:03 +08:00
}
}
stage('Doxygen') {
when { anyOf { branch "master"; buildingTag() } }
steps {
sh 'make docs'
sh 'rm -rf ~/carla-simulator.github.io/Doxygen'
sh 'cp -rf ./Doxygen ~/carla-simulator.github.io/'
sh 'cd ~/carla-simulator.github.io && \
git pull && \
git add Doxygen && \
git commit -m "Updated c++ docs" || true && \
git push'
}
}
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
}
}
}