coz/.travis.yml
2019-08-18 16:39:52 -05:00

30 lines
505 B
YAML

# Build on Ubuntu 18.04
dist: bionic
# Specify language
language: cpp
# Build with both clang and gcc
compiler:
- clang
- g++
# Build all branches except gh-pages
branches:
except:
- gh-pages
# Install dependencies
before_install:
- sudo apt-get update
- sudo apt-get install -y --install-recommends docutils-common libelfin-dev nodejs npm
# Make and install
install:
- make
- sudo make install
# Run the make check target (add tests later)
script:
- make check USE_SYSTEM_COZ=1