Skip to content

Commit b7c35cd

Browse files
committed
fix(linux): missing uuid
1 parent c9fa42b commit b7c35cd

File tree

2 files changed

+13
-2
lines changed

2 files changed

+13
-2
lines changed

.github/workflows/main.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -219,6 +219,10 @@ jobs:
219219
mkdir -p network/curl/${{ matrix.name }}
220220
mv $folder/lib/.libs/libcurl.a network/curl/${{ matrix.name }}/lib${{matrix.arch}}.a
221221
222+
- name: linux install uuid-dev
223+
if: matrix.name == 'linux'
224+
run: sudo apt-get install -y uuid-dev
225+
222226
- name: build sqlite-sync
223227
run: make ${{ matrix.make && matrix.make || ''}}
224228

README.md

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,21 @@ To use SQLiteSync, you need SQLite version 3.x or later.
1616

1717
### Build from Source
1818

19-
1. Clone the repository:
19+
1. Install dependencies:
20+
21+
```bash
22+
#linux
23+
sudo apt-get install -y uuid-dev
24+
```
25+
26+
2. Clone the repository:
2027

2128
```bash
2229
git clone https://github.com/sqliteai/sqlite-sync.git
2330
cd sqlitesync
2431
```
2532

26-
2. Build the extension:
33+
3. Build the extension:
2734

2835
```bash
2936
make

0 commit comments

Comments
 (0)