forked from tModLoader/tModLoader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
44 lines (36 loc) · 909 Bytes
/
.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
# This will not run on Travis' 'new' container-based infrastructure
sudo: required
language: csharp
notifications:
email: false
# Blacklist
branches:
only:
- master
# Environment variables
env:
global:
- GH_REPO_NAME: tModLoader
- DOXYFILE: $TRAVIS_BUILD_DIR/solutions/documentation/Doxyfile
- GH_REPO_REF: github.com/tModLoader/tModLoader.git
# Install dependencies
addons:
apt:
packages:
- doxygen
- doxygen-doc
- graphviz
#before_install:
# - sudo apt-add-repository -y ppa:mikepurvis/docs
# - sudo apt-get update
# - sudo apt-get install doxygen
# Build your code e.g. by calling make
script:
- pwd
- doxygen -v
- ls
# Generate and deploy documentation
after_success:
- cd $TRAVIS_BUILD_DIR
- chmod +x solutions/documentation/generateAndPublishDocumentation.sh
- ./solutions/documentation/generateAndPublishDocumentation.sh