kcp/.travis.yml

11 lines
138 B
YAML
Raw Normal View History

2016-07-20 16:17:03 +08:00
language: cpp
compiler:
- gcc
- clang
script:
2016-07-20 16:26:05 +08:00
- $CC -O3 test.cpp -o test -lstdc++
2017-02-22 10:28:01 +08:00
- ./test --ci && echo "OK"
2016-07-20 16:17:03 +08:00
2016-07-20 16:33:53 +08:00