Skip to content

Commit

Permalink
Update SQLite3 installation in actions (#2)
Browse files Browse the repository at this point in the history
Split download and install into separate steps
  • Loading branch information
jkanche authored May 22, 2024
1 parent 78a4ee4 commit 8d141f0
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/pypi-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,13 @@ jobs:
# run: sudo apt install -y sqlite3

# build SQLite from source, because I need 3.35<=
- run: |
- name: Download SQLite3
run: |
wget https://www.sqlite.org/2024/sqlite-autoconf-3450300.tar.gz
tar -xvf sqlite-autoconf-3450300.tar.gz
- run: |
- name: Install SQLite3
run: |
./configure
make
sudo make install
Expand Down

0 comments on commit 8d141f0

Please sign in to comment.