presubmit.sh 167 B

12345678910111213
  1. #!/bin/bash
  2. set -e
  3. echo "Run native build:"
  4. make -f .ci/Makefile -j12
  5. echo "Run style check:"
  6. ./.ci/.gitlab-ci-checkcommit.sh
  7. echo -e "\n\e[32m --- SUCCESS ---"