Don't include Chrome and FF in CI builds

This commit is contained in:
Simon Binder 2020-07-23 15:45:06 +02:00
parent c955be7537
commit 3287098c86
No known key found for this signature in database
GPG Key ID: 7891917E4147B8C0
1 changed files with 2 additions and 1 deletions

View File

@ -10,7 +10,8 @@ ENV PATH="/usr/lib/dart/bin:${PATH}"
# Setup for Google Chrome
RUN echo 'deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main' | tee /etc/apt/sources.list.d/google-chrome.list
RUN apt-get update && apt-get install -y --no-install-recommends -q libsqlite3-dev google-chrome-stable firefox dart
#RUN apt-get update && apt-get install -y --no-install-recommends -q libsqlite3-dev google-chrome-stable firefox dart
RUN apt-get update && apt-get install -y --no-install-recommends -q dart
# We ocassionally have to change this file to manually trigger rebuilds in the CI. Particularly, after a new Dart SDK
# version is out. Prefer to use Dart 2.8 or above.