Skip to content

Commit 25b9b8c

Browse files
committed
ci: instal sqlite3 on Linux
Seems ubuntu-latest image changed and sqlite3 is not installed by default.
1 parent 0ce1b5b commit 25b9b8c

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/release_build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ jobs:
5757
cache: true
5858
- run: |
5959
sudo apt update -y
60-
sudo apt install -y ninja-build libgtk-3-dev
60+
sudo apt install -y ninja-build libgtk-3-dev sqlite3
6161
- name: Precompile
6262
run: |
6363
git submodule update --init --recursive --force

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
cache: true
2727
- run: |
2828
sudo apt update -y
29-
sudo apt install -y ninja-build libgtk-3-dev
29+
sudo apt install -y ninja-build libgtk-3-dev sqlite3
3030
- name: Precompile
3131
run: |
3232
git submodule update --init --recursive --force

.github/workflows/test_build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ jobs:
6060
cache: true
6161
- run: |
6262
sudo apt update -y
63-
sudo apt install -y ninja-build libgtk-3-dev
63+
sudo apt install -y ninja-build libgtk-3-dev sqlite3
6464
- name: Precompile
6565
run: |
6666
git submodule update --init --recursive --force

0 commit comments

Comments
 (0)