Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(590)

Unified Diff: third_party/pkg/route_hierarchical/test/scripts/travis-setup.sh

Issue 1086713003: Remove everything but markdown from third_party (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 5 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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

Powered by Google App Engine
This is Rietveld 408576698