forked from coala/projects
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
47 lines (40 loc) · 1 KB
/
.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
45
46
47
services: docker
language: ruby
rvm:
- 2.5.1
cache: bundler
.disable_global: &disable_global
rvm: false
cache: false
before_install: false
install: false
script: false
env:
jobs:
include:
- stage: moban
<<: *disable_global
language: python
python: 3.6
cache: pip
install: pip install moban
script: .ci/check_moban.sh
before_install:
# Speeds installation of html-proofer
- export NOKOGIRI_USE_SYSTEM_LIBRARIES=true
# Assume bundler is being used, therefore
# the `install` step will run `bundle install` by default.
script:
- .ci/build.sh
# https://github.com/coala/coala-bears/issues/1037
- >
if [[ "$TRAVIS_PULL_REQUEST" != "false" ]]; then
sed -i.bak '/bears = GitCommitBear/d' .coafile
fi
- docker run -v=$(pwd):/app --workdir=/app coala/base coala --ci
notifications:
email: false
webhooks: https://www.travisbuddy.com/
on_success: never
# Route your build to the container-based infrastructure for a faster build
sudo: false