Files
adventofcode/.travis.yml

21 lines
327 B
YAML

language: cpp
dist: bionic
compiler:
- clang
- gcc
# Custom directory, for the correct year
before_script:
- cd 2019
# CMake build
script: cmake . && make && make test
addons:
apt:
packages:
- libboost-filesystem-dev
- libboost-program-options-dev
- libgtest-dev