mirror of
https://github.com/danog/dart-sass.git
synced 2024-12-03 10:08:01 +01:00
22 lines
477 B
YAML
22 lines
477 B
YAML
# Set the language to Ruby so that we can run sass-spec tests.
|
|
language: ruby
|
|
env:
|
|
- DART_VERSION=1.19.1 ANALYZE=false
|
|
- DART_VERSION=latest ANALYZE=true
|
|
|
|
rvm:
|
|
- 2.3.1
|
|
|
|
cache:
|
|
directories:
|
|
- $HOME/.pub-cache
|
|
|
|
# Install the Dart SDK.
|
|
install:
|
|
- curl -o dart.zip "https://storage.googleapis.com/dart-archive/channels/stable/release/$DART_VERSION/sdk/dartsdk-linux-x64-release.zip"
|
|
- unzip dart.zip
|
|
- export PATH="$PATH:`pwd`/dart-sdk/bin"
|
|
- pub get
|
|
|
|
script: ./tool/travis.sh
|