You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

ci_build.sh 150B

7 years ago
123456789101112131415
  1. #!/bin/bash
  2. set -ex
  3. if [[ "${CXX}" == clang* ]]
  4. then
  5. export CXXFLAGS="-stdlib=libc++"
  6. fi
  7. mkdir build && cd build
  8. cmake ..
  9. make
  10. make unittest