Skip to content

Commit

Permalink
Manually install sqlite3 dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
flxkrmr authored Feb 9, 2024
1 parent 97091ea commit 65293d7
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,9 @@ jobs:
target: arm-unknown-linux-gnueabihf

- name: Install dependencies for cross-compilation
run: sudo apt-get install -y gcc-arm-linux-gnueabihf libc6-dev-armhf-cross libsqlite3-dev:armhf
run: sudo apt-get install -y gcc-arm-linux-gnueabihf
- name: Download SQLite3 development package for ARM
run: wget http://ftp.us.debian.org/debian/pool/main/s/sqlite3/libsqlite3-dev_3.36.0-3_armhf.deb && sudo dpkg -i libsqlite3-dev_3.36.0-3_armhf.deb

- name: Build binary for Raspberry Pi
run: cargo build --release --target=arm-unknown-linux-gnueabihf
Expand Down

0 comments on commit 65293d7

Please sign in to comment.