Fixing Doxygen and clean steps

This commit is contained in:
bernat 2020-03-13 09:24:46 +01:00
parent bcfc906368
commit 2f5409d4b6
1 changed files with 9 additions and 15 deletions

24
Jenkinsfile vendored
View File

@ -104,6 +104,7 @@ pipeline
{
archiveArtifacts 'CarlaUE4.log'
junit 'Build/test-results/smoke-tests-*.xml'
deleteDir()
}
}
}
@ -124,6 +125,7 @@ pipeline
sh 'rm -rf ~/carla-simulator.github.io/Doxygen'
sh '''
cd ~/carla-simulator.github.io
git fetch
git checkout -B master origin/master
'''
sh 'make docs'
@ -136,6 +138,13 @@ pipeline
'''
}
}
stage('Cleanning')
{
steps
{
deleteDir()
}
}
}
}
// stage('windows')
@ -230,19 +239,4 @@ pipeline
}
}
}
post
{
always
{
node('build')
{
deleteDir()
}
node('gpu')
{
deleteDir()
}
}
}
}