Files
adventofcode/.travis.yml
Bert Peters ab91276fca Replace std::filesystem with boost::filesystem.
Somehow, travis still doesn't support the right one.
2019-09-12 15:00:54 +02:00

21 lines
332 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
- libboost-test-dev