sources: *sources | sources: *sources | ||||
script: | script: | ||||
- if [[ "$CXX" == clang* ]]; then export CXXFLAGS="-stdlib=libc++"; fi | |||||
- mkdir build && cd build | |||||
- cmake .. | |||||
- make | |||||
- make unittest | |||||
- script/ci_build.sh | |||||
#!/bin/bash | |||||
if [[ "$CXX" == clang* ]]; then | |||||
export CXXFLAGS="-stdlib=libc++" | |||||
fi | |||||
mkdir build && cd build | |||||
cmake .. | |||||
make | |||||
make unittest | |||||