forked from OpenRA/OpenRAWeb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
33 lines (26 loc) · 847 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
# Travis-CI Build for the OpenRA website
# see travis-ci.org for details
language: ruby
env:
global:
secure: "DsI/JRrG13WTFvi6kp77Fr2wxr1dXILC9pJvdTCeKvowmkq3jDUYm5RaPjVuJ8wKuGZCGNM+dF2L+0ixw15sBU2u1g1nru586qz3thMQwPlX/c8ArGKhy/rJMvskwdVmnw9q0/Zl28zIpGhVhLS4BMu64CsckAAXe4a7r5KKl88="
install:
- gem install builder kramdown octokit
- gem install nanoc --version 3.6.9
script:
- nanoc compile
after_success:
- test $TRAVIS_PULL_REQUEST == "false" && test $TRAVIS_BRANCH == "master" && ./update-github-pages.sh
# Only watch the production branch.
branches:
only:
- master
# Notify developers when build passed/failed.
notifications:
irc:
template:
- "%{repository}#%{build_number} %{commit} %{author}: %{message} %{build_url}"
channels:
- "irc.freenode.net#openra"
use_notice: true
skip_join: true