Compare commits

..

7 commits

Author SHA1 Message Date
breznak
a7b7bd80d6 build wheels for py310
trying to get wheels for python=3.10 on Ubuntu 20.04; Seems many folks online would need this. Please review and publish to PyPI when this builds, thank you!
2023-08-25 09:33:25 -04:00
Jack Robison
028570c565
run ci on 18.04 2022-06-14 16:21:04 -04:00
Jack Robison
2ea14aee63
use manylinux_2_24_x86_64 for now 2022-03-28 11:06:00 -04:00
Jack Robison
d66c066ff1
update tox, fix setup.py 2022-03-28 11:05:36 -04:00
Jack Robison
e6f00fd578 move submodule to lbryio fork, update zlib due to 1.2.11 becoming unavailable 2022-03-28 10:27:37 -04:00
Jack Robison
69252c0ed4 remove unused dockerfile 2022-03-28 10:27:37 -04:00
Jack Robison
de13abda59 update codeql 2022-03-28 10:27:37 -04:00
6 changed files with 8 additions and 8 deletions

View file

@ -6,10 +6,9 @@ on:
push:
branches:
- master
- github-actions
jobs:
manylinux:
runs-on: ubuntu-latest
runs-on: ubuntu-18.04
steps:
- uses: actions/checkout@v2
with:
@ -27,7 +26,7 @@ jobs:
src/rocksdb/libz.a
src/rocksdb/librocksdb.a
- name: Install requirements
run: sudo apt-get install build-essential binutils cmake python3-cffi python3.8-dev python3.9-dev
run: sudo apt-get install build-essential binutils cmake python3-cffi
- name: Make static library files
if: steps.build-cache.outputs.cache-hit != 'true'
run: make clean && make

2
.gitmodules vendored
View file

@ -1,3 +1,3 @@
[submodule "src/rocksdb"]
path = src/rocksdb
url = https://github.com/facebook/rocksdb
url = https://github.com/lbryio/rocksdb

View file

@ -32,8 +32,8 @@ src/rocksdb/librocksdb.a:
-Dlz4_LIBRARIES=../lz4-1.9.3/lib \
-Dzstd_INCLUDE_DIRS=../zstd-1.4.9/lib \
-Dzstd_LIBRARIES=../zstd-1.4.9/lib \
-DZLIB_INCLUDE_DIR=../zlib-1.2.11 \
-DZLIB_LIBRARY=./zlib-1.2.11 \
-DZLIB_INCLUDE_DIR=../zlib-1.2.12 \
-DZLIB_LIBRARY=./zlib-1.2.12 \
-DCMAKE_CXX_FLAGS="-fPIC -I../snappy-1.1.8/build -I../zstd-1.4.9/lib/dictBuilder" \
.. && make -j $(JOBS))

View file

@ -11,6 +11,7 @@ function build_wheel() {
build_wheel cp37-cp37m
build_wheel cp38-cp38
build_wheel cp39-cp39
build_wheel cp310-cp310
build_wheel pp37-pypy37_pp73
cd dist

View file

@ -59,7 +59,7 @@ if all(map(os.path.exists, STATIC_LIBRARIES)):
INCLUDE_DIRS = [
os.path.join("src", "rocksdb", "bzip2-1.0.8"),
os.path.join("src", "rocksdb", "zstd-1.4.9", "lib"),
os.path.join("src", "rocksdb", "zlib-1.2.11"),
os.path.join("src", "rocksdb", "zlib-1.2.12"),
os.path.join("src", "rocksdb", "snappy-1.1.8"),
os.path.join("src", "rocksdb", "snappy-1.1.8", "build"),
os.path.join("src", "rocksdb", "lz4-1.9.3", "lib"),

@ -1 +1 @@
Subproject commit 0103296f39ec3fd89b4cdda9687c63fde90eec24
Subproject commit 752fea5d4400198bc8a591b7d795d1c8d5f12230