Skip to content
Snippets Groups Projects
Unverified Commit 10e30f6a authored by Piotr Maślanka's avatar Piotr Maślanka
Browse files

fix

parent 6dc3a3e2
No related branches found
No related tags found
No related merge requests found
Pipeline #61019 failed
......@@ -13,18 +13,32 @@ image: zoo.smok.co/build/build:latest
- cd rocksdb
- git fetch
- git checkout v7.0.1
- mkdir rocksdb-setup
- make shared_lib -j 15
- make install
- cd ..
- mv include ..
- mv librocksdb.so ..
artifacts:
paths:
- "/usr/local/lib/pkgconfig/rocksdb.pc"
- "/usr/local/lib/librocksdb.a"
- "rocksdb/rocksdb.pc"
- "include/rocksdb/*"
- "rocksdb/include/*"
- "librocksdb.so"
- "/usr/include/rocksdb/*"
- "/usr/local/include/rocksdb/*"
.before_build_python:
before_script:
- apt update
- apt install -y pkg-config
- cp -rf include/rocksdb /usr/local/include/rocksdb
- pip install --upgrade --break-system-packages Cython wheel setuptools pip pkgconfig doctor-wheel repairwheel
script:
- pip install -q build
- python -m build
artifacts:
paths
- "*.whl"
build_rocksdb_x86:
extends: .build_rocksdb
......@@ -35,10 +49,13 @@ build_rocksdb_armv7l:
.build_python_rocksdb_x86:
build_python_rocksdb_x86:
extends: .before_build_python
dependencies:
- build_rocksdb_x86
script:
- pip install --upgrade --break-system-packages Cython wheel setuptools pip pkgconfig doctor-wheel repairwheel
- pip install -q build
- python -m build
\ No newline at end of file
build_python_rocksdb_armv7l:
extends: .before_build_python
image: zoo.smok.co/build/build:armv7l-python3.11
dependencies:
- build_rocksdb_armv7l
python-rocksdb
==============
This repository mirrors [https://github.com/AlexV525/python-rocksdb]( https://github.com/AlexV525/python-rocksdb)
in order to build production-ready packages working under armv7l.
This project is based off the efforts from
https://github.com/NightTsarina/python-rocksdb and basically strips backup
support, filter support and several options, so that it can work on rocksdb
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment