summary refs log tree commit diff stats
path: root/ci/funs.sh
blob: de56ef152918da9661c0e23b491eae0d63febbee (plain) (blame)
1
2
3
4
5
6
7
8
# utilities used in CI pipelines to avoid duplication.

echo_run () {
  # echo's a command before running it, which helps understanding logs
  echo ""
  echo "$@"
  "$@"
}