14 lines
301 B
YAML
14 lines
301 B
YAML
|
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
|