mirror of
https://github.com/arun11299/cpp-subprocess.git
synced 2025-09-08 23:08:12 -04:00

* windows: add util functions * windows: add cmake files * windows: add travis.yml * windows: address compatibility - set cxx standard - conditionally exclude codecvt * windows: improve test coverage * windows: improve test coverage * windows: consolidate tests * windows: disable failing test * windows: modify read_atmost_n to use file object * windows: modify read_all to use file object * windows: update read_all test to use new api * windows: implement main subprocess logic * windows: add macro names * windows: setup comm channels * windows: compatibility fixes
11 lines
212 B
YAML
11 lines
212 B
YAML
language: cpp
|
|
|
|
compiler:
|
|
- clang
|
|
- gcc
|
|
|
|
script:
|
|
- mkdir -p build && cd build
|
|
- cmake -DCMAKE_BUILD_TYPE=Debug ..
|
|
- cmake --build . --config Debug -- -j $(nproc)
|
|
- ctest -j $(nproc) --output-on-failure |