-
Notifications
You must be signed in to change notification settings - Fork 4
/
.travis.yml
57 lines (55 loc) · 1.35 KB
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
matrix:
include:
- language: python
dist: xenial
sudo: false
# Blacklist
branches:
only:
- master
python:
- "3.6"
addons:
apt:
packages:
- libgs-dev
before_install:
- pip install -U pip jinja2 Pygments
script:
- curl http://doxygen.nl/files/doxygen-1.8.15.linux.bin.tar.gz --output doxygen.tar.gz
- tar xfv doxygen.tar.gz
- PATH=$PATH:doxygen-1.8.15/bin
- export PATH
- git clone https://github.com/mosra/m.css.git
- python m.css/documentation/doxygen.py --debug Doxyfile-mcss
- cp images html -R
deploy:
provider: pages
skip_cleanup: true
local_dir: html
github_token: $GH_REPO_TOKEN
on:
branch: master
- language: cpp
dist: trusty
addons:
apt:
update: true
sources:
- sourceline: 'ppa:mhier/libboost-latest'
- ubuntu-toolchain-r-test
packages:
- gcc-7
- g++-7
- libxrandr-dev
- libxinerama-dev
- libxcursor-dev
- libxi-dev
- boost1.70
script:
- export CC=gcc-7
- export CXX=g++-7
- mkdir build
- cd build
- cmake ..
- make