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

Unified Diff: .travis.yml

Issue 2371113004: Use .packages instead of pubspec.yaml (Closed)
Patch Set: Mark clang as passing Created 4 years, 3 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
« no previous file with comments | « no previous file | pkg/dev_compiler/lib/src/analyzer/context.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: .travis.yml
diff --git a/.travis.yml b/.travis.yml
index 1a877df6da3549b7530b3c2def2dbefb77f2aef5..b8f5a003bb014510d72dfa68bbf6c883c1cbffb9 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -35,10 +35,12 @@ before_install:
- export PATH=`pwd`/depot_tools:"$PATH"
# Checkout everything if we're building the SDK
- - 'gclient config --spec=''solutions = [ { "name": ".", "url": "git@github.com:dart-lang/sdk.git", "deps_file": "DEPS", "managed": False, "custom_vars": { "dart_root": "." } } ]'''
- - if [ "$CXX" ]; then gclient sync ; fi
+ - cd ..
+ - 'gclient config --spec=''solutions = [ { "name": "sdk", "url": "git@github.com:dart-lang/sdk.git", "deps_file": "DEPS", "managed": False } ]'''
+ - gclient sync
+ - cd sdk
- # If a C++ compiler is set, built the SDK - else keep the preinstalled.
+ # If a C++ compiler is set, build the SDK - else use the preinstalled SDK instead.
- if [ "$CXX" ]; then ./tools/build.py -m release create_sdk ; fi
- if [ "$CXX" ]; then export PATH=`pwd`/out/ReleaseX64/dart-sdk/bin:"$PATH" ; fi
- dart --version
@@ -49,6 +51,8 @@ before_install:
- export CHROME_CANARY_BIN=`./tool/get_chrome_canary.sh`
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
+install:
+ # Empty to suppress default pub get behavior
before_script:
# Node modules used by DDC
- nvm install 5.5.0
@@ -69,7 +73,6 @@ matrix:
allow_failures:
- env: TEST=node
- env: ANALYZER=master DDC_BROWSERS=Firefox
- - env: ANALYZER=master CXX=clang++
- env: ANALYZER=master CXX=g++
notifications:
email:
« no previous file with comments | « no previous file | pkg/dev_compiler/lib/src/analyzer/context.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698