lzw-assignment/.circleci/config.yml

9 lines
283 B
YAML
Raw Normal View History

2018-05-23 15:36:57 +00:00
version: 2
jobs:
2018-05-23 15:40:10 +00:00
build:
docker: # See https://docs.docker.com/get-started/#docker-concepts if you are new to Docker.
2018-05-23 15:50:40 +00:00
- image: 13coders/cpp17-base
2018-05-23 15:40:10 +00:00
steps:
- checkout
2018-05-23 15:54:43 +00:00
- run: CC=clang && CXX=clang++ && cd build && cmake -DCMAKE_BUILD_TYPE=Debug .. && make -j