startup.sh 267 B

123456789101112131415
  1. #!/bin/bash
  2. set -e -o pipefail
  3. CPP_STANDARD=20
  4. BRANCH=${1:-dev-mikemirzayanov}
  5. echo "Use branch ""$BRANCH"""
  6. git clone https://github.com/MikeMirzayanov/testlib.git
  7. cd testlib
  8. git checkout "$BRANCH"
  9. cd tests
  10. ./run.sh clang++ v0 "$CPP_STANDARD"
  11. cd /
  12. rm -rf testlib