File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1010 runs-on : ubuntu-20.04
1111 steps :
1212 - uses : actions/checkout@v3
13+ - run : ./scripts/vendor.sh
1314 - run : make loadable
1415 - run : pip install pytest numpy; make test-loadable
1516 - uses : actions/upload-artifact@v3
2021 runs-on : macos-11
2122 steps :
2223 - uses : actions/checkout@v3
24+ - run : ./scripts/vendor.sh
2325 - run : make loadable
2426 - 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
2527 - uses : actions/upload-artifact@v3
3032 runs-on : macos-11
3133 steps :
3234 - uses : actions/checkout@v3
35+ - run : ./scripts/vendor.sh
3336 - run : make loadable CFLAGS="-target arm64-apple-macos11"
3437 - uses : actions/upload-artifact@v3
3538 with :
3942 runs-on : windows-2019
4043 steps :
4144 - uses : actions/checkout@v3
45+ - run : ./scripts/vendor.sh
4246 - run : make loadable
4347 - run : pip install pytest numpy; make test-loadable
4448 - 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 1212#include "sqlite3ext.h"
1313SQLITE_EXTENSION_INIT1
1414
15+ typedef u_int8_t uint8_t ;
16+ typedef u_int16_t uint16_t ;
17+ typedef u_int64_t uint64_t ;
18+
1519#ifndef UNUSED_PARAMETER
1620#define UNUSED_PARAMETER (X ) (void)(X)
1721#endif
You can’t perform that action at this time.
0 commit comments