mirror of
https://github.com/fmtlib/fmt.git
synced 2024-11-02 02:29:08 +00:00
21 lines
317 B
YAML
21 lines
317 B
YAML
language: cpp
|
|
|
|
os:
|
|
- linux
|
|
- osx
|
|
|
|
before_install:
|
|
- git submodule update --init
|
|
|
|
env:
|
|
- BUILD_TYPE=Debug
|
|
- BUILD_TYPE=Release
|
|
|
|
script:
|
|
- cmake -DCMAKE_BUILD_TYPE=$BUILD_TYPE -DFMT_EXTRA_TESTS=ON .
|
|
- make -j4
|
|
- CTEST_OUTPUT_ON_FAILURE=1 make test
|
|
|
|
after_failure:
|
|
- cat Testing/Temporary/LastTest.log
|