forked from situx/CuneiPainter
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.travis.yml
More file actions
45 lines (38 loc) · 761 Bytes
/
Copy path.travis.yml
File metadata and controls
45 lines (38 loc) · 761 Bytes
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
language: android
android:
components:
- platform-tools
- extra-android-m2repository
- build-tools-27.0.3
- android-28
- sys-img-armeabi-v7a-android-28
script:
- ./gradlew assemble lint
# This will run on Travis' 'new' container-based infrastructure
sudo: false
branches:
only:
- master
addons:
apt:
packages:
- doxygen
- ttf-freefont
- graphviz
script:
- cd docs
- doxygen Doxyfile
- mkdir html/docs
- mkdir html/stylesheets
- mv html/*.* html/docs
- cp _config.yml html/
- cp index.html html/
- cp stylesheet.css html/stylesheets/
deploy:
provider: pages
skip_cleanup: true
local_dir: docs/html
keep-history: true
github_token: $GH_REPO_TOKEN
on:
branch: master