forked from mavlink/qgc-user-guide
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
28 lines (21 loc) · 773 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
language: ruby
rvm:
- 2.2.2
addons:
apt:
packages:
- libcurl4-openssl-dev # required to avoid SSL errors
install:
- npm install gitbook-cli -g
- gitbook install
- gitbook build
- gem install html-proofer
script:
- htmlproofer ./_book --empty-alt-ignore true --check-external-hash true --http-status-ignore 503 --url-ignore 'https://img.shields.io/badge/discuss-dev-ff69b4.svg,https://img.shields.io/github/release/mavlink/QGroundControl.svg,https://img.shields.io/badge/discuss-ardupilot-ff69b4.svg,https://img.shields.io/badge/discuss-px4-ff69b4.svg'
env:
global:
- NOKOGIRI_USE_SYSTEM_LIBRARIES=true # speeds up installation of html-proofer
## Allow links to fail any time and be displayed as warnings.
matrix:
allow_failures:
- rvm: 2.2.2