blob: 2588646d44ebf566461102a6fbc2a7e2e746c1d3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
version: 2
jobs:
build:
docker:
- image: nemtrif/utf8cpp:3.1.3
steps:
- checkout
- run: git submodule update --init --recursive --remote
- run: mkdir build
- run: cd build && cmake ..
- run: cd build && cmake --build .
- run: cd build && ctest -VV
|