fix expression

This commit is contained in:
Ruben Abad 2023-12-18 14:39:39 +01:00
parent 718875708c
commit ae2e4118f8
1 changed files with 2 additions and 2 deletions

View File

@ -162,7 +162,7 @@ pipeline
stage('ubuntu deploy dev')
{
when { expression { true } or branch "dev"; }
when { true or branch "dev"; }
steps
{
sh 'git checkout .'
@ -180,7 +180,7 @@ pipeline
}
stage('ubuntu Doxygen')
{
when { expression { true } or anyOf { branch "master"; branch "dev"; buildingTag() } }
when { true or anyOf { branch "master"; branch "dev"; buildingTag() } }
steps
{
sh 'rm -rf ~/carla-simulator.github.io/Doxygen'