ci.sh 115 B

1234567891011
  1. #!/bin/bash
  2. set -ex
  3. ./fmt.sh -- --check
  4. if [ -z "$TARGET" ]
  5. then
  6. make all
  7. make test
  8. else
  9. make libs
  10. fi