File tree Expand file tree Collapse file tree 3 files changed +16
-0
lines changed Expand file tree Collapse file tree 3 files changed +16
-0
lines changed Original file line number Diff line number Diff line change 10
10
runs-on : ubuntu-20.04
11
11
steps :
12
12
- uses : actions/checkout@v3
13
+ - run : ./scripts/vendor.sh
13
14
- run : make loadable
14
15
- run : pip install pytest numpy; make test-loadable
15
16
- uses : actions/upload-artifact@v3
20
21
runs-on : macos-11
21
22
steps :
22
23
- uses : actions/checkout@v3
24
+ - run : ./scripts/vendor.sh
23
25
- run : make loadable
24
26
- run : /usr/local/opt/python@3/libexec/bin/python -m pip install pytest numpy; make test-loadable python=/usr/local/opt/python@3/libexec/bin/python
25
27
- uses : actions/upload-artifact@v3
30
32
runs-on : macos-11
31
33
steps :
32
34
- uses : actions/checkout@v3
35
+ - run : ./scripts/vendor.sh
33
36
- run : make loadable CFLAGS="-target arm64-apple-macos11"
34
37
- uses : actions/upload-artifact@v3
35
38
with :
39
42
runs-on : windows-2019
40
43
steps :
41
44
- uses : actions/checkout@v3
45
+ - run : ./scripts/vendor.sh
42
46
- run : make loadable
43
47
- run : pip install pytest numpy; make test-loadable
44
48
- uses : actions/upload-artifact@v3
Original file line number Diff line number Diff line change
1
+ #! /bin/bash
2
+ mkdir -p vendor
3
+ curl -o sqlite-amalgamation.zip https://www.sqlite.org/2024/sqlite-amalgamation-3450300.zip
4
+ unzip -d
5
+ unzip sqlite-amalgamation.zip
6
+ mv sqlite-amalgamation-3450300/* vendor/
7
+ rmdir sqlite-amalgamation-3450300
8
+ rm sqlite-amalgamation.zip
Original file line number Diff line number Diff line change 12
12
#include "sqlite3ext.h"
13
13
SQLITE_EXTENSION_INIT1
14
14
15
+ typedef u_int8_t uint8_t ;
16
+ typedef u_int16_t uint16_t ;
17
+ typedef u_int64_t uint64_t ;
18
+
15
19
#ifndef UNUSED_PARAMETER
16
20
#define UNUSED_PARAMETER (X ) (void)(X)
17
21
#endif
You can’t perform that action at this time.
0 commit comments