lzw-assignment/.circleci/config.yml

10 lines
363 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:58:21 +00:00
- image: purplekarrot/gcc-8
2018-05-23 15:40:10 +00:00
steps:
- checkout
2018-05-25 11:39:55 +00:00
- run: apt-get update && apt-get install -y doxygen doxygen-docs doxygen-latex doxygen-gui graphviz
- run: cd build && cmake -DCMAKE_BUILD_TYPE=Release .. && make -j