Skip to content
Snippets Groups Projects

Lookup CI setup scripts in a argument provided path

Merged Prada Sarasola, Miguel requested to merge configurable-ci-setup-lookup-path into master
3 files
+ 7
3
Compare changes
  • Side-by-side
  • Inline
Files
3
#!/bin/bash
find -L $CATKIN_WORKSPACE -name ci_entry_script.bash -exec bash -c 'echo Running entry script from $(basename $(dirname {})) ; {} ' \;
echo Looking up and executing user entry scripts in: $1
find -L $1 -name ci_entry_script.bash -exec bash -c 'echo Running entry script from $(basename $(dirname {})) ; {} ' \;
echo Finalized running the user entry scripts
Loading