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

Unified Diff: install-build-deps.sh

Issue 1896743002: Add travis-ci support (Closed) Base URL: git@github.com:chromium/dom-distiller.git@master
Patch Set: run in sandbox Created 4 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
« no previous file with comments | « README.md ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: install-build-deps.sh
diff --git a/install-build-deps.sh b/install-build-deps.sh
index 0f0613737f02f48549e84f839e8bbf6487e7424b..cc838ee38073456d7e1d3780cede86fd87cfa536 100755
--- a/install-build-deps.sh
+++ b/install-build-deps.sh
@@ -5,7 +5,7 @@
# Installs required build dependencies (to buildtools/ and the local system).
-CHROME_MIN_VERSION=32
+CHROME_MIN_VERSION=49
(
set -e
@@ -15,7 +15,7 @@ CHROME_MIN_VERSION=32
fi
apt-get update
- apt-get install \
+ apt-get install -y \
ant \
openjdk-7-jdk \
protobuf-compiler \
@@ -28,7 +28,7 @@ CHROME_MIN_VERSION=32
if ! command -v google-chrome >/dev/null 2>&1; then
wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | apt-key add -
- echo "deb http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google-chrome.list
+ echo "deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google-chrome.list
apt-get update
apt-get install google-chrome-stable
fi
« no previous file with comments | « README.md ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698