Skip to content

Commit

Permalink
fix: sqlite libraries for GH actions
Browse files Browse the repository at this point in the history
  • Loading branch information
Nirajn2311 committed Dec 23, 2024
1 parent 076f40f commit aff3f9c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/flutter-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,9 @@ jobs:
- name: Checkout files
uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4

- name: Install SQLite libraries
run: sudo apt-get -y install libsqlite3-0 libsqlite3-dev

- name: Enable KVM
run: |
echo 'KERNEL=="kvm", GROUP="kvm", MODE="0666", OPTIONS+="static_node=kvm"' | sudo tee /etc/udev/rules.d/99-kvm4all.rules
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/flutter-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,9 @@ jobs:
- name: Checkout files
uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4

- name: Install SQLite libraries
run: sudo apt-get -y install libsqlite3-0 libsqlite3-dev

- name: Enable KVM
run: |
echo 'KERNEL=="kvm", GROUP="kvm", MODE="0666", OPTIONS+="static_node=kvm"' | sudo tee /etc/udev/rules.d/99-kvm4all.rules
Expand Down

0 comments on commit aff3f9c

Please sign in to comment.