Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions .ci_local_test/Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,16 @@ pipeline {
}
}
}
stage('Klocwork Code check') {
steps {
script {
echo 'klocwork code check'
sh script: "sudo docker cp $WORKSPACE klocwork_test:/home/intel/catkin_ws/src/ros2_openvino_toolkit", returnStatus: true
sh script: "sudo docker exec -i klocwork_test bash -c 'source ~/.bashrc && cd catkin_ws && ./klocwork_scan.sh'", returnStatus: true
}

}
}
stage('The Ros2_openvino container run') {
steps {
script {
Expand Down