9 lines
283 B
YAML
9 lines
283 B
YAML
version: 2
|
|
jobs:
|
|
build:
|
|
docker: # See https://docs.docker.com/get-started/#docker-concepts if you are new to Docker.
|
|
- image: 13coders/cpp17-base
|
|
steps:
|
|
- checkout
|
|
- run: CC=clang && CXX=clang++ && cd build && cmake -DCMAKE_BUILD_TYPE=Debug .. && make -j
|