-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.travis.yml
More file actions
32 lines (31 loc) · 776 Bytes
/
.travis.yml
File metadata and controls
32 lines (31 loc) · 776 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
28
29
30
31
32
sudo: false
language: ruby
cache: bundler
install:
# If we're running for a pull request, check out the revision of sass-spec
# referenced by that pull request.
- |
if [ ! -z "$TRAVIS_PULL_REQUEST" -a "$TRAVIS_PULL_REQUEST" != false ]; then
mkdir sass-spec
git -C sass-spec init
git -C sass-spec pull --depth=1 git://github.com/sass/sass-spec \
$(extra/sass-spec-ref.sh)
bundle config local.sass-spec "$(pwd)/sass-spec"
fi
- bundle install --jobs=3 --retry=3 --path=${BUNDLE_PATH:-vendor/bundle}
- bundle update sass-spec
rvm:
- 2.0.0
- 2.1.10
- 2.2.7
- 2.3.4
- 2.4.1
gemfile: Gemfile
branches:
only:
- master
- stable
- stable_3_2
- next
notifications:
irc: {channels: "irc.freenode.org#sass"}