mirror of
https://github.com/yuzu-emu/FasTC
synced 2024-11-25 22:57:46 +00:00
12 lines
154 B
YAML
12 lines
154 B
YAML
|
language: cpp
|
||
|
|
||
|
compiler:
|
||
|
- gcc
|
||
|
- clang
|
||
|
|
||
|
before_script:
|
||
|
- mkdir build
|
||
|
- cd build
|
||
|
- cmake .. -DCMAKE_BUILD_TYPE=Release
|
||
|
|
||
|
script: make && make test
|