2020-03-19 07:45:00 +08:00
|
|
|
#!/usr/bin/env groovy
|
|
|
|
|
2020-03-05 20:16:18 +08:00
|
|
|
pipeline
|
|
|
|
{
|
|
|
|
agent none
|
2018-05-07 23:33:43 +08:00
|
|
|
|
2020-03-05 20:16:18 +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
|
|
|
}
|
|
|
|
|
2020-03-05 20:16:18 +08:00
|
|
|
stages
|
|
|
|
{
|
2020-03-19 07:45:00 +08:00
|
|
|
stage('Creating nodes')
|
|
|
|
{
|
|
|
|
agent { label "master" }
|
|
|
|
steps
|
|
|
|
{
|
|
|
|
script
|
|
|
|
{
|
|
|
|
JOB_ID = "${env.BUILD_TAG}"
|
2021-02-10 01:42:13 +08:00
|
|
|
jenkinsLib = load("/home/jenkins/jenkins_426.groovy")
|
2020-08-25 18:58:12 +08:00
|
|
|
|
2020-03-19 21:38:04 +08:00
|
|
|
jenkinsLib.CreateUbuntuBuildNode(JOB_ID)
|
|
|
|
jenkinsLib.CreateWindowsBuildNode(JOB_ID)
|
2020-03-19 07:45:00 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
stage('Building CARLA')
|
2020-03-05 20:16:18 +08:00
|
|
|
{
|
|
|
|
parallel
|
|
|
|
{
|
|
|
|
stage('ubuntu')
|
|
|
|
{
|
2020-03-19 07:45:00 +08:00
|
|
|
agent { label "ubuntu && build && ${JOB_ID}" }
|
2021-02-10 02:35:20 +08:00
|
|
|
environment
|
|
|
|
{
|
|
|
|
UE4_ROOT = '/home/jenkins/UnrealEngine_4.26'
|
|
|
|
}
|
2020-03-05 20:16:18 +08:00
|
|
|
stages
|
|
|
|
{
|
|
|
|
stage('ubuntu setup')
|
|
|
|
{
|
|
|
|
steps
|
|
|
|
{
|
2020-12-11 20:11:14 +08:00
|
|
|
sh 'git update-index --skip-worktree Unreal/CarlaUE4/CarlaUE4.uproject'
|
2021-07-30 17:18:30 +08:00
|
|
|
sh 'make setup ARGS="--python-version=3.7,2 --target-wheel-platform=manylinux_2_27_x86_64 --chrono"'
|
2020-03-05 20:16:18 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
stage('ubuntu build')
|
|
|
|
{
|
|
|
|
steps
|
|
|
|
{
|
|
|
|
sh 'make LibCarla'
|
2021-07-15 17:18:34 +08:00
|
|
|
sh 'make PythonAPI ARGS="--python-version=3.7,2 --target-wheel-platform=manylinux_2_27_x86_64"'
|
2021-03-01 23:56:31 +08:00
|
|
|
sh 'make CarlaUE4Editor ARGS="--chrono"'
|
2020-12-22 18:08:27 +08:00
|
|
|
sh 'make plugins'
|
2020-03-05 20:16:18 +08:00
|
|
|
sh 'make examples'
|
|
|
|
}
|
|
|
|
post
|
|
|
|
{
|
|
|
|
always
|
|
|
|
{
|
|
|
|
archiveArtifacts 'PythonAPI/carla/dist/*.egg'
|
2021-07-21 00:20:03 +08:00
|
|
|
archiveArtifacts 'PythonAPI/carla/dist/*.whl'
|
2020-03-05 20:16:18 +08:00
|
|
|
stash includes: 'PythonAPI/carla/dist/*.egg', name: 'ubuntu_eggs'
|
2021-07-21 00:20:03 +08:00
|
|
|
stash includes: 'PythonAPI/carla/dist/*.whl', name: 'ubuntu_wheels'
|
2020-03-05 20:16:18 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
stage('ubuntu unit tests')
|
|
|
|
{
|
|
|
|
steps
|
|
|
|
{
|
2021-07-30 17:18:30 +08:00
|
|
|
sh 'make check ARGS="--all --xml --python-version=3.7,2 --target-wheel-platform=manylinux_2_27_x86_64"'
|
2020-03-05 20:16:18 +08:00
|
|
|
}
|
|
|
|
post
|
|
|
|
{
|
|
|
|
always
|
|
|
|
{
|
|
|
|
junit 'Build/test-results/*.xml'
|
|
|
|
archiveArtifacts 'profiler.csv'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
stage('ubuntu retrieve content')
|
|
|
|
{
|
|
|
|
steps
|
|
|
|
{
|
|
|
|
sh './Update.sh'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
stage('ubuntu package')
|
|
|
|
{
|
|
|
|
steps
|
|
|
|
{
|
2021-07-30 09:07:41 +08:00
|
|
|
sh 'make package ARGS="--python-version=3.7,2 --target-wheel-platform=manylinux_2_27_x86_64 --chrono"'
|
2022-11-29 21:46:21 +08:00
|
|
|
sh 'make package ARGS="--packages=AdditionalMaps,Town06_Opt,Town07_Opt,Town11,Town12 --target-archive=AdditionalMaps --clean-intermediate --python-version=3.7,2 --target-wheel-platform=manylinux_2_27_x86_64"'
|
2020-03-05 20:16:18 +08:00
|
|
|
sh 'make examples ARGS="localhost 3654"'
|
|
|
|
}
|
2020-08-25 18:58:12 +08:00
|
|
|
post
|
2020-03-19 07:45:00 +08:00
|
|
|
{
|
2020-08-25 18:58:12 +08:00
|
|
|
always
|
2020-03-19 07:45:00 +08:00
|
|
|
{
|
2020-03-05 20:16:18 +08:00
|
|
|
archiveArtifacts 'Dist/*.tar.gz'
|
|
|
|
stash includes: 'Dist/CARLA*.tar.gz', name: 'ubuntu_package'
|
2021-07-30 16:01:45 +08:00
|
|
|
// stash includes: 'Dist/AdditionalMaps*.tar.gz', name: 'ubuntu_package2'
|
2020-03-05 20:16:18 +08:00
|
|
|
stash includes: 'Examples/', name: 'ubuntu_examples'
|
|
|
|
}
|
2020-09-16 19:22:09 +08:00
|
|
|
success
|
|
|
|
{
|
|
|
|
node('master')
|
|
|
|
{
|
|
|
|
script
|
|
|
|
{
|
|
|
|
JOB_ID = "${env.BUILD_TAG}"
|
2021-02-10 01:42:13 +08:00
|
|
|
jenkinsLib = load("/home/jenkins/jenkins_426.groovy")
|
2020-10-01 22:12:15 +08:00
|
|
|
|
2020-09-16 19:22:09 +08:00
|
|
|
jenkinsLib.CreateUbuntuTestNode(JOB_ID)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
stage('ubuntu smoke tests')
|
|
|
|
{
|
|
|
|
agent { label "ubuntu && gpu && ${JOB_ID}" }
|
|
|
|
steps
|
|
|
|
{
|
|
|
|
unstash name: 'ubuntu_eggs'
|
2021-07-21 00:20:03 +08:00
|
|
|
unstash name: 'ubuntu_wheels'
|
2020-09-16 19:22:09 +08:00
|
|
|
unstash name: 'ubuntu_package'
|
2021-07-30 16:01:45 +08:00
|
|
|
// unstash name: 'ubuntu_package2'
|
2020-09-16 19:22:09 +08:00
|
|
|
unstash name: 'ubuntu_examples'
|
|
|
|
sh 'tar -xvzf Dist/CARLA*.tar.gz -C Dist/'
|
2021-07-30 16:01:45 +08:00
|
|
|
// sh 'tar -xvzf Dist/AdditionalMaps*.tar.gz -C Dist/'
|
2021-05-20 19:01:48 +08:00
|
|
|
sh 'DISPLAY= ./Dist/CarlaUE4.sh -nullrhi -RenderOffScreen --carla-rpc-port=3654 --carla-streaming-port=0 -nosound > CarlaUE4.log &'
|
2021-07-30 17:18:30 +08:00
|
|
|
sh 'make smoke_tests ARGS="--xml --python-version=3.7,2 --target-wheel-platform=manylinux_2_27_x86_64"'
|
2021-05-10 01:45:24 +08:00
|
|
|
sh 'make run-examples ARGS="localhost 3654"'
|
2020-09-16 19:22:09 +08:00
|
|
|
}
|
|
|
|
post
|
|
|
|
{
|
|
|
|
always
|
|
|
|
{
|
|
|
|
archiveArtifacts 'CarlaUE4.log'
|
|
|
|
junit 'Build/test-results/smoke-tests-*.xml'
|
|
|
|
deleteDir()
|
|
|
|
node('master')
|
|
|
|
{
|
|
|
|
script
|
|
|
|
{
|
|
|
|
JOB_ID = "${env.BUILD_TAG}"
|
2021-02-10 01:42:13 +08:00
|
|
|
jenkinsLib = load("/home/jenkins/jenkins_426.groovy")
|
2020-10-01 22:12:15 +08:00
|
|
|
|
2020-09-16 19:22:09 +08:00
|
|
|
jenkinsLib.DeleteUbuntuTestNode(JOB_ID)
|
|
|
|
}
|
|
|
|
}
|
2020-10-01 22:12:15 +08:00
|
|
|
}
|
2020-03-05 20:16:18 +08:00
|
|
|
}
|
|
|
|
}
|
2020-09-23 18:00:19 +08:00
|
|
|
stage('ubuntu deploy dev')
|
|
|
|
{
|
|
|
|
when { branch "dev"; }
|
|
|
|
steps
|
|
|
|
{
|
|
|
|
sh 'git checkout .'
|
2021-07-29 06:01:44 +08:00
|
|
|
sh 'make deploy ARGS="--replace-latest"'
|
2020-09-23 18:00:19 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
stage('ubuntu deploy master')
|
2020-03-05 20:16:18 +08:00
|
|
|
{
|
|
|
|
when { anyOf { branch "master"; buildingTag() } }
|
|
|
|
steps
|
|
|
|
{
|
|
|
|
sh 'git checkout .'
|
|
|
|
sh 'make deploy ARGS="--replace-latest --docker-push"'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
stage('ubuntu Doxygen')
|
|
|
|
{
|
2021-09-21 05:46:16 +08:00
|
|
|
when { anyOf { branch "master"; branch "dev"; buildingTag() } }
|
2020-03-05 20:16:18 +08:00
|
|
|
steps
|
|
|
|
{
|
|
|
|
sh 'rm -rf ~/carla-simulator.github.io/Doxygen'
|
2020-03-06 21:38:22 +08:00
|
|
|
sh '''
|
|
|
|
cd ~/carla-simulator.github.io
|
2021-10-27 15:16:38 +08:00
|
|
|
git remote set-url origin git@docs:carla-simulator/carla-simulator.github.io.git
|
2020-03-13 16:24:46 +08:00
|
|
|
git fetch
|
2020-03-06 21:38:22 +08:00
|
|
|
git checkout -B master origin/master
|
|
|
|
'''
|
|
|
|
sh 'make docs'
|
2020-03-05 20:16:18 +08:00
|
|
|
sh 'cp -rf ./Doxygen ~/carla-simulator.github.io/'
|
|
|
|
sh '''
|
|
|
|
cd ~/carla-simulator.github.io
|
|
|
|
git add Doxygen
|
|
|
|
git commit -m "Updated c++ docs" || true
|
|
|
|
git push
|
|
|
|
'''
|
|
|
|
}
|
2020-03-19 07:45:00 +08:00
|
|
|
post
|
|
|
|
{
|
|
|
|
always
|
|
|
|
{
|
|
|
|
deleteDir()
|
|
|
|
}
|
|
|
|
}
|
2020-03-05 20:16:18 +08:00
|
|
|
}
|
2020-03-21 01:13:08 +08:00
|
|
|
}
|
2020-08-25 18:58:12 +08:00
|
|
|
post
|
2020-03-21 01:13:08 +08:00
|
|
|
{
|
2020-08-25 18:58:12 +08:00
|
|
|
always
|
|
|
|
{
|
|
|
|
deleteDir()
|
2020-03-21 01:13:08 +08:00
|
|
|
|
|
|
|
node('master')
|
2020-03-13 16:24:46 +08:00
|
|
|
{
|
2020-03-21 01:13:08 +08:00
|
|
|
script
|
|
|
|
{
|
|
|
|
JOB_ID = "${env.BUILD_TAG}"
|
2021-02-10 01:42:13 +08:00
|
|
|
jenkinsLib = load("/home/jenkins/jenkins_426.groovy")
|
2020-08-25 18:58:12 +08:00
|
|
|
|
2020-03-21 01:13:08 +08:00
|
|
|
jenkinsLib.DeleteUbuntuBuildNode(JOB_ID)
|
|
|
|
}
|
2020-03-13 16:24:46 +08:00
|
|
|
}
|
|
|
|
}
|
2020-03-05 20:16:18 +08:00
|
|
|
}
|
2019-03-08 21:41:23 +08:00
|
|
|
}
|
2020-03-19 21:38:04 +08:00
|
|
|
stage('windows')
|
|
|
|
{
|
|
|
|
agent { label "windows && build && ${JOB_ID}" }
|
2021-02-10 02:35:20 +08:00
|
|
|
environment
|
|
|
|
{
|
2021-02-24 01:11:55 +08:00
|
|
|
UE4_ROOT = 'C:\\UE_4.26'
|
2021-02-10 02:35:20 +08:00
|
|
|
}
|
2020-03-19 21:38:04 +08:00
|
|
|
stages
|
|
|
|
{
|
|
|
|
stage('windows setup')
|
|
|
|
{
|
|
|
|
steps
|
|
|
|
{
|
2020-12-11 20:11:14 +08:00
|
|
|
bat """
|
|
|
|
call ../setEnv64.bat
|
|
|
|
git update-index --skip-worktree Unreal/CarlaUE4/CarlaUE4.uproject
|
|
|
|
"""
|
2020-03-19 21:38:04 +08:00
|
|
|
bat """
|
|
|
|
call ../setEnv64.bat
|
2021-03-01 23:56:31 +08:00
|
|
|
make setup ARGS="--chrono"
|
2020-03-19 21:38:04 +08:00
|
|
|
"""
|
|
|
|
}
|
|
|
|
}
|
|
|
|
stage('windows build')
|
|
|
|
{
|
|
|
|
steps
|
|
|
|
{
|
|
|
|
bat """
|
|
|
|
call ../setEnv64.bat
|
|
|
|
make LibCarla
|
|
|
|
"""
|
|
|
|
bat """
|
|
|
|
call ../setEnv64.bat
|
|
|
|
make PythonAPI
|
|
|
|
"""
|
|
|
|
bat """
|
|
|
|
call ../setEnv64.bat
|
2021-03-01 23:56:31 +08:00
|
|
|
make CarlaUE4Editor ARGS="--chrono"
|
2020-03-19 21:38:04 +08:00
|
|
|
"""
|
2020-12-22 18:08:27 +08:00
|
|
|
bat """
|
|
|
|
call ../setEnv64.bat
|
|
|
|
make plugins
|
|
|
|
"""
|
2020-03-19 21:38:04 +08:00
|
|
|
}
|
|
|
|
post
|
|
|
|
{
|
|
|
|
always
|
|
|
|
{
|
|
|
|
archiveArtifacts 'PythonAPI/carla/dist/*.egg'
|
2021-07-21 00:20:03 +08:00
|
|
|
archiveArtifacts 'PythonAPI/carla/dist/*.whl'
|
2020-03-19 21:38:04 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
stage('windows retrieve content')
|
|
|
|
{
|
|
|
|
steps
|
|
|
|
{
|
|
|
|
bat """
|
|
|
|
call ../setEnv64.bat
|
|
|
|
call Update.bat
|
|
|
|
"""
|
|
|
|
}
|
|
|
|
}
|
|
|
|
stage('windows package')
|
|
|
|
{
|
|
|
|
steps
|
|
|
|
{
|
|
|
|
bat """
|
|
|
|
call ../setEnv64.bat
|
2021-03-01 23:56:31 +08:00
|
|
|
make package ARGS="--chrono"
|
2020-03-19 21:38:04 +08:00
|
|
|
"""
|
2021-03-01 18:34:22 +08:00
|
|
|
bat """
|
|
|
|
call ../setEnv64.bat
|
2022-11-29 21:46:21 +08:00
|
|
|
make package ARGS="--packages=AdditionalMaps,Town06_Opt,Town07_Opt,Town11,Town12 --target-archive=AdditionalMaps --clean-intermediate"
|
2021-03-01 18:34:22 +08:00
|
|
|
"""
|
2020-03-19 21:38:04 +08:00
|
|
|
}
|
|
|
|
post {
|
|
|
|
always {
|
|
|
|
archiveArtifacts 'Build/UE4Carla/*.zip'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
stage('windows deploy')
|
|
|
|
{
|
2020-09-23 18:00:19 +08:00
|
|
|
when { anyOf { branch "master"; branch "dev"; buildingTag() } }
|
2020-03-19 21:38:04 +08:00
|
|
|
steps {
|
|
|
|
bat """
|
|
|
|
call ../setEnv64.bat
|
2020-03-20 01:58:09 +08:00
|
|
|
git checkout .
|
2020-03-19 21:38:04 +08:00
|
|
|
make deploy ARGS="--replace-latest"
|
|
|
|
"""
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-08-25 18:58:12 +08:00
|
|
|
post
|
2020-03-19 21:38:04 +08:00
|
|
|
{
|
2020-08-25 18:58:12 +08:00
|
|
|
always
|
|
|
|
{
|
|
|
|
deleteDir()
|
2020-03-21 01:13:08 +08:00
|
|
|
|
|
|
|
node('master')
|
|
|
|
{
|
|
|
|
script
|
|
|
|
{
|
|
|
|
JOB_ID = "${env.BUILD_TAG}"
|
2021-02-10 01:42:13 +08:00
|
|
|
jenkinsLib = load("/home/jenkins/jenkins_426.groovy")
|
2020-08-25 18:58:12 +08:00
|
|
|
|
2020-03-21 01:13:08 +08:00
|
|
|
jenkinsLib.DeleteWindowsBuildNode(JOB_ID)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-03-19 21:38:04 +08:00
|
|
|
}
|
|
|
|
}
|
2019-03-08 21:41:23 +08:00
|
|
|
}
|
|
|
|
}
|
2020-03-05 20:16:18 +08:00
|
|
|
}
|
2018-05-07 23:33:43 +08:00
|
|
|
}
|