Skip to content

Commit e245b84

Browse files
feat: install sqlite for flutter (#378)
* feat: install sqlite for flutter * chore: add libsqlite to known words list
1 parent 4af352e commit e245b84

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

Diff for: .config/dictionaries/project.dic

+1
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,7 @@ ldflags
6060
libasound
6161
libatk
6262
libatspi
63+
libsqlite
6364
libdrm
6465
libgbm
6566
libgcc

Diff for: earthly/flutter/Earthfile

+4-1
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ flutter-base:
4242
ENV DEBIAN_FRONTEND=noninteractive
4343

4444
# Update and install as same command so if either fails, the whole step fails and is not cached.
45+
# sqlite3 and libsqlite3-dev are required for running db tests in CI
4546
RUN apt-get update --fix-missing && \
4647
apt-get install -y \
4748
apt-utils \
@@ -56,7 +57,9 @@ flutter-base:
5657
lcov \
5758
tar \
5859
wget \
59-
xz-utils
60+
xz-utils \
61+
sqlite3 \
62+
libsqlite3-dev
6063

6164
DO +INSTALL_FLUTTER
6265

0 commit comments

Comments
 (0)