Skip to content

Commit aff3f9c

Browse files
committed
fix: sqlite libraries for GH actions
1 parent 076f40f commit aff3f9c

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

.github/workflows/flutter-ci.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,9 @@ jobs:
3333
- name: Checkout files
3434
uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4
3535

36+
- name: Install SQLite libraries
37+
run: sudo apt-get -y install libsqlite3-0 libsqlite3-dev
38+
3639
- name: Enable KVM
3740
run: |
3841
echo 'KERNEL=="kvm", GROUP="kvm", MODE="0666", OPTIONS+="static_node=kvm"' | sudo tee /etc/udev/rules.d/99-kvm4all.rules

.github/workflows/flutter-deploy.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,9 @@ jobs:
2828
- name: Checkout files
2929
uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4
3030

31+
- name: Install SQLite libraries
32+
run: sudo apt-get -y install libsqlite3-0 libsqlite3-dev
33+
3134
- name: Enable KVM
3235
run: |
3336
echo 'KERNEL=="kvm", GROUP="kvm", MODE="0666", OPTIONS+="static_node=kvm"' | sudo tee /etc/udev/rules.d/99-kvm4all.rules

0 commit comments

Comments
 (0)