mirror of
https://github.com/arun11299/cpp-subprocess.git
synced 2025-09-08 14:54:13 -04:00
11 lines
234 B
YAML
11 lines
234 B
YAML
language: cpp
|
|
|
|
compiler:
|
|
- clang
|
|
- gcc
|
|
|
|
script:
|
|
- mkdir -p build && cd build
|
|
- cmake -DCMAKE_BUILD_TYPE=Debug -DSUBPROCESS_TESTS=ON ..
|
|
- cmake --build . --config Debug -- -j $(nproc)
|
|
- ctest -j $(nproc) --output-on-failure |