Skip to content
This repository was archived by the owner on Feb 22, 2018. It is now read-only.

Commit e2350ca

Browse files
committed
chore(travis): blacklist Dart SDK 1.7.0-dev.2.0
1.7.0-dev.2.0 fixed a bug in 1.7.0-dev.1.0 but it's causing other failures. So now we have both versions blacklisted and will be using 1.7.0-dev.0.1 for the dev channel tests.
1 parent 5b04b17 commit e2350ca

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

scripts/travis/install.sh

+4-2
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,10 @@ echo Fetch Dart channel: $CHANNEL
2323

2424
SVN_REVISION=latest
2525
# TODO(chirayu): Remove this once issue 20896 is fixed.
26-
if [[ "$AVAILABLE_DART_VERSION" == "1.7.0-dev.1.0" ]]; then
27-
SVN_REVISION=39661 # Use prior working version (1.7.0-dev.0.1)
26+
# Dart 1.7.0-dev.1.0 and 1.7.0-dev.2.0 are both broken so use version
27+
# 1.7.0-dev.0.1 instead.
28+
if [[ "$AVAILABLE_DART_VERSION" == "1.7.0-dev.2.0" ]]; then
29+
SVN_REVISION=39661 # Use version 1.7.0-dev.0.1
2830
fi
2931

3032
URL_PREFIX=https://storage.googleapis.com/dart-archive/channels/$CHANNEL/release/$SVN_REVISION

0 commit comments

Comments
 (0)