Files
adventofcode/.travis.yml
Bert Peters 4e5b3b5a15 Implement generic testing for 2019.
This method reads a specific directory and applies all inputs there to
their proper implementation.
2019-09-12 14:51:17 +02:00

20 lines
301 B
YAML

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