| Index: third_party/pkg/route_hierarchical/test/scripts/travis-setup.sh
|
| diff --git a/third_party/pkg/route_hierarchical/test/scripts/travis-setup.sh b/third_party/pkg/route_hierarchical/test/scripts/travis-setup.sh
|
| deleted file mode 100755
|
| index c695ec577730fad41025b5282b22a5b40a9368e9..0000000000000000000000000000000000000000
|
| --- a/third_party/pkg/route_hierarchical/test/scripts/travis-setup.sh
|
| +++ /dev/null
|
| @@ -1,36 +0,0 @@
|
| -#!/bin/bash
|
| -
|
| -set -e
|
| -
|
| -case $( uname -s ) in
|
| - Linux)
|
| - DART_SDK_ZIP=dartsdk-linux-x64-release.zip
|
| - DARTIUM_ZIP=dartium-linux-x64-release.zip
|
| - ;;
|
| - Darwin)
|
| - DART_SDK_ZIP=dartsdk-macos-x64-release.zip
|
| - DARTIUM_ZIP=dartium-macos-ia32-release.zip
|
| - ;;
|
| -esac
|
| -
|
| -CHANNEL=`echo $JOB | cut -f 2 -d -`
|
| -echo Fetch Dart channel: $CHANNEL
|
| -
|
| -echo http://storage.googleapis.com/dart-archive/channels/$CHANNEL/release/latest/sdk/$DART_SDK_ZIP
|
| -curl http://storage.googleapis.com/dart-archive/channels/$CHANNEL/release/latest/sdk/$DART_SDK_ZIP > $DART_SDK_ZIP
|
| -echo Fetched new dart version $(unzip -p $DART_SDK_ZIP dart-sdk/version)
|
| -rm -rf dart-sdk
|
| -unzip $DART_SDK_ZIP > /dev/null
|
| -rm $DART_SDK_ZIP
|
| -
|
| -echo http://storage.googleapis.com/dart-archive/channels/$CHANNEL/raw/latest/dartium/$DARTIUM_ZIP
|
| -curl http://storage.googleapis.com/dart-archive/channels/$CHANNEL/raw/latest/dartium/$DARTIUM_ZIP > $DARTIUM_ZIP
|
| -unzip $DARTIUM_ZIP > /dev/null
|
| -rm -rf dartium
|
| -rm $DARTIUM_ZIP
|
| -mv dartium-* dartium
|
| -
|
| -echo =============================================================================
|
| -. ./test/scripts/env.sh
|
| -$DART --version
|
| -$PUB install
|
|
|