Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
Python Rocksdb
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
public
Python Rocksdb
Commits
10e30f6a
Unverified
Commit
10e30f6a
authored
9 months ago
by
Piotr Maślanka
Browse files
Options
Downloads
Patches
Plain Diff
fix
parent
6dc3a3e2
No related branches found
No related tags found
No related merge requests found
Pipeline
#61019
failed
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
.gitlab-ci.yml
+27
-10
27 additions, 10 deletions
.gitlab-ci.yml
README.rst
+3
-0
3 additions, 0 deletions
README.rst
with
30 additions
and
10 deletions
.gitlab-ci.yml
+
27
−
10
View file @
10e30f6a
...
...
@@ -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
This diff is collapsed.
Click to expand it.
README.rst
+
3
−
0
View file @
10e30f6a
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
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment