Skip to content

Commit

Permalink
Add P07 - sonic rpc tests call to release testing master (#216)
Browse files Browse the repository at this point in the history
  • Loading branch information
Lubomir-Jahn authored Nov 7, 2024
1 parent 70be55f commit e3d00b6
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions release_testing/master.jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -204,6 +204,11 @@ pipeline {
defaultValue: true,
description: 'If checked, P06 stage will be executed'
)
booleanParam(
name: 'RunP07',
defaultValue: true,
description: 'If checked, P07 stage will be executed'
)
}

stages {
Expand Down Expand Up @@ -749,6 +754,19 @@ pipeline {
]
}
}

stage('P07 Sonic RPC tests') {
when {
expression {
return params.RunP07;
}
}
steps {
build job: '/Sonic/RPC-tests', parameters: [
string(name: 'SonicVersion', value: "${SONIC_VERSION}")
]
}
}
}
}
}
Expand Down

0 comments on commit e3d00b6

Please sign in to comment.