Fixing Doxygen and clean steps
This commit is contained in:
parent
bcfc906368
commit
2f5409d4b6
|
@ -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()
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue