File tree Expand file tree Collapse file tree 2 files changed +13
-2
lines changed
Expand file tree Collapse file tree 2 files changed +13
-2
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments