forked from SeleniumHQ/seleniumhq.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.travis.yml
More file actions
27 lines (27 loc) · 718 Bytes
/
.travis.yml
File metadata and controls
27 lines (27 loc) · 718 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
---
install:
- curl -LO https://github.com/gohugoio/hugo/releases/download/v0.59.0/hugo_0.59.0_Linux-64bit.deb
- sudo dpkg -i hugo_0.59.0_Linux-64bit.deb
- sudo rm hugo_0.59.0_Linux-64bit.deb
branches:
only:
- master
- /.*/
# Testing if the site builds
script:
- cd docs_source_files && hugo && cd ..
- cd site_source_files && hugo && cd ..
deploy:
- provider: script
script: chmod +x $TRAVIS_BUILD_DIR/deploy.sh && $TRAVIS_BUILD_DIR/deploy.sh
on:
branch: master
notifications:
irc:
channels:
- "chat.freenode.net#selenium"
on_success: change
on_failure: always
template:
- "%{repository} (%{commit}): %{message}"
- "Build details: %{build_url}"