mirror of
https://github.com/yuzu-emu/FasTC.git
synced 2025-01-08 05:55:35 +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
|