Skip to content

Commit

Permalink
Install sqlite3 on Linux
Browse files Browse the repository at this point in the history
  • Loading branch information
lnicola committed Oct 16, 2024
1 parent 950cf55 commit 60b67c3
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -156,6 +156,11 @@ jobs:
choco install sqlite
echo "C:\ProgramData\chocolatey\lib\SQLite\tools" >> $GITHUB_PATH
sqlite3 --version
- name: Install Sqlite (Linux)
if: runner.os == 'Linux'
run: |
sudo apt-get update
sudo apt-get install -y sqlite3
# use the minimal driver set for clippy as the other
# drivers do not change the rust code
# enable `driver_sqlite` to force statically linking libsqlite3 for proj
Expand Down

0 comments on commit 60b67c3

Please sign in to comment.